db01579cf178fbd857cb6f980b94091344caacf1
[pspp] / ChangeLog
1 2010-04-27  Eric Blake  <eblake@redhat.com>
2
3         full-read, full-write: relax license
4         * modules/full-read (License): Drop to LGPLv2+.
5         * modules/full-write (License): Likewise.
6         * modules/safe-read (License): Likewise.
7         * modules/safe-write (License): Likewise.
8
9         pthread: mention library for linking
10         * modules/pthread (Link): Mention $(LIB_PTHREAD).
11
12 2010-04-27  Jim Meyering  <meyering@redhat.com>
13
14         maint.mk: fix a bug introduced in last change
15         * top/maint.mk (gl_assured_headers_): Now that all names are on
16         one line, use sed's "g" modifier.  Note that while the \.in\.h LHS
17         is not anchored to end of word, it should be adequate.
18
19         maint.mk: avoid side-effect in latest syntax-check
20         * top/maint.mk (sc_prohibit_always_true_header_tests): Rework not
21         to run commands via $(shell...), and hence to incur cost only when
22         the new rule is actually run.
23
24         maint.mk: syntax-check: prohibit HAVE_<header>_H that are always true
25         Derive the list of guaranteed header names from gnulib/lib/*.in.h,
26         and use that to create a regexp used to detect all #if HAVE_..._H uses.
27         * top/maint.mk (sc_prohibit_always_true_header_tests): New rule.
28         (gl_assured_headers_, az_, AZ_): Define.
29         (gl_header_upper_case_or_, gl_have_header_regex_): Define.
30
31 2010-04-26  Jim Meyering  <jim@meyering.net>
32             Bruno Haible  <bruno@clisp.org>
33
34         gnulib-common.m4: make glibc write diagnostics to stderr, not /dev/tty
35         * m4/gnulib-common.m4 (gl_COMMON_BODY): Set LIBC_FATAL_STDERR_.
36         Prompted by an exchange with Gilles Espinasse.
37
38 2010-04-26  Jim Meyering  <meyering@redhat.com>
39
40         git-version-gen: aesthetic tweak
41         * build-aux/git-version-gen: Use "$nl" rather than a literal,
42         so that the command remains on a single line.
43
44 2010-04-26  Eric Blake  <eblake@redhat.com>
45
46         git-version-gen: allow use on EBCDIC hosts
47         * build-aux/git-version-gen (dirty): Use literal rather than tying
48         ourselves to ascii.
49         Reported by Steve Goetze.
50
51 2010-04-25  Bruno Haible  <bruno@clisp.org>
52
53         netdb: Add support for GNULIB_POSIXCHECK.
54         * lib/netdb.in.h: Include warn-on-use.h.
55         (getaddrinfo, freeaddrinfo, gai_strerror, getnameinfo): Warn if these
56         functions are used when GNULIB_POSIXCHECK is defined and the
57         getaddrinfo module is not in use.
58         * m4/netdb_h.m4 (gl_HEADER_NETDB): Test whether getaddrinfo,
59         freeaddrinfo, gai_strerror, getnameinfo are declared.
60         * modules/netdb (Depends-on): Add warn-on-use.
61         (Makefile.am): Include warn-on-use.h in netdb.h.
62
63 2010-04-24  Ian Beckwith  <ianb@erislabs.net>
64
65         build: avoid "make check" failure without .git/ directory
66         * Makefile (sc_prefer_ac_check_funcs_once): Skip this test when
67         there is no .git/ directory.
68
69 2010-04-25  Bruno Haible  <bruno@clisp.org>
70
71         ptsname: Fix misuse of ttyname_r.
72         * lib/ptsname.c (__ptsname_r): Use __ttyname_r's return value instead
73         of errno.
74
75 2010-04-25  Bruno Haible  <bruno@clisp.org>
76
77         ttyname_r: Make it work on Solaris 10.
78         * m4/ttyname_r.m4 (gl_FUNC_TTYNAME_R): Define HAVE_POSIXDECL_TTYNAME_R
79         if the system function has the POSIX declaration. Test whether the
80         function fails if the buffer is less than 128 bytes large.
81         * lib/ttyname_r.c (ttyname_r): Handle both possible declarations of the
82         system's ttyname_r function. Provide a reasonably large buffer.
83         * modules/ttyname_r (Depends-on): Add extensions.
84         * doc/posix-functions/ttyname_r.texi: Mention the Solaris problem.
85
86 2010-04-25  Bruno Haible  <bruno@clisp.org>
87
88         Use the 'extensions' module for some more functions on Solaris.
89         * doc/posix-functions/asctime_r.texi: Recommend to use the 'extensions'
90         module.
91         * doc/posix-functions/ctime_r.texi: Likewise.
92         * doc/posix-functions/getgrgid_r.texi: Likewise.
93         * doc/posix-functions/getgrnam_r.texi: Likewise.
94         * doc/posix-functions/getpwnam_r.texi: Likewise.
95         * doc/posix-functions/getpwuid_r.texi: Likewise.
96         * doc/posix-functions/readdir_r.texi: Likewise.
97         * doc/posix-functions/sigwait.texi: Likewise.
98         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Add comment.
99         * doc/posix-functions/getlogin_r.texi: Mark Solaris problem as fixed.
100
101 2010-04-25  Bruno Haible  <bruno@clisp.org>
102
103         ttyname_r: Make it work on MacOS X 10.4 and Solaris 10.
104         * m4/ttyname_r.m4 (gl_FUNC_TTYNAME_R): Test whether the system function
105         has the POSIX declaration. Set REPLACE_TTYNAME_R if not.
106         * lib/ttyname_r.c: Include <limits.h>.
107         (ttyname_r): Define using the system's ttyname_r function, if it exists
108         and not on Solaris.
109         * lib/unistd.in.h (ttyname_r): Replace function if REPLACE_TTYNAME_R is
110         set.
111         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize REPLACE_TTYNAME_R.
112         * modules/unistd (Makefile.am): Substitute REPLACE_TTYNAME_R.
113         * doc/posix-functions/ttyname_r.texi: Mark the problem as fixed.
114         Reported by Simon Josefsson.
115
116 2010-04-25  Bruno Haible  <bruno@clisp.org>
117
118         Mention effects of _POSIX_PTHREAD_SEMANTICS on Solaris.
119         * doc/posix-functions/asctime_r.texi: Mention the Solaris problem.
120         * doc/posix-functions/ctime_r.texi: Likewise.
121         * doc/posix-functions/getgrgid_r.texi: Likewise.
122         * doc/posix-functions/getgrnam_r.texi: Likewise.
123         * doc/posix-functions/getlogin_r.texi: Likewise.
124         * doc/posix-functions/getpwnam_r.texi: Likewise.
125         * doc/posix-functions/getpwuid_r.texi: Likewise.
126         * doc/posix-functions/readdir_r.texi: Likewise.
127         * doc/posix-functions/sigwait.texi: Likewise.
128         * doc/posix-functions/ttyname_r.texi: Likewise.
129         Reported by Simon Josefsson.
130
131 2010-04-25  Bruno Haible  <bruno@clisp.org>
132
133         gnulib-tool: Don't include hairy tests of dependencies in testdirs.
134         * gnulib-tool (func_usage): Document that --with-*-tests options apply
135         also to --create-testdir.
136         (func_acceptable): Don't consider the status of *-tests modules here.
137         (func_modules_transitive_closure): Consider it here, before including a
138         test module.
139         (func_import, func_create_testdir): Set inc_all_direct_tests,
140         inc_all_indirect_tests.
141         * doc/gnulib.texi (Extra tests modules): Document new behaviour of
142         --create-testdir and --create-megatestdir.
143
144 2010-04-25  Bruno Haible  <bruno@clisp.org>
145
146         gnulib-tool: Add --without-*-tests options.
147         * gnulib-tool (func_usage): Document the --without-*-tests options.
148         (excl_cxx_tests, excl_longrunning_tests, excl_privileged_tests,
149         excl_unportable_tests): New variables.
150         Fail if they are specified with --import or --update.
151         (func_acceptable): Respect the excl_*_tests variables.
152         (func_import): Set the excl_*_tests variables to empty.
153
154 2010-04-25  Simon Josefsson  <simon@josefsson.org>
155             Bruno Haible  <bruno@clisp.org>
156
157         Work around a MacOS X 10.4 bug with openpty.
158         * doc/glibc-functions/openpty.texi: Mention the MacOS X 10.4 bug.
159         * tests/test-openpty.c (main): Close the master side explicitly.
160
161 2010-04-25  Bruno Haible  <bruno@clisp.org>
162
163         strnlen: Fix a C++ test error on MacOS X and Solaris.
164         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Don't set REPLACE_STRNLEN to 1 if
165         the function is not declared.
166         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com> and
167         Simon Josefsson.
168
169 2010-04-24  Bruno Haible  <bruno@clisp.org>
170
171         Avoid a gcc warning.
172         * tests/test-vasprintf.c (test_vasprintf, test_asprintf): Pass argument
173         of correct type for %08lx directive.
174         Reported by Eric Blake.
175
176 2010-04-24  Bruno Haible  <bruno@clisp.org>
177
178         vasnprintf: Correct errno value in case of out-of-memory.
179         * lib/vasnprintf.c (VASNPRINTF): Set errno to 0 before calling SNPRINTF
180         or sprintf. Use the errno value from SNPRINTF or sprintf.
181         Reported by Ian Beckwith <ianb@erislabs.net>.
182
183 2010-04-24  Bruno Haible  <bruno@clisp.org>
184
185         ansi-c++-opt: Find correct compiler when cross-compiling.
186         * m4/ansi-c++.m4 (gl_PROG_ANSI_CXX): Use AC_CHECK_TOOLS instead of
187         AC_CHECK_PROGS.
188         Reported by Simon Josefsson.
189
190 2010-04-24  Giuseppe Scrivano  <gscrivano@gnu.org>
191
192         vc-list-files: Add support for subversion
193         * build-aux/vc-list-files: Use "svn list" to generate the list of
194         files controlled by subversion.
195
196 2010-04-23  Jim Meyering  <meyering@redhat.com>
197
198         vc-list-files tests: convert to use init.sh
199         * tests/test-vc-list-files-cvs.sh: Invoke "$srcdir/init.sh" and
200         path_prepend_.
201         Use Exit, not exit.
202         Use skip_ rather than open coding it.
203         Remove trap set-up and compare definitions.
204         * tests/test-vc-list-files-git.sh: Likewise.
205         * modules/vc-list-files-tests (Files): Add tests/init.sh.
206
207 2010-04-22  Simon Josefsson  <simon@josefsson.org>
208
209         * top/maint.mk (sc_prohibit_backup_files): Prohibit checked in
210         backup files.
211
212 2010-04-21  Simon Josefsson  <simon@josefsson.org>
213
214         * tests/test-vasprintf.c (test_vasprintf, test_asprintf): Test %08lx.
215
216 2010-04-20  Eric Blake  <eblake@redhat.com>
217
218         tests: be robust to ignored SIGPIPE
219         * tests/test-select-in.sh: Consume all output.
220         * tests/test-lseek.sh: Check correct exit status, while avoiding
221         EPIPE.
222
223 2010-04-20  Simon Josefsson  <simon@josefsson.org>
224             Bruno Haible  <bruno@clisp.org>
225
226         visibility: Don't use -fvisibility if it leads to a warning.
227         * m4/visibility.m4 (gl_VISIBILITY): Check whether -Werror is usable. If
228         yes, don't pretend that visibility works if it leads to a warning.
229         Reported by Mike Gran <spk121@yahoo.com>.
230
231 2010-04-20  Andreas Gruenbacher  <agruen@suse.de>
232
233         * build-aux/bootstrap: Use "git -h" for testing for supported options
234         instead of "git --help".  The short-form option only shows a summary,
235         and doesn't layout the full man page.  Grep for the full option name
236         in the summary, too.
237
238 2010-04-19  Bruno Haible  <bruno@clisp.org>
239
240         relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
241         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Set RELOCATABLE_STRIP.
242         * doc/relocatable-maint.texi (Supporting Relocation): Remove the
243         mention of RELOCATABLE_STRIP.
244         Reported by Sylvain Beucler <beuc@beuc.net>.
245
246 2010-04-19  Bruno Haible  <bruno@clisp.org>
247
248         * lib/diffseq.h: Fix typo in comment.
249         Reported by Eric Blake.
250
251 2010-04-19  Bruno Haible  <bruno@clisp.org>
252
253         ioctl: Move autoconf macro to a .m4 file.
254         * m4/ioctl.m4: New file, extracted from modules/ioctl.
255         * modules/ioctl (Files): Add it.
256         (configure.ac): Simply invoke gl_FUNC_IOCTL.
257         Reported by Ian Beckwith <ianb@erislabs.net>.
258
259 2010-04-18  Andreas Gruenbacher  <agruen@suse.de>
260             Bruno Haible  <bruno@clisp.org>
261
262         diffseq: Accommodate use-case with abstract arrays.
263         * lib/diffseq.h (struct context): Remove xvec, yvec fields if ELEMENT
264         is not defined.
265         (diag, compareseq): Remove local variables xv, yv if ELEMENT is not
266         defined. Use local macro XREF_YREF_EQUAL instead of EQUAL.
267
268 2010-04-18  Bruno Haible  <bruno@clisp.org>
269
270         * doc/posix-headers/stdbool.texi: More precise wording.
271
272 2010-04-17  Jim Meyering  <meyering@redhat.com>
273
274         maint.mk: use gnu-style indentation in an embedded perl script
275         * top/maint.mk (detect_empty_lines_at_EOF_): Clean up formatting.
276         Rename variable: s/two/last_two_bytes/
277
278 2010-04-16  Eric Blake  <eblake@redhat.com>
279
280         test-stdbool: skip test that fails with Solaris CC
281         * tests/test-stdbool.c (f): Skip test that causes compilation
282         error under buggy C++ compiler.
283         * lib/stdbool.in.h: Document the limitation.
284         * doc/posix-headers/stdbool.texi (stdbool.h): Likewise.
285
286         setenv: allow compilation with C++
287         * lib/setenv.c (__add_to_environ): Add a cast.  Also, drop use of
288         register keyword.
289
290         stdint: allow test to pass with C++
291         * tests/test-stdint.c: Define __STDC_CONSTANT_MACROS, for glibc.
292
293         getopt: allow compilation with C++
294         * lib/getopt_int.h (__ordering): Hoist enum declaration outside
295         struct.
296         * lib/getopt.c (_getopt_internal_r): Use correct type.
297         Reported by Dagobert Michelson, via Joel E. Denny.
298
299 2010-04-16  Bruno Haible  <bruno@clisp.org>
300
301         Override netdb.h always.
302         * modules/netdb (Makefile.am): Augment BUILT_SOURCES always.
303         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't set NETDB_H.
304         Reported by Ludovic Courtès <ludo@gnu.org>.
305
306 2010-04-15  Bruno Haible  <bruno@clisp.org>
307
308         openpty: Fix mistake from 2010-03-21.
309         * m4/pty.m4 (gl_FUNC_OPENPTY): Define HAVE_OPENPTY when openpty exists.
310         Reported by Simon Josefsson.
311
312 2010-04-15  Eric Blake  <eblake@redhat.com>
313
314         test-forkpty: fix expected signature
315         * tests/test-forkpty.c (SIGNATURE_CHECK): Add appropriate const.
316         Reported by Simon Josefsson.
317
318 2010-04-15  Jim Meyering  <meyering@redhat.com>
319
320         maint.mk: texinfo_suffix_re_: correct the default regexp
321         * top/maint.mk (texinfo_suffix_re_): Fix default regexp.
322
323         * top/maint.mk (sc_texinfo_acronym): Improve filename regexp, and
324         make it configurable via texinfo_suffix_re_.
325
326 2010-04-14  Eric Blake  <eblake@redhat.com>
327
328         strtok_r: relax license to LGPLv2+
329         * modules/strtok_r (License): Relax license.
330         Reported by Matthias Bolte.
331
332 2010-04-14  Simon Josefsson  <simon@josefsson.org>
333
334         * lib/gc-libgcrypt.c (gc_init): Use MIN_GCRYPT_VERSION set to
335         version 1.4.4 by default instead of requiring the libgcrypt
336         version used during build.  This makes it possible to use the
337         application with older but still binary compatible libgcrypt
338         versions.
339
340 2010-04-13  Eric Blake  <eblake@redhat.com>
341
342         getopt-gnu: match recent glibc fixes and posix ruling
343         * tests/test-getopt.h (test_getopt): Strengthen tests of leading
344         '+' handling, when requesting extensions.
345         * tests/test-getopt_long.h (test_getopt_long): Strengthen test of
346         'W;' handling.
347         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Detect glibc 2.11 bug.
348         * doc/posix-functions/getopt.texi (getopt): Document this.
349         * doc/glibc-functions/getopt_long.texi (getopt_long): Likewise.
350         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
351         Likewise.
352
353         getopt: merge bug fixes from glibc
354         * lib/getopt.c (_getopt_internal_r): Use correct message for 'W;'
355         diagnostics.  Honor '+:' correctly.  Reject ';'.
356
357         getopt-posix: detect MacOS bug
358         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Reject MacOS botch of
359         optind when missing a required argument.
360         * doc/posix-functions/getopt.texi (getopt): Document the bug.
361         * doc/glibc-functions/getopt_long.texi (getopt_long): Likewise.
362         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
363         Likewise.
364
365         getopt-posix: avoid spurious failure on Solaris
366         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Check for getopt_clip as
367         an indicator that setting optind=1 is sufficient for reset.
368
369         getopt-posix: avoid spurious failure on FreeBSD
370         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Check for optreset even
371         in POSIX mode, since the m4 test uses it.
372
373         gnulib-tool: silence warning on BSD sh
374         * gnulib-tool: Avoid leaking warning about unknown 'declare'.
375
376 2010-04-13  Jim Meyering  <meyering@redhat.com>
377
378         doc: users.txt: GNU patch now uses gnulib
379         * users.txt: Add patch.
380
381 2010-04-12  Jim Meyering  <meyering@redhat.com>
382
383         maint.mk: generate more concise timing data for syntax-check rules
384         * top/maint.mk ($(sc_z_rules_)): Remove the ":", "sc_" prefix and
385         " done" from each line that reports a syntax-check test duration.
386
387 2010-04-12  Andreas Gruenbacher  <agruen@suse.de>
388
389         git-version-gen: use "git update-index..." rather than "git status"
390         * build-aux/git-version-gen: Use git update-index --refresh, not
391         "git status".  With some versions of git, "git status" would fail
392         to update the index and result in an unwarranted "-dirty" suffix.
393
394 2010-04-11  Jim Meyering  <meyering@redhat.com>
395
396         openat: correct formatting (no semantic change)
397         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Correct formatting in AC_DEFINE.
398         Suggested by Bruno Haible.
399
400 2010-04-11  Bruno Haible  <bruno@clisp.org>
401
402         Stricter declaration checking in testdirs.
403         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
404         If for_tests is true, augment AM_CPPFLAGS to define
405         GNULIB_STRICT_CHECKING.
406         * build-aux/warn-on-use.h (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): When
407         GNULIB_STRICT_CHECKING is defined, verify that the function is
408         declared.
409
410 2010-04-11  Paolo Bonzini  <bonzini@gnu.org>
411             Bruno Haible  <bruno@clisp.org>
412
413         libunistring: Improve configure output.
414         * m4/libunistring.m4 (gl_LIBUNISTRING): Check for libiconv first.
415         Don't say "consider installing GNU libunistring" when checking again
416         with libiconv.
417
418 2010-04-11  Bruno Haible  <bruno@clisp.org>
419
420         libunistring: Correct value of $LTLIBUNISTRING.
421         * m4/libunistring.m4 (gl_LIBUNISTRING): When it depends on libiconv,
422         correct the value of $LTLIBUNISTRING.
423
424 2010-04-11  Bruno Haible  <bruno@clisp.org>
425
426         havelib: Add static libraries to LIBS in the right order.
427         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): When $LIB[]NAME contains no
428         -l options, prepend it to $LIBS, instead of appending it to $LIBS.
429
430 2010-04-11  Bruno Haible  <bruno@clisp.org>
431
432         libunistring: Detect libunistring also when it depends on libiconv.
433         * m4/libunistring.m4 (gl_LIBUNISTRING): Unset the cached result before
434         the second AC_LIB_HAVE_LINKFLAGS invocation.
435
436 2010-04-11  James Youngman  <jay@gnu.org>
437
438         close-stream: declare local scalars to be "const"
439         * lib/close-stream.c (close_stream): Make boolean variables const
440         to document the fact that we set but do not change them.
441
442 2010-04-11  Bruno Haible  <bruno@clisp.org>
443
444         * m4/libunistring.m4 (gl_LIBUNISTRING): Fix typo in comment.
445
446 2010-04-11  Jim Meyering  <meyering@redhat.com>
447
448         maint.mk: don't include dist-check.mk
449         * top/maint.mk: Remove bogus include directive.
450
451         maint.mk: improve empty-line-at-EOF check
452         * top/maint.mk (sc_prohibit_empty_lines_at_EOF): Use Perl-based
453         solution, rather than tail+Perl-based one.  The latter would read
454         a few kilobytes from the end of each file, and did not handle empty
455         files properly.
456
457         maint.mk: print the elapsed time for each syntax-check rule
458         * top/maint.mk (sc_m_rules_): Save start time in a file.
459         (sc_z_rules_): New rules: remove temp file and print elapsed time.
460         (local-check): Interpose the .z rules
461
462 2010-04-11  Jim Meyering  <meyering@redhat.com>
463
464         maint.mk: detect_empty_lines_at_EOF_: avoid FP for an empty file
465         * top/maint.mk (detect_empty_lines_at_EOF_): Don't confuse an
466         empty file with one that ends in an empty line.
467
468 2010-04-10  Bruno Haible  <bruno@clisp.org>
469
470         mkdir: Make it work on mingw64.
471         * lib/sys_stat.in.h: Include <direct.h> together with <io.h>.
472         * lib/mkdir.c: Update comment.
473         Reported by Roman Donchenko (Роман Ð”онченко) <dxdragon@yandex.ru>.
474
475 2010-04-10  Bruno Haible  <bruno@clisp.org>
476
477         Don't override improved macro from newer autoconf.
478         * m4/gnulib-common.m4 (AC_C_RESTRICT): Don't define for
479         autoconf >= 2.62.
480         Reported by Joel E. Denny <jdenny@clemson.edu>.
481
482 2010-04-10  Jim Meyering  <meyering@redhat.com>
483
484         maint.mk: new syntax-check rule: prohibit empty lines at end of file
485         * top/maint.mk (sc_prohibit_empty_lines_at_EOF): New rule.
486
487         maint.mk: correct a diagnostic
488         * top/maint.mk (sc_prohibit_HAVE_MBRTOWC): Fix obsolete use of $re
489         in diagnostic; now use $prohibit.
490
491 2010-04-10  Bruno Haible  <address@hidden>
492
493         fchownat: Fix a C++ test error on Solaris 8.
494         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Don't set REPLACE_FCHOWNAT to 1 if
495         the function does not exist.
496
497 2010-04-10  Bruno Haible  <bruno@clisp.org>
498
499         vasnprintf: Add more tests.
500         * tests/test-vasnprintf-posix.c: Include <errno.h>.
501         (test_function): Test converting an invalid wide string.
502
503         vasnprintf: Correct handling of unconvertible wide string arguments.
504         * lib/vasnprintf.c (MAX_ROOM_NEEDED): New function, extracted from
505         VASNPRINTF.
506         (VASNPRINTF): Use it. After snprintf failed, allocate more memory only
507         if HAVE_SNPRINTF_RETVAL_C99 is false and the allocated memory is
508         smaller than the expected maximum need for the directive. Set errno to
509         EILSEQ, not EINVAL, when the directive is 'c' or 's'.
510         (local_strnlen, local_wcslen, local_wcsnlen): Update conditions.
511         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Require AC_C_INLINE and
512         gl_SNPRINTF_RETVAL_C99. Define HAVE_SNPRINTF_RETVAL_C99.
513         * modules/vasnprintf (Files): Add m4/printf.m4.
514         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
515
516 2010-04-10  Bruno Haible  <bruno@clisp.org>
517
518         vasnprintf: Fix crash in %ls directive.
519         * lib/vasnprintf.c (VASNPRINTF): Don't abort when a unconvertible wide
520         string is passed as argument to %ls, with no precision and no width.
521         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
522
523 2010-04-10  Bruno Haible  <bruno@clisp.org>
524
525         vasnprintf: Fix multiple test failures on mingw.
526         * lib/vasnprintf.c (SNPRINTF) [mingw]: Define to snprintf, not
527         _snprintf, or snwprintf, not _snwprintf.
528
529 2010-04-10  Bruno Haible  <bruno@clisp.org>
530
531         write: Fix a C++ test error on mingw.
532         * lib/unistd.in.h (write): Use _GL_CXXALIAS_SYS_CAST.
533
534 2010-04-10  Bruno Haible  <bruno@clisp.org>
535
536         vasnprintf test: Reduce code duplication.
537         * tests/test-vasnprintf.c (test_function): New function, extracted from
538         test_vasnprintf.
539         (test_vasnprintf, test_asnprintf): Invoke it.
540
541 2010-04-10  Bruno Haible  <bruno@clisp.org>
542
543         strnlen: Fix warning in C++ mode on MacOS X.
544         * lib/string.in.h (strnlen): Use the modern idiom.
545         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set REPLACE_STRNLEN to 1, instead of
546         defining strnlen as a macro already in <config.h>.
547         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
548         REPLACE_STRNLEN.
549         * modules/string (Makefile.am): Substitute REPLACE_STRNLEN.
550         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
551
552 2010-04-08  James Youngman  <jay@gnu.org>
553
554         * doc/manywarnings.texi (manywarnings): Add missing parenthesis in
555         the example.
556
557 2010-04-09  Jim Meyering  <meyering@redhat.com>
558
559         maint.mk: print better diagnostic when there is no $(_hv_file)
560         * top/maint.mk (sc_cross_check_PATH_usage_in_tests): Skip test and
561         announce that when $(_hv_file) (aka help-version) does not exist.
562
563         init.sh: run tr in the "C" locale to avoid multibyte interpretation
564         * tests/init.sh (rand_bytes_): Run tr in the "C" locale so it does
565         not try to interpret its random input bytes.  Jarno Rajahalme reported
566         that ./test-xalloc-die.sh would fail with "tr: Illegal byte sequence".
567         on Darwin 10.3.0 with LC_CTYPE=UTF-8.
568         (mktempd_): Likewise, just in case.
569
570         ftruncate: add two years to projected module removal date: 2012
571         * m4/ftruncate.m4: Adjust comments.
572
573         ftruncate: mark module as obsolete; even MinGW provides it, now
574         * modules/ftruncate (Status): Obsolete.
575         (Notice): Say that.
576         * doc/posix-functions/ftruncate.texi: Don't say MinGW lacks it.
577         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/9203
578
579 2010-04-08  Bruno Haible  <bruno@clisp.org>
580
581         Fix side effects from tests-related modules.
582         * modules/dprintf-posix (Comment): New section.
583         * modules/fprintf-posix (Comment): Likewise.
584         * modules/obstack-printf-posix (Comment): Likewise.
585         * modules/printf-posix (Comment): Likewise.
586         * modules/snprintf-posix (Comment): Likewise.
587         * modules/sprintf-posix (Comment): Likewise.
588         * modules/vasnprintf-posix (Comment): Likewise.
589         * modules/vasprintf-posix (Comment): Likewise.
590         * modules/vdprintf-posix (Comment): Likewise.
591         * modules/vfprintf-posix (Comment): Likewise.
592         * modules/vprintf-posix (Comment): Likewise.
593         * modules/vsnprintf-posix (Comment): Likewise.
594         * modules/vsprintf-posix (Comment): Likewise.
595         * modules/xprintf-posix (Comment): Likewise.
596         * modules/xvasprintf-posix (Comment): Likewise.
597         * modules/ceilf-tests (Depends-on): Remove fprintf-posix.
598         * modules/floorf-tests (Depends-on): Likewise.
599         * modules/round-tests (Depends-on): Likewise.
600         * modules/roundf-tests (Depends-on): Likewise.
601         * modules/trunc-tests (Depends-on): Likewise.
602         * modules/truncf-tests (Depends-on): Likewise.
603         * tests/test-ceilf2.c (check): Don't invoke fprintf if the
604         'fprintf-posix' module is not present.
605         * tests/test-floorf2.c (check): Likewise.
606         * tests/test-trunc2.c (check): Likewise.
607         * tests/test-truncf2.c (check): Likewise.
608         * tests/test-round2.c (equal): Likewise.
609         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
610
611 2010-04-07  Karl Berry  <karl@gnu.org>
612
613         * config/srclist.txt,
614         * config/srclistvars.sh,
615         * config/srclist-update: doc fixes.
616
617 2010-04-07  Jim Meyering  <meyering@redhat.com>
618
619         maint.mk: add a PATH crosschecking syntax-check rule
620         * top/maint.mk (sc_cross_check_PATH_usage_in_tests): New rule.
621         Useful if you use a test like the one in help-version (coreutils,
622         diffutils, grep, gzip) that ensures $(VERSION) matches what is
623         printed by prog --version.
624
625 2010-04-06  Bruno Haible  <bruno@clisp.org>
626
627         Fix link error on mingw.
628         * modules/unistd-c++-tests (test_unistd_c___LDADD): Add LIBSOCKET.
629         * modules/fcntl-h-c++-tests (test_fcntl_h_c___LDADD): Likewise.
630
631 2010-04-06  Bruno Haible  <bruno@clisp.org>
632
633         Assume rmdir exists.
634         * lib/rmdir.c (rpl_rmdir): Remove code that invokes the rmdir program.
635
636 2010-04-06  Giuseppe Scrivano <gscrivano@gnu.org>
637
638         doc: update users.txt
639         * users.txt: Add gcal.
640
641 2010-04-06  Jim Meyering  <meyering@redhat.com>
642
643         init.sh: simply unset TMPDIR rather than risking env -i
644         * tests/init.sh (mktempd_): Using env -i is rather harsh, and
645         although it probably works fine on all Unix-based systems, some
646         systems (Cygwin?) cannot tolerate a totally cleared environment.
647         Suggestion from Eric Blake.
648
649 2010-04-06  Jim Meyering  <meyering@redhat.com>
650
651         init.sh: portability fix: use env's POSIX-specified -i option not -u
652         * tests/init.sh (mktempd_): Use env -i and set PATH explicitly rather
653         than unportable env -u.  Solaris 5.11's env lacks support for -u.
654
655 2010-04-05  Bruno Haible  <bruno@clisp.org>
656
657         btowc: Work around Cygwin 1.7.2 bug.
658         * m4/btowc.m4 (gl_FUNC_BTOWC): Set REPLACE_BTOWC to 1 if the function
659         does not map NUL to 0.
660         * doc/posix-functions/btowc.texi: Mention the Cygwin bug.
661
662 2010-04-05  Bruno Haible  <bruno@clisp.org>
663
664         Make the multithread modules work on Cygwin 1.7.2.
665         * m4/threadlib.m4 (gl_THREADLIB_BODY): Improve the test whether
666         imported symbols can be declared weak, so that it returns "no" on
667         Cygwin 1.7.2.
668
669 2010-04-05  Bruno Haible  <bruno@clisp.org>
670
671         Use the module 'strncat'.
672         * modules/unistr/u8-strncat (Depends-on): Add strncat.
673
674         Tests for module 'strncat'.
675         * modules/strncat-tests: New file.
676         * tests/test-strncat.c: New file.
677
678         New module 'strncat'.
679         * lib/string.in.h (strncat): New declaration.
680         * lib/strncat.c: New file, based on lib/unistr/u-strncat.h.
681         * m4/strncat.m4: New file, based on m4/memchr.m4.
682         * modules/strncat: New file.
683         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Also check whether strncat
684         is declared.
685         (gl_HEADER_STRING_H_DEFAULTS): Initialize GNULIB_STRNCAT,
686         REPLACE_STRNCAT.
687         * modules/string (Makefile.am): Substitute GNULIB_STRNCAT,
688         REPLACE_STRNCAT.
689         * doc/posix-functions/strncat.texi: Mention the Solaris bug and the new
690         module.
691         * tests/test-string-c++.cc: Check signature of strncat.
692
693 2010-04-05  Jim Meyering  <meyering@redhat.com>
694
695         xstrtoumax-tests: convert to use init.sh
696         * modules/xstrtoumax-tests (Files): Add tests/init.sh.
697         * tests/test-xstrtoumax.sh: Invoke "$srcdir/init.sh" and path_prepend_.
698         Use Exit, not exit.
699         Remove uses of $EXEEXT and "./" to run a program in the current dir.
700
701         xstrtoimax-tests: convert to use init.sh
702         * modules/xstrtoimax-tests (Files): Add tests/init.sh.
703         * tests/test-xstrtoimax.sh: Invoke "$srcdir/init.sh" and path_prepend_.
704         Use Exit, not exit.
705         Remove uses of $EXEEXT and "./" to run a program in the current dir.
706
707 2010-04-05  Bruno Haible  <bruno@clisp.org>
708
709         sys_socket: Avoid #define replacements in C++ mode.
710         * lib/sys_socket.in.h (close, gethostname, select): In C++, attach a
711         warning to the function if possible, rather than #defining the symbol
712         to a dysfunctional alias.
713
714 2010-04-05  Bruno Haible  <bruno@clisp.org>
715
716         fseeko: Fix C++ test error on mingw.
717         * m4/fseeko.m4 (gl_HAVE_FSEEKO): New macro, extracted from
718         gl_FUNC_FSEEKO.
719         (gl_REPLACE_FSEEKO): Also set REPLACE_FSEEKO if appropriate.
720         (gl_FUNC_FSEEKO): Require gl_HAVE_FSEEKO. Update.
721         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't fiddle with internals of the
722         fseeko module. Instead, invoke gl_REPLACE_FSEEKO.
723
724 2010-04-05  Bruno Haible  <bruno@clisp.org>
725
726         duplocale: Improve test output.
727         * tests/test-duplocale.c (main): Print reason for skipped test.
728
729 2010-04-05  Bruno Haible  <bruno@clisp.org>
730
731         Assume rmdir exists.
732         * m4/rmdir.m4 (gl_FUNC_RMDIR): Remove test whether rmdir exists.
733         * doc/posix-functions/rmdir.texi: Remove mention of "old platforms".
734
735 2010-04-05  Bruno Haible  <bruno@clisp.org>
736
737         Fix link error on Solaris 8 with cc.
738         * modules/pty-c++-tests (test_pty_c___LDADD): Add LIBINTL.
739
740 2010-04-05  Bruno Haible  <bruno@clisp.org>
741
742         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
743         * lib/math.in.h (frexpl): Fix condition on _GL_CXXALIASWARN invocation.
744
745 2010-04-05  Bruno Haible  <bruno@clisp.org>
746
747         vasprintf: Update documentation.
748         * doc/glibc-functions/asprintf.texi: Mention the 'vasprintf' module.
749
750 2010-04-05  Bruno Haible  <bruno@clisp.org>
751
752         ptsname: Improve test.
753         * tests/test-ptsname.c (main): Also try the various master names of BSD
754         systems.
755
756 2010-04-05  Bruno Haible  <bruno@clisp.org>
757
758         memchr: Avoid a possible C++ test error.
759         * lib/string.in.h (memchr): Provide declaration if function is missing.
760         * m4/memchr.m4 (gl_FUNC_MEMCHR): If the function is missing, set
761         HAVE_MEMCHR to 0, not REPLACE_MEMCHR to 1.
762         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MEMCHR.
763         * modules/string (Makefile.am): Substitute HAVE_MEMCHR.
764
765 2010-04-05  Bruno Haible  <bruno@clisp.org>
766
767         strtok_r: Improve idiom.
768         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Invoke gl_PREREQ_STRDUP only when
769         AC_LIBOBJ is used.
770
771 2010-04-05  Bruno Haible  <bruno@clisp.org>
772
773         strdup: Improve idiom.
774         * m4/strdup.m4 (gl_FUNC_STRDUP): Invoke gl_PREREQ_STRDUP only when
775         AC_LIBOBJ is used.
776         (gl_FUNC_STRDUP_POSIX): When strdup is missing and malloc is not POSIX
777         compliant, don't set REPLACE_STRDUP to 1. Invoke gl_PREREQ_STRDUP only
778         when AC_LIBOBJ is used.
779
780 2010-04-05  Bruno Haible  <bruno@clisp.org>
781
782         mbsinit, mbrtowc, wcrtomb: Improve idioms.
783         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): When the function does not exist,
784         don't set REPLACE_MBSINIT to 1.
785         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): When the function does not exist,
786         don't set REPLACE_MBRTOWC to 1.
787         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): When the function does not
788         exist, don't set REPLACE_MBSRTOWCS to 1.
789         * m4/mbsnrtowcs.m4 (gl_FUNC_MBSNRTOWCS): When the function does not
790         exist, don't set REPLACE_MBSNRTOWCS to 1.
791         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): When the function does not exist,
792         don't set REPLACE_WCRTOMB to 1.
793         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): When the function does not
794         exist, don't set REPLACE_WCSRTOMBS to 1.
795         * m4/wcsnrtombs.m4 (gl_FUNC_WCSNRTOMBS): When the function does not
796         exist, don't set REPLACE_WCSNRTOMBS to 1.
797
798 2010-04-05  Bruno Haible  <bruno@clisp.org>
799
800         ldexpl: Improve idiom.
801         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): When the function is not declared,
802         make sure to set HAVE_DECL_LDEXPL to 0.
803
804 2010-04-05  Jim Meyering  <meyering@redhat.com>
805
806         xstrtol-tests: convert to use init.sh
807         * modules/xstrtol-tests (Files): Add tests/init.sh.
808         * tests/test-xstrtol.sh: Invoke "$srcdir/init.sh" and path_prepend_.
809         Use Exit, not exit.
810         Remove uses of $EXEEXT and "./" to run a program in the current dir.
811
812         atexit-tests: convert to use init.sh
813         * modules/atexit-tests (Files): Add tests/init.sh.
814         * tests/test-atexit.sh: Invoke "$srcdir/init.sh" and path_prepend_.
815         Use Exit, not exit.
816         Remove uses of $EXEEXT and "./" to run a program in the current dir.
817
818         init.sh: fix typo
819         * tests/init.sh: Restore omitted ":" before stderr_fileno_ initialization.
820
821         init.sh: make it easier for a test script to write to the tty, ...
822         when using automake's parallel-tests mode.
823         * tests/init.sh (stderr_fileno_): Define overridable variable.
824         (warn_): New function, to use it.
825         (fail_, skip_, framework_failure_): Use warn_.
826
827 2010-04-04  Bruno Haible  <bruno@clisp.org>
828
829         btowc: Avoid warning.
830         * lib/btowc.c: Include <stdlib.h>.
831         Reported by Hauke Fath <hauke@espresso.rhein-neckar.de>.
832
833 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
834             Bruno Haible  <bruno@clisp.org>
835
836         wchar: Port to NetBSD 1.5.
837         * lib/wchar.in.h (WEOF): Provide fallback also when wint_t exists.
838         * lib/wctype.in.h (WEOF): Likewise.
839
840 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
841             Bruno Haible  <bruno@clisp.org>
842
843         Port extended stdio to NetBSD 1.5.
844         * lib/stdio-impl.h [NetBSD]: Include <sys/param.h>.
845         (struct __sfileext, fp_ub): Define the "old way" for NetBSD 1.5Z and
846         older.
847
848 2010-04-04  Bruno Haible  <bruno@clisp.org>
849
850         string: Remove unused substitution.
851         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
852         HAVE_DECL_STRERROR.
853         * modules/string (Makefile.am): Don't substitute HAVE_DECL_STRERROR.
854
855 2010-04-04  Bruno Haible  <bruno@clisp.org>
856
857         strtod: Avoid a possible C++ test error.
858         * m4/strtod.m4 (gl_FUNC_STRTOD): When setting HAVE_STRTOD to 0, don't
859         set REPLACE_STRTOD.
860
861 2010-04-04  Bruno Haible  <bruno@clisp.org>
862
863         strerror: Update documentation.
864         * doc/posix-functions/strerror.texi: Remove mention of old platforms.
865
866 2010-04-04  Bruno Haible  <bruno@clisp.org>
867
868         stdio: Fix some C++ test errors on Solaris 8 with GCC.
869         * lib/stdio.in.h (vdprintf, vfprintf, vprintf, vsprintf): Use
870         _GL_CXXALIAS_SYS_CAST.
871
872 2010-04-04  Bruno Haible  <bruno@clisp.org>
873
874         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
875         * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): When the
876         function is not declared, set HAVE_DECL_FREXPL to 0, instead of setting
877         REPLACE_FREXPL to 1.
878         * doc/posix-functions/frexpl.texi: Update documentation.
879
880 2010-04-04  Bruno Haible  <bruno@clisp.org>
881
882         math: Fix some C++ test errors on Solaris 8 and Cygwin.
883         * lib/math.in.h (cosl, logl, sinl): Use simpler idiom.
884
885 2010-04-04  Bruno Haible  <bruno@clisp.org>
886
887         Implement nanosleep for native Windows.
888         * lib/nanosleep.c (nanosleep): New implementation for native Windows.
889
890 2010-04-04  Bruno Haible  <bruno@clisp.org>
891
892         math: Fix some C++ test errors on Solaris 8.
893         * lib/math.in.h (truncf, trunc): Use simpler idiom.
894
895 2010-04-04  Bruno Haible  <bruno@clisp.org>
896
897         math: Fix some C++ test errors on Cygwin.
898         * lib/math.in.h (ceilf, ceill, floorf, floorl, roundf, round, roundl,
899         truncl): Provide declaration if the system does not have it.
900         * m4/ceilf.m4 (gl_FUNC_CEILF): If the function is not declared, set
901         HAVE_DECL_CEILF to 0, not REPLACE_CEILF to 1.
902         * m4/ceill.m4 (gl_FUNC_CEILL): If the function is not declared, set
903         HAVE_DECL_CEILL to 0, not REPLACE_CEILL to 1.
904         * m4/floorf.m4 (gl_FUNC_FLOORF): If the function is not declared, set
905         HAVE_DECL_FLOORF to 0, not REPLACE_FLOORF to 1.
906         * m4/floorl.m4 (gl_FUNC_FLOORL): If the function is not declared, set
907         HAVE_DECL_FLOORL to 0, not REPLACE_FLOORL to 1.
908         * m4/round.m4 (gl_FUNC_ROUND): If the function is not declared, set
909         HAVE_DECL_ROUND to 0, not REPLACE_ROUND to 1.
910         * m4/roundf.m4 (gl_FUNC_ROUNDF): If the function is not declared, set
911         HAVE_DECL_ROUNDF to 0, not REPLACE_ROUNDF to 1.
912         * m4/roundl.m4 (gl_FUNC_ROUNDL): If the function is not declared, set
913         HAVE_DECL_ROUNDL to 0, not REPLACE_ROUNDL to 1.
914         * m4/truncl.m4 (gl_FUNC_TRUNCL): If the function is not declared, set
915         HAVE_DECL_TRUNCL to 0, not REPLACE_TRUNCL to 1.
916         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize HAVE_DECL_CEILF,
917         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
918         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
919         * modules/math (Makefile.am): Substitute HAVE_DECL_CEILF,
920         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
921         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
922
923 2010-04-04  Bruno Haible  <bruno@clisp.org>
924
925         * m4/ceilf.m4 (gl_FUNC_CEILF): Remove redundant AC_SUBST invocation.
926         * m4/ceill.m4 (gl_FUNC_CEILL): Likewise.
927         * m4/floorf.m4 (gl_FUNC_FLOORF): Likewise.
928         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
929         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
930         * m4/isinf.m4 (gl_ISINF): Likewise.
931         * m4/truncl.m4 (gl_FUNC_TRUNCL): Likewise.
932
933 2010-04-04  Bruno Haible  <bruno@clisp.org>
934
935         * m4/trunc.m4 (gl_FUNC_TRUNC): Remove redundant AC_SUBST invocation.
936         * m4/truncf.m4 (gl_FUNC_TRUNCF): Likewise.
937
938 2010-04-04  Bruno Haible  <bruno@clisp.org>
939
940         * m4/tmpfile.m4 (gl_FUNC_TMPFILE): Renamed from gl_TMPFILE.
941         * modules/tmpfile (configure.ac): Update.
942
943         tmpfile: Fix C++ test error on mingw.
944         * lib/stdio.in.h (tmpfile): New declaration.
945         * m4/tmpfile.m4 (gl_TMPFILE): Require gl_STDIO_H_DEFAULTS. Set
946         REPLACE_TMPFILE instead of defining tmpfile as a macro in config.h.
947         * modules/tmpfile (Depends-on): Add stdio.
948         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
949         * m4/stdio_h.m4 (gl_STDIO_H): Also check whether tmpfile is declared.
950         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_TMPFILE and REPLACE_TMPFILE.
951         * modules/stdio (Makefile.am): Substitute GNULIB_TMPFILE and
952         REPLACE_TMPFILE.
953         * tests/test-stdio-c++.cc (tmpfile): Verify signature.
954
955 2010-04-04  Bruno Haible  <bruno@clisp.org>
956
957         ioctl: Fix C++ test error on mingw.
958         * lib/ioctl.c (ioctl): Renamed from rpl_ioctl.
959         * lib/sys_ioctl.in.h (ioctl): When SYS_IOCTL_H_HAVE_WINSOCK2_H is 1,
960         use _GL_FUNCDECL_SYS, not _GL_FUNCDECL_RPL.
961
962 2010-04-03  Bruno Haible  <bruno@clisp.org>
963
964         wcwidth: Fix C++ test error on mingw.
965         * lib/wcwidth.c (wcwidth): Renamed from rpl_wcwidth.
966         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): If the wcwidth function does not
967         exist, don't set REPLACE_WCWIDTH. Instead, rely on HAVE_DECL_WCWIDTH.
968
969 2010-04-03  Bruno Haible  <bruno@clisp.org>
970
971         nanosleep: Fix C++ test error on mingw.
972         * lib/nanosleep.c (nanosleep): Renamed from rpl_nanosleep.
973         * lib/time.in.h (nanosleep): Use modern idiom.
974         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): When the system does not have a
975         nanosleep function, set HAVE_NANOSLEEP to 0, instead of setting
976         REPLACE_NANOSLEEP to 1.
977         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_NANOSLEEP.
978         * modules/time (Makefile.am): Substitute HAVE_NANOSLEEP.
979
980 2010-04-03  Bruno Haible  <bruno@clisp.org>
981
982         strptime: Fix C++ test error on mingw.
983         * lib/time.in.h (strptime): Use HAVE_STRPTIME, not REPLACE_STRPTIME.
984         * m4/strptime.m4 (gl_FUNC_STRPTIME): Set HAVE_STRPTIME, not
985         REPLACE_STRPTIME. Invoke gl_PREREQ_STRPTIME.
986         (gl_PREREQ_STRPTIME): New macro, extracted from gl_FUNC_STRPTIME.
987         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_STRPTIME,
988         not REPLACE_STRPTIME.
989         * modules/time (Makefile.am): Substitute HAVE_STRPTIME, not
990         REPLACE_STRPTIME.
991
992 2010-04-03  Bruno Haible  <bruno@clisp.org>
993
994         timegm: Fix C++ test error on mingw.
995         * lib/time.in.h (timegm): Use modern idiom.
996         * m4/timegm.m4 (gl_FUNC_TIMEGM): When timegm does not exist, set
997         HAVE_TIMEGM to 0, not REPLACE_TIMEGM to 1.
998         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_TIMEGM.
999         * modules/time (Makefile.am): Substitute HAVE_TIMEGM.
1000
1001 2010-04-03  Bruno Haible  <bruno@clisp.org>
1002
1003         timegm: Assume declaration if function exists.
1004         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume timegm is declared if and only
1005         if it exists. Don't clobber ac_cv_func_timegm.
1006
1007 2010-04-03  Bruno Haible  <bruno@clisp.org>
1008
1009         time_r: Fix C++ test error on mingw.
1010         * lib/time.in.h (localtime_r, gmtime_r): Use modern idiom.
1011         * m4/time_r.m4 (gl_TIME_R): When localtime_r does not exist, set
1012         HAVE_LOCALTIME_R to 0, not REPLACE_LOCALTIME_R to 1.
1013         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_LOCALTIME_R.
1014         * modules/time (Makefile.am): Substitute HAVE_LOCALTIME_R.
1015
1016 2010-04-03  Bruno Haible  <bruno@clisp.org>
1017
1018         time_r: Minor updates.
1019         * modules/time_r (Description): Mention the provided functions.
1020         * lib/time_r.c: Don't include <string.h>.
1021         * doc/posix-functions/gmtime_r.texi: Mention the 'time_r' module.
1022         * doc/posix-functions/localtime_r.texi: Likewise.
1023
1024 2010-04-03  Bruno Haible  <bruno@clisp.org>
1025
1026         time: Fix regression introduced on 2010-03-08.
1027         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Require
1028         gl_HEADER_TIME_H_DEFAULTS, not gl_HEADER_STRING_H_DEFAULTS.
1029
1030 2010-04-03  Jim Meyering  <meyering@redhat.com>
1031
1032         maint.mk: don't silently disable project-specific syntax-check rules
1033         * top/maint.mk (_prohibit_regexp): Define, to help people realize
1034         that they need to convert their project-specific syntax-check rules
1035         to use the new _sc_search_regexp.
1036
1037 2010-04-03  Bruno Haible  <bruno@clisp.org>
1038
1039         fchdir: Fix regression introduced on 2010-03-08.
1040         * lib/unistd.in.h (fchdir): Fix declaration.
1041         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set HAVE_FCHDIR, not REPLACE_FCHDIR.
1042         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize HAVE_FCHDIR, not
1043         REPLACE_FCHDIR.
1044         * modules/unistd (Makefile.am): Substitute HAVE_FCHDIR, not
1045         REPLACE_FCHDIR.
1046
1047 2010-04-03  Bruno Haible  <bruno@clisp.org>
1048
1049         getpagesize: Fix C++ test error on mingw.
1050         * lib/unistd.in.h (getpagesize): Don't use _GL_CXXALIASWARN if the
1051         system does not declare the function.
1052         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Also check whether it's
1053         declared.
1054         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
1055         HAVE_DECL_GETPAGESIZE.
1056         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETPAGESIZE.
1057
1058 2010-04-03  Bruno Haible  <bruno@clisp.org>
1059
1060         stdio: Make C++ tests work on mingw.
1061         * lib/stdio.in.h (getline): Don't use _GL_CXXALIASWARN if the system
1062         does not declare the function.
1063
1064 2010-04-03  Bruno Haible  <bruno@clisp.org>
1065
1066         ftello: Fix C++ test error on mingw.
1067         * lib/stdio.in.h (ftello): Use modern idiom.
1068         * lib/ftello.c (ftello): Renamed from rpl_ftello.
1069         * m4/ftello.m4 (gl_FUNC_FTELLO): Distinguish the case that the function
1070         is missing and that it needs to be replaced.
1071         (gl_REPLACE_FTELLO): Don't set REPLACE_FTELLO here.
1072         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FTELLO.
1073         * modules/stdio (Makefile.am): Substitute HAVE_FTELLO.
1074
1075 2010-04-03  Bruno Haible  <bruno@clisp.org>
1076
1077         fseeko: Fix C++ test error on mingw.
1078         * lib/stdio.in.h (fseeko): Use modern idiom.
1079         * lib/fseeko.c (fseeko): Renamed from rpl_fseeko.
1080         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Distinguish the case that the function
1081         is missing and that it needs to be replaced.
1082         (gl_REPLACE_FSEEKO): Don't set REPLACE_FSEEKO here.
1083         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FSEEKO.
1084         * modules/stdio (Makefile.am): Substitute HAVE_FSEEKO.
1085
1086 2010-04-03  Bruno Haible  <bruno@clisp.org>
1087
1088         mkstemp: Fix C++ test error on mingw.
1089         * lib/stdlib.in.h (mkstemp): Use modern idiom.
1090         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Distinguish the case that the
1091         function is missing and that it needs to be replaced.
1092         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize HAVE_MKSTEMP.
1093         * modules/stdlib (Makefile.am): Substitute HAVE_MKSTEMP.
1094
1095 2010-04-03  Bruno Haible  <bruno@clisp.org>
1096
1097         stpncpy: Fix C++ test error on mingw.
1098         * lib/string.in.h (stpncpy): Use modern idiom.
1099         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Distinguish the case that the
1100         function is missing and that it needs to be replaced.
1101         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
1102         REPLACE_STPNCPY.
1103         * modules/string (Makefile.am): Substitute REPLACE_STPNCPY.
1104
1105 2010-04-03  Bruno Haible  <bruno@clisp.org>
1106
1107         sys_stat: Fix C++ test error on mingw.
1108         * build-aux/c++defs.h (_GL_CXXALIAS_RPL_CAST_1): New macro.
1109         * lib/sys_stat.in.h (lchmod): Use it instead of _GL_CXXALIAS_RPL_1.
1110
1111 2010-04-03  Bruno Haible  <bruno@clisp.org>
1112
1113         pty: Update doc.
1114         * doc/glibc-headers/pty.texi: Mention changes done since 2010-03-18.
1115
1116 2010-04-03  Bruno Haible  <bruno@clisp.org>
1117
1118         unistd: Fix C++ test error on mingw.
1119         * lib/unistd.in.h (getcwd): Use _GL_CXXALIAS_SYS_CAST.
1120
1121 2010-04-03  Bruno Haible  <bruno@clisp.org>
1122
1123         Update doc regarding mingw.
1124         * doc/glibc-functions/openpty.texi: Update regarding mingw.
1125         * doc/glibc-functions/login_tty.texi: Likewise.
1126         * doc/glibc-functions/forkpty.texi: Likewise.
1127
1128 2010-04-03  Bruno Haible  <bruno@clisp.org>
1129
1130         stdlib: Avoid compilation failure of c-strtold on mingw.
1131         * lib/stdlib.in.h: Don't include <unistd.h> on native Windows systems.
1132
1133 2010-04-03  Bruno Haible  <bruno@clisp.org>
1134
1135         locale: Make C++ tests work on Cygwin and mingw.
1136         * lib/locale.in.h (duplocale): Don't use _GL_CXXALIASWARN if gnulib
1137         cannot provide the function.
1138         Reported by Simon Josefsson.
1139
1140 2010-04-03  Bruno Haible  <bruno@clisp.org>
1141
1142         localename: Port to MacOS X 10.6.
1143         * lib/localename.c (gl_locale_name_thread_unsafe): On MacOS X, try the
1144         memory layout of the locales in MacOS X 10.6 as well.
1145         Reported by Panu Kekäläinen <panu@kekalainen.eu>.
1146
1147 2010-04-02  Bruno Haible  <bruno@clisp.org>
1148
1149         gnulib-tool: Ensure that long-running tests are executed last.
1150         * gnulib-tool (func_emit_tests_Makefile_am): Emit the code for long-
1151         running tests after the one for the other tests.
1152
1153 2010-04-02  Bruno Haible  <bruno@clisp.org>
1154
1155         gnulib-tool: Ensure the tests in the main directory are executed first.
1156         * gnulib-tool (func_emit_tests_Makefile_am): Initialize SUBDIRS to
1157         start with the current directory.
1158
1159 2010-04-02  Bruno Haible  <bruno@clisp.org>
1160
1161         Tests for module 'havelib', moved here from GNU gettext.
1162         * modules/havelib-tests: New file, from gettext/autoconf-lib-link with
1163         modifications.
1164         * tests/havelib/README: New file, from gettext/autoconf-lib-link.
1165         * tests/havelib/Makefile.am: New file, from gettext/autoconf-lib-link
1166         with modifications.
1167         * tests/havelib/rpath-1: New file, from gettext/autoconf-lib-link with
1168         modifications.
1169         * tests/havelib/rpath-1a: New file, from gettext/autoconf-lib-link.
1170         * tests/havelib/rpath-1b: New file, from gettext/autoconf-lib-link.
1171         * tests/havelib/rpath-2_a: New file, from gettext/autoconf-lib-link
1172         with modifications.
1173         * tests/havelib/rpath-2_b: New file, from gettext/autoconf-lib-link
1174         with modifications.
1175         * tests/havelib/rpath-2aaa: New file, from gettext/autoconf-lib-link.
1176         * tests/havelib/rpath-2aab: New file, from gettext/autoconf-lib-link.
1177         * tests/havelib/rpath-2aac: New file, from gettext/autoconf-lib-link.
1178         * tests/havelib/rpath-2aad: New file, from gettext/autoconf-lib-link.
1179         * tests/havelib/rpath-2aba: New file, from gettext/autoconf-lib-link.
1180         * tests/havelib/rpath-2abb: New file, from gettext/autoconf-lib-link.
1181         * tests/havelib/rpath-2abc: New file, from gettext/autoconf-lib-link.
1182         * tests/havelib/rpath-2abd: New file, from gettext/autoconf-lib-link.
1183         * tests/havelib/rpath-2baa: New file, from gettext/autoconf-lib-link.
1184         * tests/havelib/rpath-2bab: New file, from gettext/autoconf-lib-link.
1185         * tests/havelib/rpath-2bac: New file, from gettext/autoconf-lib-link.
1186         * tests/havelib/rpath-2bad: New file, from gettext/autoconf-lib-link.
1187         * tests/havelib/rpath-2bba: New file, from gettext/autoconf-lib-link.
1188         * tests/havelib/rpath-2bbb: New file, from gettext/autoconf-lib-link.
1189         * tests/havelib/rpath-2bbc: New file, from gettext/autoconf-lib-link.
1190         * tests/havelib/rpath-2bbd: New file, from gettext/autoconf-lib-link.
1191         * tests/havelib/rpath-3_a: New file, from gettext/autoconf-lib-link
1192         with modifications.
1193         * tests/havelib/rpath-3_b: New file, from gettext/autoconf-lib-link
1194         with modifications.
1195         * tests/havelib/rpath-3aaa: New file, from gettext/autoconf-lib-link.
1196         * tests/havelib/rpath-3aab: New file, from gettext/autoconf-lib-link.
1197         * tests/havelib/rpath-3aac: New file, from gettext/autoconf-lib-link.
1198         * tests/havelib/rpath-3aad: New file, from gettext/autoconf-lib-link.
1199         * tests/havelib/rpath-3aae: New file, from gettext/autoconf-lib-link.
1200         * tests/havelib/rpath-3aaf: New file, from gettext/autoconf-lib-link.
1201         * tests/havelib/rpath-3aag: New file, from gettext/autoconf-lib-link.
1202         * tests/havelib/rpath-3aah: New file, from gettext/autoconf-lib-link.
1203         * tests/havelib/rpath-3aba: New file, from gettext/autoconf-lib-link.
1204         * tests/havelib/rpath-3abb: New file, from gettext/autoconf-lib-link.
1205         * tests/havelib/rpath-3abc: New file, from gettext/autoconf-lib-link.
1206         * tests/havelib/rpath-3abd: New file, from gettext/autoconf-lib-link.
1207         * tests/havelib/rpath-3abe: New file, from gettext/autoconf-lib-link.
1208         * tests/havelib/rpath-3abf: New file, from gettext/autoconf-lib-link.
1209         * tests/havelib/rpath-3abg: New file, from gettext/autoconf-lib-link.
1210         * tests/havelib/rpath-3abh: New file, from gettext/autoconf-lib-link.
1211         * tests/havelib/rpath-3baa: New file, from gettext/autoconf-lib-link.
1212         * tests/havelib/rpath-3bab: New file, from gettext/autoconf-lib-link.
1213         * tests/havelib/rpath-3bac: New file, from gettext/autoconf-lib-link.
1214         * tests/havelib/rpath-3bad: New file, from gettext/autoconf-lib-link.
1215         * tests/havelib/rpath-3bae: New file, from gettext/autoconf-lib-link.
1216         * tests/havelib/rpath-3baf: New file, from gettext/autoconf-lib-link.
1217         * tests/havelib/rpath-3bag: New file, from gettext/autoconf-lib-link.
1218         * tests/havelib/rpath-3bah: New file, from gettext/autoconf-lib-link.
1219         * tests/havelib/rpath-3bba: New file, from gettext/autoconf-lib-link.
1220         * tests/havelib/rpath-3bbb: New file, from gettext/autoconf-lib-link.
1221         * tests/havelib/rpath-3bbc: New file, from gettext/autoconf-lib-link.
1222         * tests/havelib/rpath-3bbd: New file, from gettext/autoconf-lib-link.
1223         * tests/havelib/rpath-3bbe: New file, from gettext/autoconf-lib-link.
1224         * tests/havelib/rpath-3bbf: New file, from gettext/autoconf-lib-link.
1225         * tests/havelib/rpath-3bbg: New file, from gettext/autoconf-lib-link.
1226         * tests/havelib/rpath-3bbh: New file, from gettext/autoconf-lib-link.
1227         * tests/havelib/rpathx/rpathx.c: New file, from
1228         gettext/autoconf-lib-link.
1229         * tests/havelib/rpathx/Makefile.am: New file, from
1230         gettext/autoconf-lib-link.
1231         * tests/havelib/rpathx/configure.ac: New file, from
1232         gettext/autoconf-lib-link with modifications.
1233         * tests/havelib/rpathy/rpathy.c: New file, from
1234         gettext/autoconf-lib-link.
1235         * tests/havelib/rpathy/Makefile.am: New file, from
1236         gettext/autoconf-lib-link.
1237         * tests/havelib/rpathy/configure.ac: New file, from
1238         gettext/autoconf-lib-link with modifications.
1239         * tests/havelib/rpathz/rpathz.c: New file, from
1240         gettext/autoconf-lib-link.
1241         * tests/havelib/rpathz/Makefile.am: New file, from
1242         gettext/autoconf-lib-link.
1243         * tests/havelib/rpathz/configure.ac: New file, from
1244         gettext/autoconf-lib-link with modifications.
1245         * tests/havelib/rpathlx/usex.c: New file, from
1246         gettext/autoconf-lib-link.
1247         * tests/havelib/rpathlx/Makefile.am: New file, from
1248         gettext/autoconf-lib-link.
1249         * tests/havelib/rpathlx/configure.ac: New file, from
1250         gettext/autoconf-lib-link with modifications.
1251         * tests/havelib/rpathly/usey.c: New file, from
1252         gettext/autoconf-lib-link.
1253         * tests/havelib/rpathly/Makefile.am: New file, from
1254         gettext/autoconf-lib-link.
1255         * tests/havelib/rpathly/configure.ac: New file, from
1256         gettext/autoconf-lib-link with modifications.
1257         * tests/havelib/rpathlz/usez.c: New file, from
1258         gettext/autoconf-lib-link.
1259         * tests/havelib/rpathlz/Makefile.am: New file, from
1260         gettext/autoconf-lib-link.
1261         * tests/havelib/rpathlz/configure.ac: New file, from
1262         gettext/autoconf-lib-link with modifications.
1263         * tests/havelib/rpathlyx/usey.c: New file, from
1264         gettext/autoconf-lib-link.
1265         * tests/havelib/rpathlyx/Makefile.am: New file, from
1266         gettext/autoconf-lib-link.
1267         * tests/havelib/rpathlyx/configure.ac: New file, from
1268         gettext/autoconf-lib-link with modifications.
1269         * tests/havelib/rpathlzyx/usez.c: New file, from
1270         gettext/autoconf-lib-link.
1271         * tests/havelib/rpathlzyx/Makefile.am: New file, from
1272         gettext/autoconf-lib-link.
1273         * tests/havelib/rpathlzyx/configure.ac: New file, from
1274         gettext/autoconf-lib-link with modifications.
1275         * tests/havelib/rpathcfg.sh: New file, from gettext/autoconf-lib-link
1276         with modifications.
1277
1278 2010-04-02  Bruno Haible  <bruno@clisp.org>
1279
1280         gnulib-tool: Create distributed built sources also for the tests.
1281         * gnulib-tool (func_create_testdir): Also generate distributed built
1282         sources in the tests directory.
1283
1284 2010-04-02  Bruno Haible  <bruno@clisp.org>
1285
1286         gnulib-tool: Obey user's environment variables.
1287         * gnulib-tool (func_create_testdir): When creating built sources,
1288         respect the environment variables for autoconf, automake, etc. given by
1289         the user.
1290
1291 2010-04-02  Bruno Haible  <bruno@clisp.org>
1292
1293         gnulib-tool: Provide the value of --m4-base to modules.
1294         * gnulib-tool (func_import, func_create_testdir): Emit a definition
1295         of gl_m4_base.
1296
1297 2010-04-02  Eric Blake  <eblake@redhat.com>
1298
1299         maint.mk: fix some fallout
1300         * NEWS: Document the incompatible change, and its effect on cfg.mk.
1301         * top/maint.mk (sc_prohibit_test_minus_ao): Update.
1302
1303 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
1304
1305         maint.mk: _sc_search_regexp: generalize and rename from _prohibit_regexp
1306         * top/maint.mk (_sc_search_regexp): Rename from _prohibit_regexp.
1307         (sc_cast_of_argument_to_free): Adapt to use _sc_search_regexp.
1308         (sc_cast_of_x_alloc_return_value): Likewise.
1309         (sc_cast_of_alloca_return_value): Likewise.
1310         (sc_space_tab): Likewise.
1311         (sc_prohibit_atoi_atof): Likewise.
1312         (sc_prohibit_magic_number_exit): Likewise.
1313         (sc_error_exit_success): Likewise.
1314         (sc_file_system): Likewise.
1315         (sc_prohibit_have_config_h): Likewise.
1316         (sc_require_config_h): Likewise.
1317         (sc_prohibit_HAVE_MBRTOWC): Likewise.
1318         (sc_obsolete_symbols): Likewise.
1319         (sc_changelog): Likewise.
1320         (sc_program_name): Likewise.
1321         (sc_the_the): Likewise.
1322         (sc_trailing_blank): Likewise.
1323         (sc_two_space_separator_in_usage): Likewise.
1324         (sc_useless_cpp_parens): Likewise.
1325         (sc_GPL_version): Likewise.
1326         (sc_GFDL_version): Likewise.
1327         (sc_texinfo_acronym): Likewise.
1328         (sc_prohibit_cvs_keyword): Likewise.
1329         (sc_prohibit_stat_st_blocks): Likewise.
1330         (sc_prohibit_S_IS_definition): Likewise.
1331         (sc_redundant_const): Likewise.
1332         (sc_makefile_TAB_only_indentation): Likewise.
1333         (sc_m4_quote_check): Likewise.
1334         (sc_makefile_path_separator_check): Likewise.
1335         (sc_copyright_check): Likewise.
1336         (sc_Wundef_boolean): Likewise.
1337         (sc_vulnerable_makefile_CVE-2009-4029): Likewise.
1338
1339         maint.mk: match 0 or more whitespace-before-function-call '('
1340         * top/maint.mk (sc_error_exit_success): Relax regexp to match uses
1341         that have zero or two-and-more spaces between the function name
1342         and the open parenthesis.
1343         (sc_error_message_warn_fatal): Likewise.
1344         (sc_error_message_uppercase): Likewise.
1345         (sc_error_message_period): Likewise.
1346
1347 2010-03-31  Eric Blake  <eblake@redhat.com>
1348
1349         maint.mk: check for [ as well as test
1350         * top/maint.mk (sc_prohibit_test_minus_ao): Extend test.
1351         Based on a libvirt report by Matthias Bolte.
1352
1353         gnumakefile: don't squelch _version output
1354         * top/GNUmakefile (_version): Create one-shot dependency rather
1355         than using $(shell) when version must be regenerated.
1356         (_autoreconf): Run verbosely, by default.
1357
1358         sys_time: avoid compiler warnings
1359         * lib/sys_time.in.h (includes): Ensure gcc pragma is
1360         unconditional, fixing regression from 2010-03-29.
1361         Reported by Simon Josefsson.
1362
1363 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
1364
1365         maint.mk: s/_header_without_use/_sc_header_without_use/
1366         * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
1367         (sc_prohibit_assert_without_use): Use the new name.
1368         (sc_prohibit_close_stream_without_use): Likewise.
1369         (sc_prohibit_getopt_without_use): Likewise.
1370         (sc_prohibit_quotearg_without_use): Likewise.
1371         (sc_prohibit_quote_without_use): Likewise.
1372         (sc_prohibit_long_options_without_use): Likewise.
1373         (sc_prohibit_inttostr_without_use): Likewise.
1374         (sc_prohibit_ignore_value_without_use): Likewise.
1375         (sc_prohibit_error_without_use): Likewise.
1376         (sc_prohibit_xalloc_without_use): Likewise.
1377         (sc_prohibit_hash_without_use): Likewise.
1378         (sc_prohibit_hash_pjw_without_use): Likewise.
1379         (sc_prohibit_safe_read_without_use): Likewise.
1380         (sc_prohibit_argmatch_without_use): Likewise.
1381         (sc_prohibit_canonicalize_without_use): Likewise.
1382         (sc_prohibit_root_dev_ino_without_use): Likewise.
1383         (sc_prohibit_openat_without_use): Likewise.
1384         (sc_prohibit_c_ctype_without_use): Likewise.
1385         (sc_prohibit_signal_without_use): Likewise.
1386         (sc_prohibit_intprops_without_use): Likewise.
1387
1388 2010-03-30  Eric Blake  <eblake@redhat.com>
1389
1390         maint: improve module indicators
1391         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
1392         (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
1393         columns, and avoid extra macro expansion.
1394
1395         fdopendir: work around FreeBSD bug
1396         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
1397         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
1398         * modules/dirent (Makefile.am): Substitute it.
1399         * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
1400         declaration.
1401         * doc/posix-functions/fdopendir.texi (fdopendir): Document the
1402         fix.
1403         Reported by Christian Weisgerber <naddy@mips.inka.de>.
1404
1405 2010-03-29  Bruno Haible  <bruno@clisp.org>
1406
1407         Emit #pragma system_header after the inclusion guard, not before.
1408         * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
1409         guard that spans the entire file, not before. This enables an
1410         optimization in GCC's preprocessor.
1411         * lib/ctype.in.h: Likewise.
1412         * lib/dirent.in.h: Likewise.
1413         * lib/errno.in.h: Likewise.
1414         * lib/float.in.h: Likewise.
1415         * lib/getopt.in.h: Likewise.
1416         * lib/iconv.in.h: Likewise.
1417         * lib/langinfo.in.h: Likewise.
1418         * lib/locale.in.h: Likewise.
1419         * lib/math.in.h: Likewise.
1420         * lib/netdb.in.h: Likewise.
1421         * lib/netinet_in.in.h: Likewise.
1422         * lib/pty.in.h: Likewise.
1423         * lib/sched.in.h: Likewise.
1424         * lib/se-selinux.in.h: Likewise.
1425         * lib/search.in.h: Likewise.
1426         * lib/spawn.in.h: Likewise.
1427         * lib/stdarg.in.h: Likewise.
1428         * lib/stdint.in.h: Likewise.
1429         * lib/string.in.h: Likewise.
1430         * lib/strings.in.h: Likewise.
1431         * lib/sys_file.in.h: Likewise.
1432         * lib/sys_ioctl.in.h: Likewise.
1433         * lib/sys_time.in.h: Likewise.
1434         * lib/sys_times.in.h: Likewise.
1435         * lib/sys_utsname.in.h: Likewise.
1436         * lib/sys_wait.in.h: Likewise.
1437         * lib/sysexits.in.h: Likewise.
1438         * lib/wctype.in.h: Likewise.
1439
1440 2010-03-28  James Youngman  <jay@gnu.org>
1441
1442         save-cwd: don't leak a file descriptor when the caller execs.
1443         * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
1444         saved file descriptor.
1445         * modules/save-cwd (Depends-on): Depend on cloexec.
1446
1447 2010-03-29  Bruno Haible  <bruno@clisp.org>
1448
1449         Remove vestiges of fts-lgpl module.
1450         * lib/fts_.h: Assume GNULIB_FTS is 1.
1451         * lib/fts.c: Likewise.
1452         * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
1453
1454 2010-03-28  Bruno Haible  <bruno@clisp.org>
1455
1456         Fix definition of tests witness macro.
1457         * gnulib-tool (func_import): Fix definition of witness macro.
1458
1459 2010-03-28  Bruno Haible  <bruno@clisp.org>
1460
1461         Fix ioctl's protoype on glibc systems.
1462         * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
1463         _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
1464         * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
1465         * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
1466         signature. If not, arrange to replace the ioctl function.
1467         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
1468         REPLACE_IOCTL.
1469         * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
1470         * doc/posix-functions/ioctl.texi: Mention the glibc problem.
1471         Reported by Ludovic Courtès <ludo@gnu.org>.
1472
1473 2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
1474
1475         exclude: fix the case of globs vs. EXCLUDE_INCLUDE
1476         * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
1477         made it so grep -r --include=GLOB* ... did not work.
1478
1479 2010-03-26  Jim Meyering  <meyering@redhat.com>
1480             Eric Blake  <eblake@redhat.com>
1481
1482         maint.mk: prohibit use of test's -o and -a operators
1483         * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
1484
1485 2010-03-28  Bruno Haible  <bruno@clisp.org>
1486
1487         Remove unused GNULIB_XYZ macro definitions.
1488         * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
1489         invocation.
1490
1491 2010-03-28  Bruno Haible  <bruno@clisp.org>
1492
1493         Mark privileged tests modules.
1494         * modules/idpriv-drop-tests (Status): New section.
1495         * modules/idpriv-droptemp-tests (Status): New section.
1496
1497 2010-03-28  Bruno Haible  <bruno@clisp.org>
1498
1499         Split C++ tests into separate tests modules.
1500         * modules/dirent-c++-tests: New file, extracted from
1501         modules/dirent-tests.
1502         * modules/dirent-tests: Depend on it.
1503         * modules/fcntl-h-c++-tests: New file, extracted from
1504         modules/fcntl-h-tests.
1505         * modules/fcntl-h-tests: Depend on it.
1506         * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
1507         * modules/glob-tests: Depend on it.
1508         * modules/iconv-h-c++-tests: New file, extracted from
1509         modules/iconv-h-tests.
1510         * modules/iconv-h-tests: Depend on it.
1511         * modules/langinfo-c++-tests: New file, extracted from
1512         modules/langinfo-tests.
1513         * modules/langinfo-tests: Depend on it.
1514         * modules/locale-c++-tests: New file, extracted from
1515         modules/locale-tests.
1516         * modules/locale-tests: Depend on it.
1517         * modules/math-c++-tests: New file, extracted from modules/math-tests.
1518         * modules/math-tests: Depend on it.
1519         * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
1520         * modules/pty-tests: Depend on it.
1521         * modules/search-c++-tests: New file, extracted from
1522         modules/search-tests.
1523         * modules/search-tests: Depend on it.
1524         * modules/signal-c++-tests: New file, extracted from
1525         modules/signal-tests.
1526         * modules/signal-tests: Depend on it.
1527         * modules/spawn-c++-tests: New file, extracted from
1528         modules/spawn-tests.
1529         * modules/spawn-tests: Depend on it.
1530         * modules/stdio-c++-tests: New file, extracted from
1531         modules/stdio-tests.
1532         * modules/stdio-tests: Depend on it.
1533         * modules/stdlib-c++-tests: New file, extracted from
1534         modules/stdlib-tests.
1535         * modules/stdlib-tests: Depend on it.
1536         * modules/string-c++-tests: New file, extracted from
1537         modules/string-tests.
1538         * modules/string-tests: Depend on it.
1539         * modules/sys_ioctl-c++-tests: New file, extracted from
1540         modules/sys_ioctl-tests.
1541         * modules/sys_ioctl-tests: Depend on it.
1542         * modules/sys_select-c++-tests: New file, extracted from
1543         modules/sys_select-tests.
1544         * modules/sys_select-tests: Depend on it.
1545         * modules/sys_socket-c++-tests: New file, extracted from
1546         modules/sys_socket-tests.
1547         * modules/sys_socket-tests: Depend on it.
1548         * modules/sys_stat-c++-tests: New file, extracted from
1549         modules/sys_stat-tests.
1550         * modules/sys_stat-tests: Depend on it.
1551         * modules/sys_time-c++-tests: New file, extracted from
1552         modules/sys_time-tests.
1553         * modules/sys_time-tests: Depend on it.
1554         * modules/time-c++-tests: New file, extracted from modules/time-tests.
1555         * modules/time-tests: Depend on it.
1556         * modules/unistd-c++-tests: New file, extracted from
1557         modules/unistd-tests.
1558         * modules/unistd-tests: Depend on it.
1559         * modules/wchar-c++-tests: New file, extracted from
1560         modules/wchar-tests.
1561         * modules/wchar-tests: Depend on it.
1562         * modules/wctype-c++-tests: New file, extracted from
1563         modules/wctype-tests.
1564         * modules/wctype-tests: Depend on it.
1565         Reported by Simon Josefsson.
1566
1567 2010-03-28  Bruno Haible  <bruno@clisp.org>
1568
1569         gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
1570         * gnulib-tool (func_exists_module): New function, extracted from
1571         func_verify_module.
1572         (func_verify_module): Use it.
1573         (func_get_dependencies): Synthetize a dependency from 'foo-tests' to
1574         'foo' only if 'foo' exists.
1575         * doc/gnulib.texi (Extra tests modules): Explain how to split a tests
1576         module.
1577
1578 2010-03-28  Bruno Haible  <bruno@clisp.org>
1579
1580         gnulib-tool: Add support for special categories of tests.
1581         * gnulib-tool: New options --with-c++-tests, --with-longrunning-tests,
1582         --with-privileged-tests, --with-unportable-tests, --with-all-tests.
1583         (func_usage): Document them.
1584         (inc_cxx_tests, inc_longrunning_tests, inc_privileged_tests,
1585         inc_unportable_tests, inc_all_tests): New variables.
1586         (func_acceptable): Consider these variables.
1587         (func_modules_transitive_closure): Make it work when the 'Status' field
1588         consists of multiple words.
1589         (func_import): Store and restore the values of inc_cxx_tests,
1590         inc_longrunning_tests, inc_privileged_tests, inc_unportable_tests,
1591         inc_all_tests in gnulib-comp.m4.
1592         (func_create_testdir): Set inc_all_tests to true.
1593         * doc/gnulib.texi (Extra tests modules): New section.
1594         Suggested by Jim Meyering.
1595
1596 2010-03-28  Bruno Haible  <bruno@clisp.org>
1597
1598         ansi-c++-opt: Allow turning off the C++ build by default.
1599         * m4/ansi-c++.m4 (gl_CXX_CHOICE): Let CXX_CHOICE default to 'no' if
1600         gl_CXX_CHOICE_DEFAULT_NO is defined.
1601         Requested by Eric Blake.
1602
1603 2010-03-28  Bruno Haible  <bruno@clisp.org>
1604
1605         unistd: Avoid #define replacements in C++ mode.
1606         * lib/unistd.in.h (socket, connect, accept, bind, getpeername,
1607         getsockname, getsockopt, listen, recv, send, recvfrom, sendto,
1608         setsockopt, shutdown, select): In C++, attach a warning to the function
1609         if possible, rather than #defining the symbol to a dysfunctional alias.
1610         Reported by John W. Eaton <jwe@gnu.org>.
1611
1612 2010-03-28  Bruno Haible  <bruno@clisp.org>
1613
1614         Fix link errors on mingw.
1615         * lib/sys_ioctl.in.h (ioctl): Fix declaration idiom.
1616         * modules/sys_ioctl-tests (Makefile.am): Link test-sys_ioctl-c++ with
1617         $(LIBSOCKET).
1618         * modules/sys_select-tests (Makefile.am): Link test-sys_select-c++ with
1619         $(LIBSOCKET).
1620
1621 2010-03-28  Bruno Haible  <bruno@clisp.org>
1622             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1623
1624         lib-ignore: Determine different options for different compilers.
1625         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Set a variable which
1626         depends on the current language (C/C++/Fortran). Don't set LDFLAGS.
1627         Add comments.
1628         (_gl_IGNORE_UNUSED_LIBRARIES_OPTIONS): New macro.
1629         * NEWS: Mention the change.
1630
1631 2010-03-27  Bruno Haible  <bruno@clisp.org>
1632
1633         Remove unused GNULIB_XYZ macro definitions.
1634         * modules/dup3 (configure.ac): Remove gl_MODULE_INDICATOR invocation.
1635         * modules/fseek (configure.ac): Likewise.
1636         * modules/ioctl (configure.ac): Likewise.
1637         * modules/open (configure.ac): Likewise.
1638         * modules/stdlib-safer (configure.ac): Likewise.
1639
1640 2010-03-27  Bruno Haible  <bruno@clisp.org>
1641
1642         Add a remark about certain modules.
1643         * modules/malloc (Comment): New section.
1644         * modules/realloc (Comment): Likewise.
1645         * modules/sigpipe (Comment): Likewise.
1646
1647 2010-03-27  Bruno Haible  <bruno@clisp.org>
1648
1649         Resolve conflict between the two kinds of module indicators.
1650         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Define
1651         GNULIB_TEST_XYZ instead of GNULIB_XYZ.
1652         * modules/canonicalize (configure.ac): Invoke
1653         gl_MODULE_INDICATOR_FOR_TESTS.
1654         * tests/test-canonicalize-lgpl.c: Test GNULIB_TEST_XYZ instead of
1655         GNULIB_XYZ.
1656         * tests/test-dirent-c++.cc: Likewise.
1657         * tests/test-dirent-safer.c: Likewise.
1658         * tests/test-dup2.c: Likewise.
1659         * tests/test-fchdir.c: Likewise.
1660         * tests/test-fcntl-h-c++.cc: Likewise.
1661         * tests/test-getopt.c: Likewise.
1662         * tests/test-getopt.h: Likewise.
1663         * tests/test-langinfo-c++.cc: Likewise.
1664         * tests/test-locale-c++.cc: Likewise.
1665         * tests/test-math-c++.cc: Likewise.
1666         * tests/test-pty-c++.cc: Likewise.
1667         * tests/test-search-c++.cc: Likewise.
1668         * tests/test-signal-c++.cc: Likewise.
1669         * tests/test-spawn-c++.cc: Likewise.
1670         * tests/test-stdio-c++.cc: Likewise.
1671         * tests/test-stdlib-c++.cc: Likewise.
1672         * tests/test-string-c++.cc: Likewise.
1673         * tests/test-sys_ioctl-c++.cc: Likewise.
1674         * tests/test-sys_select-c++.cc: Likewise.
1675         * tests/test-sys_socket-c++.cc: Likewise.
1676         * tests/test-sys_stat-c++.cc: Likewise.
1677         * tests/test-sys_time-c++.cc: Likewise.
1678         * tests/test-time-c++.cc: Likewise.
1679         * tests/test-unistd-c++.cc: Likewise.
1680         * tests/test-wchar-c++.cc: Likewise.
1681         * tests/uninorm/test-u8-nfc.c: Likewise.
1682         * tests/uninorm/test-u8-nfd.c: Likewise.
1683         * tests/uninorm/test-u8-nfkc.c: Likewise.
1684         * tests/uninorm/test-u8-nfkd.c: Likewise.
1685         * tests/uninorm/test-u16-nfc.c: Likewise.
1686         * tests/uninorm/test-u16-nfd.c: Likewise.
1687         * tests/uninorm/test-u16-nfkc.c: Likewise.
1688         * tests/uninorm/test-u16-nfkd.c: Likewise.
1689         * tests/uninorm/test-u32-nfc.c: Likewise.
1690         * tests/uninorm/test-u32-nfc-big.c: Likewise.
1691         * tests/uninorm/test-u32-nfd.c: Likewise.
1692         * tests/uninorm/test-u32-nfd-big.c: Likewise.
1693         * tests/uninorm/test-u32-nfkc.c: Likewise.
1694         * tests/uninorm/test-u32-nfkc-big.c: Likewise.
1695         * tests/uninorm/test-u32-nfkd.c: Likewise.
1696         * tests/uninorm/test-u32-nfkd-big.c: Likewise.
1697         * tests/uninorm/test-u32-normalize-big.c: Likewise.
1698
1699 2010-03-27  Bruno Haible  <bruno@clisp.org>
1700
1701         Distinguish two kinds of module indicators.
1702         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Renamed from
1703         gl_MODULE_INDICATOR.
1704         (gl_MODULE_INDICATOR): New macro.
1705         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
1706         gl_MODULE_INDICATOR_FOR_TESTS instead of gl_MODULE_INDICATOR.
1707         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
1708         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
1709         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
1710         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
1711         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
1712         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
1713         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
1714         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
1715         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
1716         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
1717         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
1718         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
1719         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
1720         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
1721         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
1722         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
1723         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
1724         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
1725         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
1726         * modules/cloexec (configure.ac): Likewise.
1727         * modules/getopt-gnu (configure.ac): Likewise.
1728         * modules/uninorm/u8-normalize (configure.ac): Likewise.
1729         * modules/uninorm/u16-normalize (configure.ac): Likewise.
1730         * modules/uninorm/u32-normalize (configure.ac): Likewise.
1731         * modules/fdopendir (configure.ac): Invoke gl_MODULE_INDICATOR.
1732
1733 2010-03-27  Bruno Haible  <bruno@clisp.org>
1734
1735         New module description field 'Comment'.
1736         * gnulib-tool: New option --extract-comment.
1737         (func_usage): Document it.
1738         (sed_extract_prog, sed_extract_field_header): Support 'Comment' field.
1739         (func_get_comment): New function.
1740         * modules/TEMPLATE-EXTENDED: Add a blank Comment field.
1741
1742 2010-03-27  Bruno Haible  <bruno@clisp.org>
1743
1744         Addendum to 2010-02-07 commit.
1745         * gnulib-tool (func_usage): Document --extract-applicability option.
1746
1747 2010-03-27  Bruno Haible  <bruno@clisp.org>
1748
1749         Use GNULIB_POSIXCHECK instead of GNULIB_PORTCHECK.
1750         * lib/time.in.h (asctime, asctime_r, ctime, ctime_r): Test
1751         GNULIB_POSIXCHECK, not GNULIB_PORTCHECK. Provide compile-time warnings
1752         rather than link errors.
1753
1754 2010-03-27  Bruno Haible  <bruno@clisp.org>
1755
1756         Avoid side effects from tests-related modules on the compilation of lib.
1757         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_CONDITION): New macro.
1758         (gl_MODULE_INDICATOR_SET_VARIABLE): Use its expansion as a value.
1759         * gnulib-tool (func_emit_tests_Makefile_am): Accept a witness_macro
1760         parameter. Emit into AM_CPPFLAGS a definition of the designated C
1761         macro.
1762         (func_import): Define a witness macro. Assign it a value that depends
1763         on the current package. Override gl_MODULE_INDICATOR_CONDITION for the
1764         tests-related modules.
1765         (func_create_testdir): Update func_emit_tests_Makefile_am invocation.
1766         Reported by Jim Meyering.
1767
1768 2010-03-27  Bruno Haible  <bruno@clisp.org>
1769
1770         Factorize common .m4 code.
1771         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE): New macro.
1772         * m4/arpa_inet_h.m4 (gl_ARPA_INET_MODULE_INDICATOR): Use it.
1773         * m4/ctype.m4 (gl_CTYPE_MODULE_INDICATOR): Likewise.
1774         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Likewise.
1775         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
1776         * m4/iconv_h.m4 (gl_ICONV_MODULE_INDICATOR): Likewise.
1777         * m4/inttypes.m4 (gl_INTTYPES_MODULE_INDICATOR): Likewise.
1778         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
1779         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
1780         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
1781         * m4/netdb_h.m4 (gl_NETDB_MODULE_INDICATOR): Likewise.
1782         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
1783         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
1784         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
1785         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
1786         * m4/stddef_h.m4 (gl_STDDEF_MODULE_INDICATOR): Likewise.
1787         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
1788         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
1789         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
1790         * m4/strings_h.m4 (gl_STRINGS_MODULE_INDICATOR): Likewise.
1791         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_MODULE_INDICATOR): Likewise.
1792         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
1793         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
1794         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
1795         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
1796         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
1797         * m4/sys_times_h.m4 (gl_SYS_TIMES_MODULE_INDICATOR): Likewise.
1798         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_MODULE_INDICATOR): Likewise.
1799         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Likewise.
1800         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
1801         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
1802         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
1803
1804 2010-03-27  Bruno Haible  <bruno@clisp.org>
1805
1806         Fix a compilation error on Cygwin with g++ >= 4.3.
1807         * lib/sys_stat.in.h (lchmod): Don't warn about the use of this function
1808         if it is undefined or if we alias it to chmod.
1809         (lstat): Don't warn about the use of this function if it is undefined
1810         or if we alias it to stat.
1811         Reported by Simon Josefsson.
1812
1813 2010-03-27  Bruno Haible  <bruno@clisp.org>
1814
1815         * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Renamed from gl_GETLOGIN.
1816         * modules/getlogin (configure.ac): Update.
1817
1818         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Renamed from gl_GETLOGIN_R.
1819         * modules/getlogin_r (configure.ac): Update.
1820
1821         * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Renamed from gl_INET_NTOP.
1822         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Update.
1823         * modules/inet_ntop (configure.ac): Update.
1824
1825         * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Renamed from gl_INET_PTON.
1826         * modules/inet_pton (configure.ac): Update.
1827
1828         * m4/mbslen.m4 (gl_FUNC_MBSLEN): Renamed from gl_MBSLEN.
1829         * modules/mbslen (configure.ac): Update.
1830
1831         * m4/pty.m4 (gl_FUNC_FORKPTY): Renamed from gl_FORKPTY.
1832         (gl_FUNC_OPENPTY): Renamed from gl_OPENPTY.
1833         * modules/forkpty (configure.ac): Update.
1834         * modules/openpty (configure.ac): Update.
1835
1836 2010-03-26  Simon Josefsson  <simon@josefsson.org>
1837
1838         * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is
1839         no *.texi files.  Reported by Eric Blake <eblake@redhat.com>.
1840
1841 2010-03-25  Eric Blake  <eblake@redhat.com>
1842
1843         maint: use pragma consistently across replacement headers
1844         * lib/ctype.in.h (system_header): Hoist for consistent placement.
1845         * lib/dirent.in.h (system_header): Likewise.
1846         * lib/errno.in.h (system_header): Likewise.
1847         * lib/float.in.h (system_header): Likewise.
1848         * lib/getopt.in.h (system_header): Likewise.
1849         * lib/iconv.in.h (system_header): Likewise.
1850         * lib/inttypes.in.h (system_header): Likewise.
1851         * lib/langinfo.in.h (system_header): Likewise.
1852         * lib/locale.in.h (system_header): Likewise.
1853         * lib/math.in.h (system_header): Likewise.
1854         * lib/netdb.in.h (system_header): Likewise.
1855         * lib/netinet_in.in.h (system_header): Likewise.
1856         * lib/pty.in.h (system_header): Likewise.
1857         * lib/sched.in.h (system_header): Likewise.
1858         * lib/se-selinux.in.h (system_header): Likewise.
1859         * lib/search.in.h (system_header): Likewise.
1860         * lib/spawn.in.h (system_header): Likewise.
1861         * lib/stdarg.in.h (system_header): Likewise.
1862         * lib/stdint.in.h (system_header): Likewise.
1863         * lib/string.in.h (system_header): Likewise.
1864         * lib/strings.in.h (system_header): Likewise.
1865         * lib/sys_file.in.h (system_header): Likewise.
1866         * lib/sys_ioctl.in.h (system_header): Likewise.
1867         * lib/sys_socket.in.h (system_header): Likewise.
1868         * lib/sys_times.in.h (system_header): Likewise.
1869         * lib/sys_utsname.in.h (system_header): Likewise.
1870         * lib/sys_wait.in.h (system_header): Likewise.
1871         * lib/sysexits.in.h (system_header): Likewise.
1872         * lib/unistd.in.h (system_header): Likewise.
1873         * lib/wctype.in.h (system_header): Likewise.
1874
1875         arpa/inet: fix mingw compilation warning
1876         * lib/arpa_inet.in.h (system_header): Hoist to be unconditional.
1877         Reported by Matthew Bolte.
1878
1879 2010-03-25  Bruno Haible  <bruno@clisp.org>
1880
1881         Avoid collision between gnulib wrapper and libintl wrapper.
1882         * lib/printf.c (printf): Don't define if a printf wrapper is already
1883         defined in intl/printf.c.
1884         Reported by Michel Boaventura <michel@michelboaventura.com>.
1885
1886 2010-03-25  Bruno Haible  <bruno@clisp.org>
1887
1888         Use ANSI C.
1889         * lib/readutmp.h (getutent): Provide ANSI C prototype.
1890
1891 2010-03-25  Bruno Haible  <bruno@clisp.org>
1892
1893         Minor formatting changes.
1894         * lib/acosl.c: Insert space before function argument list.
1895         * lib/argz.c: Likewise.
1896         * lib/asinl.c: Likewise.
1897         * lib/expl.c: Likewise.
1898         * lib/gen-uni-tables.c: Likewise.
1899         * lib/gettext.h: Likewise.
1900         * lib/glthread/lock.h: Likewise.
1901         * lib/tanl.c: Likewise.
1902         * lib/uniname/uniname.c: Likewise.
1903         * tests/test-idpriv-drop.c: Likewise.
1904         * tests/test-idpriv-droptemp.c: Likewise.
1905         * tests/test-lock.c: Likewise.
1906         * tests/test-tls.c: Likewise.
1907         * lib/argp-help.c: Insert space before function-like macro argument
1908         list.
1909         * lib/memcmp.c: Likewise.
1910         * tests/test-base64.c: Likewise.
1911         * lib/localename.c: Insert space before sizeof's argument list.
1912         * lib/safe-alloc.h: Likewise.
1913         * lib/file-set.h: Insert space before macro argument list.
1914         * tests/test-argp.c: Likewise.
1915         * lib/argp-namefrob.h: Insert space before function parameter list.
1916         * lib/getaddrinfo.c: Likewise.
1917         * lib/netdb.in.h: Likewise.
1918         * lib/parse-duration.h: Likewise.
1919         * lib/parse-duration.c: Likewise.
1920         * lib/poll.c: Likewise.
1921         * lib/select.c: Likewise.
1922         * lib/trim.h: Likewise.
1923         * tests/test-usleep.c: Likewise.
1924         * lib/ldexpl.c: Insert space before function parameter list and before
1925         function argument list.
1926         * lib/logl.c: Likewise.
1927         * lib/sqrtl.c: Likewise.
1928         * lib/trim.c: Likewise.
1929         * lib/cosl.c: Use GNU style indentation. Insert space before function
1930         argument list.
1931         * lib/sinl.c: Likewise.
1932         * lib/tsearch.c: Insert space after 'for'.
1933         Reported by Jim Meyering.
1934
1935 2010-03-23  Pádraig Brady  <P@draigBrady.com>  (tiny change)
1936
1937         * maint.mk (sc_Wundef_boolean): Check for the presence of the
1938         config header before grepping, as it's not present before
1939         autoreconf/configure are run.  Reported by Simon Josefsson.
1940
1941 2010-03-23  Bruno Haible  <bruno@clisp.org>
1942
1943         pt_chown: Make it work with automake < 1.11.
1944         * modules/pt_chown (Makefile.am): Define pkglibexecdir.
1945         Reported by Simon Josefsson.
1946
1947 2010-03-23  Bruno Haible  <bruno@clisp.org>
1948
1949         pt_chown: Don't depend on GPLed modules.
1950         * lib/pt_chown.c: Don't include idpriv.h.
1951         (main): Don't drop privileges.
1952         * modules/pt_chown (Depends-on): Remove idpriv-drop.
1953         Reported by Simon Josefsson.
1954
1955 2010-03-24  Simon Josefsson  <simon@josefsson.org>
1956
1957         * top/maint.mk (sc_texinfo_acronym): Add rule, based on
1958         suggestions from karl@freefriends.org (Karl Berry).
1959
1960 2010-03-22  Eric Blake  <eblake@redhat.com>
1961
1962         gethostname: further tweaks
1963         * lib/unistd.in.h (includes): Only worry about <winsock2.h> if we
1964         are overriding gethostname.
1965         Suggested by Bruno Haible.
1966
1967 2010-03-21  Bruno Haible  <bruno@clisp.org>
1968
1969         Fix comments.
1970         * lib/forkpty.c (rpl_forkpty): Fix comment.
1971         * lib/openpty.c (rpl_openpty): Likewise.
1972         Reported by Eric Blake.
1973
1974 2010-03-22  Eric Blake  <eblake@redhat.com>
1975
1976         gethostname: fix build on mingw
1977         * lib/unistd.in.h (includes): Work around fact that mingw
1978         <winsock2.h> re-includes <unistd.h>, by avoiding any
1979         redeclarations if we are being included by <winsock2.h>.
1980         Reported by Matthias Bolte.
1981
1982 2010-03-21  Bruno Haible  <bruno@clisp.org>
1983
1984         forkpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
1985         * lib/forkpty.c (forkpty): New replacement function, from glibc with
1986         modifications.
1987         * lib/pty.in.h (forkpty): Update declaration. Add comments.
1988         * m4/pty.m4 (gl_FORKPTY): If forkpty is not declared, arrange to
1989         provide the replacement.
1990         * modules/forkpty (Depends-on): Add openpty, login_tty.
1991         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_FORKPTY.
1992         * modules/pty (Makefile.am): Substitute HAVE_FORKPTY.
1993         * doc/glibc-functions/forkpty.texi: More supported platforms.
1994         * config/srclist.txt: Add forkpty.c (commented).
1995
1996 2010-03-21  Bruno Haible  <bruno@clisp.org>
1997
1998         * modules/forkpty-tests: Use the common TEMPLATE-TESTS.
1999         (Makefile.am): Verify that PTY_LIB is defined.
2000
2001         * modules/openpty-tests: Use the common TEMPLATE-TESTS.
2002
2003 2010-03-21  Bruno Haible  <bruno@clisp.org>
2004
2005         Tests for module 'login_tty'.
2006         * modules/login_tty-tests: New file.
2007         * tests/test-login_tty.c: New file.
2008
2009         New module 'login_tty'.
2010         * lib/login_tty.c: New file.
2011         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): New macro.
2012         * modules/login_tty: New file.
2013         * doc/glibc-functions/login_tty.texi: Mention the new module.
2014
2015 2010-03-21  Bruno Haible  <bruno@clisp.org>
2016
2017         login_tty: Documentation.
2018         * doc/glibc-functions/login_tty.texi: New file.
2019         * doc/gnulib.texi (Glibc <utmp.h>): Include it.
2020
2021 2010-03-21  Bruno Haible  <bruno@clisp.org>
2022
2023         pty: Consistent macro naming.
2024         * m4/pty_h.m4 (gl_PTY_H): Renamed from gl_PTY.
2025         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): Update.
2026         * modules/pty (configure.ac): Update.
2027
2028 2010-03-21  Bruno Haible  <bruno@clisp.org>
2029
2030         Tests for openpty: Make stricter.
2031         * tests/test-openpty.c (main): Add test of canonical processing and
2032         erase.
2033         * modules/openpty-tests (Makefile.am): Verify that PTY_LIB is defined.
2034
2035         openpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
2036         * lib/openpty.c (openpty): New replacement function.
2037         * lib/pty.in.h: Include <termios.h>.
2038         (openpty): Update declaration. Add comments.
2039         * m4/pty.m4 (gl_OPENPTY): Require AC_USE_SYSTEM_EXTENSIONS. If openpty
2040         is not declared, arrange to provide the replacement. Check for _getpty
2041         and posix_openpt.
2042         * modules/openpty (Depends-on): Add extensions, fcntl-h, ioctl.
2043         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_OPENPTY.
2044         * modules/pty (Makefile.am): Substitute HAVE_OPENPTY.
2045         * modules/pty-tests (test_pty_c___LDADD): New variable.
2046         * doc/glibc-functions/openpty.texi: More supported platforms.
2047
2048 2010-03-21  Bruno Haible  <bruno@clisp.org>
2049
2050         setenv: Tweaks.
2051         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Include necessary headers in
2052         the test program.
2053         * doc/posix-functions/setenv.texi: Update platforms list.
2054
2055 2010-03-21  Bruno Haible  <bruno@clisp.org>
2056
2057         New module 'unlockpt'.
2058         * lib/unlockpt.c: New file, from glibc with modifications.
2059         * m4/unlockpt.m4: New file.
2060         * modules/unlockpt: New file.
2061         * lib/stdlib.in.h (unlockpt): New declaration.
2062         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether unlockpt is declared.
2063         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_UNLOCKPT, HAVE_UNLOCKPT.
2064         * modules/stdlib (Makefile.am): Substitute GNULIB_UNLOCKPT,
2065         HAVE_UNLOCKPT.
2066         * doc/posix-functions/unlockpt.texi: Mention the new module.
2067         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::unlockpt.
2068         * config/srclist.txt: Add unlockpt.c (commented).
2069
2070 2010-03-21  Jim Meyering  <meyering@redhat.com>
2071
2072         maint.mk: prohibit inclusion of "intprops.h" without use
2073         * top/maint.mk (sc_prohibit_intprops_without_use): New rule.
2074
2075 2010-03-21  Bruno Haible  <bruno@clisp.org>
2076
2077         New module 'grantpt'.
2078         * lib/grantpt.c: New file, from glibc with modifications.
2079         * m4/grantpt.m4: New file.
2080         * modules/grantpt: New file.
2081         * lib/stdlib.in.h (grantpt): New declaration.
2082         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether grantpt is declared.
2083         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GRANTPT, HAVE_GRANTPT.
2084         * modules/stdlib (Makefile.am): Substitute GNULIB_GRANTPT,
2085         HAVE_GRANTPT.
2086         * doc/posix-functions/grantpt.texi: Mention the new module.
2087         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::grantpt.
2088         * config/srclist.txt: Add grantpt.c (commented).
2089
2090 2010-03-21  Bruno Haible  <bruno@clisp.org>
2091
2092         New module 'pt_chown'.
2093         * lib/pt_chown.c: New file, from glibc with modifications.
2094         * lib/pty-private.h: New file, from glibc with modifications.
2095         * modules/pt_chown: New file.
2096         * config/srclist.txt: Add pt_chown.c, pty-private.h (commented).
2097
2098 2010-03-21  Bruno Haible  <bruno@clisp.org>
2099
2100         Tests for module 'ptsname'.
2101         * modules/ptsname-tests: New file.
2102         * tests/test-ptsname.c: New file.
2103
2104         New module 'ptsname'.
2105         * lib/ptsname.c: New file, from glibc with modifications.
2106         * m4/ptsname.m4: New file.
2107         * modules/ptsname: New file.
2108         * lib/stdlib.in.h (ptsname): New declaration.
2109         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether ptsname is declared.
2110         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PTSNAME, HAVE_PTSNAME.
2111         * modules/stdlib (Makefile.am): Substitute GNULIB_PTSNAME,
2112         HAVE_PTSNAME.
2113         * doc/posix-functions/ptsname.texi: Mention the new module.
2114         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::ptsname.
2115         * config/srclist.txt: Add ptsname.c (commented).
2116
2117 2010-03-21  Bruno Haible  <bruno@clisp.org>
2118
2119         Tests for module 'ttyname_r'.
2120         * modules/ttyname_r-tests: New file.
2121         * tests/test-ttyname_r.c: New file.
2122
2123         New module 'ttyname_r'.
2124         * lib/ttyname_r.c: New file.
2125         * m4/ttyname_r.m4: New file.
2126         * modules/ttyname_r: New file.
2127         * lib/unistd.in.h (ttyname_r): New declaration.
2128         * m4/unistd_h.m4 (gl_UNISTD_H): Check whether ttyname_r is declared.
2129         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_TTYNAME_R, HAVE_TTYNAME_R.
2130         * modules/unistd (Makefile.am): Substitute GNULIB_TTYNAME_R,
2131         HAVE_TTYNAME_R.
2132         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::ttyname_r.
2133         * doc/posix-functions/ttyname_r.texi: Mention the new module.
2134
2135 2010-03-20  Bruno Haible  <bruno@clisp.org>
2136
2137         signal: Undefine macro definitions in C++ mode.
2138         * lib/signal.in.h (sigismember, sigemptyset, sigaddset, sigdelset,
2139         sigfillset): Undefine macro definitions from the system header in C++
2140         mode.
2141         Reported by John W. Eaton <jwe@gnu.org>.
2142
2143 2010-03-20  Bruno Haible  <bruno@clisp.org>
2144
2145         Ensure no #include statements inside extern "C" { ... }.
2146         * lib/obstack.h: Shrink extern "C" { ... } region so that it does not
2147         contain #include statements.
2148         * lib/time.in.h: Likewise.
2149
2150 2010-03-20  Bruno Haible  <bruno@clisp.org>
2151
2152         Make _GL_WARN_ON_USE usable in C++ and C mode in the same compilation.
2153         * build-aux/warn-on-use.h (_GL_WARN_EXTERN_C): New macro.
2154         (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Likewise.
2155         Reported by John W. Eaton <jwe@gnu.org>.
2156
2157 2010-03-20  Bruno Haible  <bruno@clisp.org>
2158
2159         * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit.
2160         Reported by Jim Meyering.
2161
2162 2010-03-20  Bruno Haible  <bruno@clisp.org>
2163
2164         pipe: Set errno upon failure.
2165         * lib/pipe.h: Specify that when -1 is returned, errno is set.
2166         * lib/pipe.c (create_pipe): Set errno when returning -1. Use the right
2167         errno value in error message.
2168
2169 2010-03-20  Bruno Haible  <bruno@clisp.org>
2170             Jim Meyering  <meyering@redhat.com>
2171
2172         lchown: Avoid "unused variable" warning.
2173         * lib/lchown.c (rpl_lchown): Move variable 'st' into #if block.
2174
2175 2010-03-20  Bruno Haible  <bruno@clisp.org>
2176
2177         Work around unlink() bug on MacOS X 10.5.6.
2178         * lib/unlink.c (rpl_unlink): If UNLINK_PARENT_BUG is defined, fail when
2179         attempting to unlink a parent directory.
2180         * m4/unlink.m4 (gl_FUNC_UNLINK): Require AC_CANONICAL_HOST. Test for
2181         MacOS X 10.5 bug. If the bug is present, define UNLINK_PARENT_BUG and
2182         activate for the replacement function.
2183         * doc/posix-functions/unlink.texi: Mention the MacOS X 10.5 bug.
2184
2185 2010-03-20  Bruno Haible  <bruno@clisp.org>
2186
2187         Fix link errors on Solaris 8.
2188         * modules/dirent-tests (test_dirent_c___LDADD): Add LIB_NANOSLEEP.
2189         * modules/wctype-tests (test_wctype_c___LDADD): Likewise.
2190
2191 2010-03-19  Jim Meyering  <meyering@redhat.com>
2192
2193         regcomp.c: make non-_LIBC implementation of build_range_exp consistent
2194         The _LIBC implementation of build_range_exp correctly honors the
2195         RE_NO_EMPTY_RANGES flag when checking for reversed range endpoints.
2196         However, the non-_LIBC implementation would ignore that syntax-bit
2197         flag and return REG_ERANGE unconditionally.
2198         This change makes it honor that flag.
2199         * lib/regcomp.c (build_range_exp) [!_LIBC]: Add a parameter: "syntax".
2200         Make two pointer parameters "const".
2201         Use "syntax" bits in order to honor RE_NO_EMPTY_RANGES.
2202         (parse_bracket_exp): Update caller.
2203
2204         regex.m4: correct the reversed range endpoint ([b-a]) test
2205         * m4/regex.m4: When requiring that [b-a] evoke failure,
2206         use RE_NO_EMPTY_RANGES.  This makes this entire configure-time
2207         test pass once again for x86-based systems.
2208
2209 2010-03-19  Bruno Haible  <bruno@clisp.org>
2210
2211         scandir: Fix link error on Solaris 8.
2212         * lib/scandir.c (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New fallback
2213         macros.
2214
2215 2010-03-19  Bruno Haible  <bruno@clisp.org>
2216
2217         getusershell: Fix documentation.
2218         * doc/glibc-functions/endusershell.texi: Refer to the getusershell
2219         module.
2220         * doc/glibc-functions/setusershell.texi: Likewise.
2221
2222         getusershell: Provide declaration, missing on Solaris 9.
2223         * lib/unistd.in.h (getusershell, setusershell, endusershell): Declare
2224         also if HAVE_GETUSERSHELL && !HAVE_DECL_GETUSERSHELL.
2225         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): When the function exists,
2226         check whether it is declared. Set HAVE_DECL_GETUSERSHELL.
2227         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
2228         HAVE_DECL_GETUSERSHELL, not HAVE_GETUSERSHELL.
2229         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETUSERSHELL, not
2230         HAVE_GETUSERSHELL.
2231         * doc/glibc-functions/getusershell.texi: Mention the Solaris problem.
2232
2233 2010-03-19  Bruno Haible  <bruno@clisp.org>
2234
2235         wctype: Provide iswblank function.
2236         * lib/wctype.in.h (iswblank): Provide a replacement also when iswcntrl
2237         exists and is fine.
2238         * m4/wctype_h.m4 (gl_WCTYPE_H): Also check whether iswcntrl exists.
2239         * modules/wctype (Makefile.am): Substitute HAVE_ISWBLANK.
2240         * tests/test-wctype.c (main): Re-enable the iswblank tests.
2241         * doc/posix-functions/iswblank.texi: Update.
2242
2243 2010-03-19  Bruno Haible  <bruno@clisp.org>
2244
2245         Tests of module 'pty' in C++ mode.
2246         * modules/pty-tests: New file.
2247         * tests/test-pty-c++.cc: New file.
2248         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
2249
2250 2010-03-19  Eric Blake  <eblake@redhat.com>
2251
2252         logb: fix documentation
2253         * doc/posix-functions/logb.texi (logb): Gnulib fixes the cygwin
2254         1.5 declaration bug.
2255
2256         forkpty, openpty: prefer glibc's const-safe prototype
2257         * lib/forkpty.c (rpl_forkpty): New file.
2258         * lib/openpty.c (rpl_openpty): Likewise.
2259         * modules/forkpty (Files): Distribute it.
2260         * modules/openpty (Files): Likewise.
2261         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.  Move decl
2262         check...
2263         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): ...here.  Request
2264         replacement for for non-const BSD signature.
2265         * modules/pty (Makefile.am): Substitute witnesses.
2266         * lib/pty.in.h (forkpty, openpty): Declare replacements.
2267         * tests/test-forkpty.c: Update signature check.
2268         * tests/test-openpty.c: Likewise.
2269         * doc/glibc-functions/forkpty.texi (forkpty): Document the fix.
2270         * doc/glibc-functions/openpty.texi (openpty): Likewise.
2271
2272         forkpty, openpty: split functions into new modules
2273         * modules/pty (Makefile.am): Substitute new witnesses.
2274         (Libraries): Move library detection...
2275         * modules/forkpty: ...into new module.
2276         * modules/openpty: Another new module.
2277         * modules/pty-tests: Rename and split...
2278         * modules/forkpty-tests: ...to this...
2279         * modules/openpty-tests: ...and this.
2280         * tests/test-pty.c: Rename and split...
2281         * tests/test-forkpty.c: ...to this...
2282         * tests/test-openpty.c: ...and this.
2283         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.
2284         (gl_PTY): Split library searching...
2285         * m4/pty.m4 (gl_PTY_LIB): ...into new file.
2286         (gl_FORKPTY, gl_OPENPTY): New macros.
2287         * lib/pty.in.h (forkpty, openpty): Honor new witnesses.
2288         * NEWS: Mention the split.
2289         * MODULES.html.sh (Misc): Document the modules.
2290         * doc/glibc-functions/forkpty.texi (forkpty): Likewise.
2291         * doc/glibc-functions/openpty.texi (openpty): Likewise.
2292
2293         pty: improve replacement header
2294         * lib/pty.in.h: New file.
2295         * modules/pty (Files): Ship it.
2296         (Makefile.am): Always build replacement.
2297         * m4/pty.m4: Rename...
2298         * m4/pty_h.m4: ...to this.
2299         (gl_PTY): Modernize setting of witness macros; update check of
2300         forkpty to take proper advantage of cache.
2301         (gl_PTY_MODULE_INDICATOR, gl_PTY_H_DEFAULTS): New macros.
2302
2303         getopt: avoid compiler warning
2304         * lib/getopt.c (attribute_hidden): Remove unused macro.
2305
2306 2010-03-18  Bruno Haible  <bruno@clisp.org>
2307
2308         Fix link errors on Solaris 8.
2309         * modules/iconv-h-tests (test_iconv_h_c___LDADD): Add LIB_NANOSLEEP.
2310         * modules/search-tests (test_search_c___LDADD): Likewise.
2311         * modules/signal-tests (test_signal_c___LDADD): Likewise.
2312         * modules/spawn-tests (test_spawn_c___LDADD): Likewise.
2313         * modules/stdio-tests (test_stdio_c___LDADD): Likewise.
2314         * modules/sys_select-tests (test_sys_select_c___LDADD): Likewise.
2315         * modules/sys_socket-tests (test_sys_socket_c___LDADD): Likewise.
2316         * modules/sys_time-tests (test_sys_time_c___LDADD): Likewise.
2317         * modules/wchar-tests (test_wchar_c___LDADD): Likewise.
2318
2319 2010-03-18  Bruno Haible  <bruno@clisp.org>
2320
2321         Fix bug introduced on 2010-03-14.
2322         * m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): New macro.
2323         (gl_SPAWN_H): Require it.
2324         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Likewise.
2325         Reported by Simon Josefsson.
2326
2327 2010-03-18  Bruno Haible  <bruno@clisp.org>
2328
2329         Fix typo introduced on 2009-12-31.
2330         * m4/spawn_h.m4 (gl_SPAWN_H): Check for the declaration of
2331         posix_spawn_file_actions_adddup2.
2332
2333 2010-03-17  Bert Wesarg  <bert.wesarg@googlemail.com>  (tiny change)
2334         and Eric Blake  <eblake@redhat.com>
2335
2336         test-vc-list-files-git: make more robust
2337         * tests/test-vc-list-files-git.sh: Unset problematic environment
2338         variables.  Chain commands together.
2339
2340 2010-03-17  Ludovic Courtès <ludo@gnu.org>  (tiny change)
2341
2342         * m4/pty.m4: Unset $ac_cv_have_decl_forkpty before the second
2343         `AC_CHECK_DECL' invocation.
2344
2345 2010-03-15  Sergey Poznyakoff  <gray@gnu.org.ua>
2346
2347         * lib/inttostr.c (inttostr): Make sure the invocation of verify
2348         appears before executable statements. Suggested by Petr Sumbera
2349         <Petr.Sumbera@Sun.COM>.
2350
2351 2010-03-14  Bruno Haible  <bruno@clisp.org>
2352
2353         * tests/test-flock.c (test_exclusive): Comment out a test that causes
2354         portability problems. Instead use a simpler test.
2355         (main): Check that invalid arguments are rejected only on Linux.
2356
2357 2010-03-14  Bruno Haible  <bruno@clisp.org>
2358
2359         Fix bug introduced on 2009-12-31.
2360         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
2361         gl_PREREQ_SYS_H_WINSOCK2 always.
2362         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise. Remove
2363         SYS_SOCKET_H variable.
2364         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Remove test for flock.
2365         Update comments.
2366         * m4/ctype.m4 (gl_CTYPE_H): Update comments.
2367         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
2368         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
2369         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
2370         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Likewise.
2371
2372 2010-03-14  Bruno Haible  <bruno@clisp.org>
2373
2374         Fix values returned by sinl, cosl.
2375         * lib/trigl.h: Add specification comments.
2376         * lib/sincosl.c (kernel_sinl, kernel_cosl): Fix comments and formula
2377         that combines the values from the precomputed table with the values of
2378         the Chebyshev polynomials.
2379
2380 2010-03-14  Bruno Haible  <bruno@clisp.org>
2381
2382         Fix compilation error when modules 'posix_spawn[p]' are not used.
2383         * m4/spawn_h.m4 (gl_SPAWN_H): Set HAVE_POSIX_SPAWN here.
2384         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): ... not here.
2385
2386 2010-03-14  Bruno Haible  <bruno@clisp.org>
2387
2388         Fix compilation error on mingw when module 'time_r' is not used.
2389         * lib/time.in.h (localtime_r, gmtime_r): Declare only if GNULIB_TIME_R
2390         is 1.
2391         * tests/test-time-c++.cc (localtime_r, gmtime_r): Likewise.
2392         * modules/time_r (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
2393         * modules/time (Makefile.am): Substitute GNULIB_TIME_R.
2394         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_TIME_R.
2395
2396 2010-03-14  Bruno Haible  <bruno@clisp.org>
2397
2398         Fix compilation error with Sun C.
2399         * lib/strtol.c: Use LLONG_MIN instead of GCC specific LONG_LONG_MIN.
2400         Use LLONG_MAX instead of GCC specific LONG_LONG_MAX. Use ULLONG_MAX
2401         instead of GCC specific ULONG_LONG_MAX.
2402         * lib/xstrtoll.c: Likewise.
2403         * lib/xstrtoull.c: Likewise.
2404
2405 2010-03-13  Bruno Haible  <bruno@clisp.org>
2406
2407         Allow the user to disable C++ code and tests.
2408         * m4/ansi-c++.m4 (gl_CXX_CHOICE): New macro.
2409         (gl_PROG_ANSI_CXX): Require it.
2410
2411 2010-03-13  Bruno Haible  <bruno@clisp.org>
2412
2413         * DEPENDENCIES (libtool): Mention libtool 2.2.x requirement in special
2414         cases.
2415
2416 2010-03-13  Bruno Haible  <bruno@clisp.org>
2417
2418         Test that gnulib does not break the standard C++ headers.
2419         * tests/test-locale-c++2.cc: New file.
2420         * modules/locale-tests (Files): Add it.
2421         (Makefile.am): Compile it for test-locale-c++.
2422         * tests/test-math-c++2.cc: New file.
2423         * modules/math-tests (Files): Add it.
2424         (Makefile.am): Compile it for test-math-c++.
2425         * tests/test-signal-c++2.cc: New file.
2426         * modules/signal-tests (Files): Add it.
2427         (Makefile.am): Compile it for test-signal-c++.
2428         * tests/test-stdio-c++2.cc: New file.
2429         * modules/stdio-tests (Files): Add it.
2430         (Makefile.am): Compile it for test-stdio-c++.
2431         * tests/test-stdlib-c++2.cc: New file.
2432         * modules/stdlib-tests (Files): Add it.
2433         (Makefile.am): Compile it for test-stdlib-c++.
2434         * tests/test-string-c++2.cc: New file.
2435         * modules/string-tests (Files): Add it.
2436         (Makefile.am): Compile it for test-string-c++.
2437         * tests/test-time-c++2.cc: New file.
2438         * modules/time-tests (Files): Add it.
2439         (Makefile.am): Compile it for test-time-c++.
2440         Reported by John W. Eaton <jwe@gnu.org>.
2441
2442 2010-03-13  Bruno Haible  <bruno@clisp.org>
2443
2444         * gnulib-tool (func_usage): Clarify which options are available for
2445         --create-testdir and --create-megatestdir.
2446
2447 2010-03-13  Bruno Haible  <bruno@clisp.org>
2448
2449         Fix compilation error with glibc >= 2.10 and g++ >= 4.4.
2450         * build-aux/warn-on-use.h (_GL_WARN_ON_USE_CXX): New macro.
2451         * build-aux/c++defs.h (_GL_CXXALIASWARN1): New macro.
2452         * lib/string.in.h (memchr, memrchr, rawmemchr, strchrnul, strpbrk,
2453         strstr, strcasestr): Use _GL_CXXALIASWARN1 instead of _GL_CXXALIASWARN
2454         when appropriate.
2455         Reported by Jim Meyering.
2456
2457 2010-03-12  Simon Josefsson  <simon@josefsson.org>
2458
2459         * gnulib-tool (func_import): Explain origin of code.
2460
2461 2010-03-12  Bruno Haible  <bruno@clisp.org>
2462
2463         Fix problem with automake's definition of CXXLINK.
2464         * gnulib-tool (func_create_testdir): After LT_INIT, also use LT_LANG.
2465         Reported by Simon Josefsson and Ludovic Courtès.
2466
2467 2010-03-12  Bruno Haible  <bruno@clisp.org>
2468
2469         * doc/gnulib-intro.texi (Steady Development): Mention Ian Beckwith's
2470         stable releases.
2471
2472 2010-03-11  Bruno Haible  <bruno@clisp.org>
2473
2474         Fix problems with overloaded C++ definitions of memchr, strpbrk, etc.
2475         * build-aux/c++defs.h (_GL_CXXALIAS_SYS_CAST2): Make it work regardless
2476         whether the system provides one variant or multiple variants of the
2477         function.
2478         * lib/string.in.h (memchr, strpbrk): Use _GL_CXXALIAS_SYS_CAST2 for all
2479         C++ compilers.
2480         (memrchr, rawmemchr, strchrnul, strstr, strcasestr): Use
2481         _GL_CXXALIAS_SYS_CAST2 instead of _GL_CXXALIAS_SYS.
2482         Reported by Jim Meyering.
2483
2484 2010-03-09  Simon Josefsson  <simon@josefsson.org>
2485
2486         * gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
2487
2488 2010-03-08  Bruno Haible  <bruno@clisp.org>
2489
2490         gnulib-tool: Add support for --libtool in --create-testdir.
2491         * gnulib-tool (LIBTOOLPATH, LIBTOOLIZE): New variables.
2492         (func_create_testdir): Emit LT_INIT invocations. Invoke LIBTOOLIZE.
2493
2494 2010-03-08  Eric Blake  <eblake@redhat.com>
2495
2496         gnulib-tool.texi: mention possibility of git submodule
2497         * doc/gnulib-tool.texi (VCS Issues): Add details about using git
2498         submodules.
2499         * doc/.gitignore: Ignore another generated file.
2500
2501 2010-03-08  Karl Berry  <karl@gnu.org>
2502
2503         * doc/gnulib-tool.texi (VCS Issues): Mention third option
2504         of committing gnulib files while skipping others.
2505
2506 2010-03-07  Bruno Haible  <bruno@clisp.org>
2507
2508         Tests of module 'wctype' in C++ mode.
2509         * tests/test-wctype-c++.cc: New file.
2510         * modules/wctype-tests (Files): Add it and tests/signature.h.
2511         (Depends-on): Add ansi-c++-opt.
2512         (Makefile.am): Arrange to compile and run test-wctype-c++.
2513
2514         Tests of module 'wchar' in C++ mode.
2515         * tests/test-wchar-c++.cc: New file.
2516         * modules/wchar-tests (Files): Add it and tests/signature.h.
2517         (Depends-on): Add ansi-c++-opt.
2518         (Makefile.am): Arrange to compile and run test-wchar-c++.
2519         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Invoke
2520         gl_MODULE_INDICATOR.
2521
2522         Tests of module 'unistd' in C++ mode.
2523         * tests/test-unistd-c++.cc: New file.
2524         * modules/unistd-tests (Files): Add it and tests/signature.h.
2525         (Depends-on): Add ansi-c++-opt.
2526         (Makefile.am): Arrange to compile and run test-unistd-c++.
2527         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Invoke
2528         gl_MODULE_INDICATOR.
2529
2530         Tests of module 'time' in C++ mode.
2531         * tests/test-time-c++.cc: New file.
2532         * modules/time-tests (Files): Add it and tests/signature.h.
2533         (Depends-on): Add ansi-c++-opt.
2534         (Makefile.am): Arrange to compile and run test-time-c++.
2535         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
2536
2537         Tests of module 'sys_time' in C++ mode.
2538         * tests/test-sys_time-c++.cc: New file.
2539         * modules/sys_time-tests (Files): Add it and tests/signature.h.
2540         (Depends-on): Add ansi-c++-opt.
2541         (Makefile.am): Arrange to compile and run test-sys_time-c++.
2542         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Invoke
2543         gl_MODULE_INDICATOR.
2544
2545         Tests of module 'sys_stat' in C++ mode.
2546         * tests/test-sys_stat-c++.cc: New file.
2547         * modules/sys_stat-tests (Files): Add it and tests/signature.h.
2548         (Depends-on): Add ansi-c++-opt.
2549         (Makefile.am): Arrange to compile and run test-sys_stat-c++.
2550         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Invoke
2551         gl_MODULE_INDICATOR.
2552
2553         Tests of module 'sys_socket' in C++ mode.
2554         * tests/test-sys_socket-c++.cc: New file.
2555         * modules/sys_socket-tests (Files): Add it and tests/signature.h.
2556         (Depends-on): Add ansi-c++-opt.
2557         (Makefile.am): Arrange to compile and run test-sys_socket-c++.
2558         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Invoke
2559         gl_MODULE_INDICATOR.
2560
2561         Tests of module 'sys_select' in C++ mode.
2562         * tests/test-sys_select-c++.cc: New file.
2563         * modules/sys_select-tests (Files): Add it and tests/signature.h.
2564         (Depends-on): Add ansi-c++-opt.
2565         (Makefile.am): Arrange to compile and run test-sys_select-c++.
2566         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Invoke
2567         gl_MODULE_INDICATOR.
2568
2569         Tests of module 'sys_ioctl' in C++ mode.
2570         * tests/test-sys_ioctl-c++.cc: New file.
2571         * modules/sys_ioctl-tests (Files): Add it and tests/signature.h.
2572         (Depends-on): Add ansi-c++-opt.
2573         (Makefile.am): Arrange to compile and run test-sys_ioctl-c++.
2574         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Invoke
2575         gl_MODULE_INDICATOR.
2576
2577         Tests of module 'string' in C++ mode.
2578         * tests/test-string-c++.cc: New file.
2579         * modules/string-tests (Files): Add it and tests/signature.h.
2580         (Depends-on): Add ansi-c++-opt.
2581         (Makefile.am): Arrange to compile and run test-string-c++.
2582         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Invoke
2583         gl_MODULE_INDICATOR.
2584
2585         Tests of module 'stdlib' in C++ mode.
2586         * tests/test-stdlib-c++.cc: New file.
2587         * modules/stdlib-tests (Files): Add it and tests/signature.h.
2588         (Depends-on): Add ansi-c++-opt.
2589         (Makefile.am): Arrange to compile and run test-stdlib-c++.
2590         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Invoke
2591         gl_MODULE_INDICATOR.
2592
2593         Tests of module 'stdio' in C++ mode.
2594         * tests/test-stdio-c++.cc: New file.
2595         * modules/stdio-tests (Files): Add it and tests/signature.h.
2596         (Depends-on): Add ansi-c++-opt.
2597         (Makefile.am): Arrange to compile and run test-stdio-c++.
2598         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Invoke
2599         gl_MODULE_INDICATOR.
2600
2601         Tests of module 'spawn' in C++ mode.
2602         * tests/test-spawn-c++.cc: New file.
2603         * modules/spawn-tests (Files): Add it and tests/signature.h.
2604         (Depends-on): Add ansi-c++-opt.
2605         (Makefile.am): Arrange to compile and run test-spawn-c++.
2606         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Invoke
2607         gl_MODULE_INDICATOR.
2608
2609         Tests of module 'signal' in C++ mode.
2610         * tests/test-signal-c++.cc: New file.
2611         * modules/signal-tests (Files): Add it and tests/signature.h.
2612         (Depends-on): Add ansi-c++-opt.
2613         (Makefile.am): Arrange to compile and run test-signal-c++.
2614         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Invoke
2615         gl_MODULE_INDICATOR.
2616
2617         Tests of module 'search' in C++ mode.
2618         * tests/test-search-c++.cc: New file.
2619         * modules/search-tests (Files): Add it and tests/signature.h.
2620         (Depends-on): Add ansi-c++-opt.
2621         (Makefile.am): Arrange to compile and run test-search-c++.
2622         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Invoke
2623         gl_MODULE_INDICATOR.
2624
2625         Tests of module 'math' in C++ mode.
2626         * tests/test-math-c++.cc: New file.
2627         * modules/math-tests (Files): Add it and tests/signature.h.
2628         (Depends-on): Add ansi-c++-opt.
2629         (Makefile.am): Arrange to compile and run test-math-c++.
2630         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
2631
2632         Tests of module 'locale' in C++ mode.
2633         * tests/test-locale-c++.cc: New file.
2634         * modules/locale-tests (Files): Add it and tests/signature.h.
2635         (Depends-on): Add ansi-c++-opt.
2636         (Makefile.am): Arrange to compile and run test-locale-c++.
2637         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Invoke
2638         gl_MODULE_INDICATOR.
2639
2640         Tests of module 'langinfo' in C++ mode.
2641         * tests/test-langinfo-c++.cc: New file.
2642         * modules/langinfo-tests (Files): Add it and tests/signature.h.
2643         (Depends-on): Add ansi-c++-opt.
2644         (Makefile.am): Arrange to compile and run test-langinfo-c++.
2645         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Invoke
2646         gl_MODULE_INDICATOR.
2647
2648         Tests of module 'iconv-h' in C++ mode.
2649         * tests/test-iconv-h-c++.cc: New file.
2650         * modules/iconv-h-tests (Files): Add it and tests/signature.h.
2651         (Depends-on): Add ansi-c++-opt.
2652         (Makefile.am): Arrange to compile and run test-iconv-h-c++.
2653
2654         Tests of module 'glob' in C++ mode.
2655         * tests/test-glob-c++.cc: New file.
2656         * modules/glob-tests (Files): Add it.
2657         (Depends-on): Add ansi-c++-opt.
2658         (Makefile.am): Arrange to compile and run test-glob-c++.
2659
2660         Tests of module 'fcntl-h' in C++ mode.
2661         * tests/test-fcntl-h-c++.cc: New file.
2662         * modules/fcntl-h-tests (Files): Add it and tests/signature.h.
2663         (Depends-on): Add ansi-c++-opt.
2664         (Makefile.am): Arrange to compile and run test-fcntl-h-c++.
2665         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Invoke
2666         gl_MODULE_INDICATOR.
2667
2668         Tests of module 'dirent' in C++ mode.
2669         * tests/test-dirent-c++.cc: New file.
2670         * modules/dirent-tests (Files): Add it and tests/signature.h.
2671         (Depends-on): Add ansi-c++-opt.
2672         (Makefile.am): Arrange to compile and run test-dirent-c++.
2673         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
2674         gl_MODULE_INDICATOR.
2675
2676         New module 'ansi-c++-opt'.
2677         * modules/ansi-c++-opt: New file.
2678         * m4/ansi-c++.m4: New file, from GNU gettext with modifications.
2679
2680         Document C++ namespace mode.
2681         * doc/gnulib.texi (A C++ namespace for gnulib): New section.
2682
2683         wctype: Avoid #define replacements in C++ mode.
2684         * lib/wctype.in.h: Include c++defs.h, warn-on-use.h.
2685         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
2686         iswprint, iswpunct, iswspace, iswupper, iswxdigit, towlower, towupper):
2687         In C++, define a namespaced alias symbol.
2688         * m4/wctype_h.m4 (gl_WCTYPE_H): Don't set WCTYPE_H.
2689         * modules/wctype (Depends-on): Add c++defs, warn-on-use.
2690         (Makefile.am): Provide a wctype.h replacement always. Update wctype.h
2691         rule.
2692
2693         wchar: Avoid #define replacements in C++ mode.
2694         * lib/wchar.in.h: Include c++defs.h.
2695         (btowc, wctob, mbsinit, mbrtowc, mbrlen, mbsrtowcs, mbsnrtowcs,
2696         wcrtomb, wcsrtombs, wcsnrtombs): In C++, define a namespaced alias
2697         symbol.
2698         (wcwidth): Likewise. Fix prototype to be POSIX compliant.
2699         * modules/wchar (Depends-on): Add c++defs.
2700         (Makefile.am): Update wchar.h rule.
2701
2702         unistd: Avoid #define replacements in C++ mode.
2703         * lib/unistd.in.h: Include c++defs.h.
2704         (chown, close, dup, dup2, dup3, euidaccess, faccessat, fchdir,
2705         fchownat, fsync, ftruncate, getcwd, getdomainname, getdtablesize,
2706         getgroups, gethostname, getlogin, getlogin_r, getpagesize,
2707         getusershell, setusershell, endusershell, lchown, link, linkat, lseek,
2708         pipe2, pread, readlink, readlinkat, rmdir, sleep, symlink, symlinkat,
2709         unlink, unlinkat, usleep, write): In C++, define a namespaced alias
2710         symbol.
2711         (environ): Update.
2712         * modules/unistd (Depends-on): Add c++defs.
2713         (Makefile.am): Update unistd.h rule.
2714
2715         time: Avoid #define replacements in C++ mode.
2716         * lib/time.in.h: Include c++defs.h, warn-on-use.h.
2717         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): In C++,
2718         define a namespaced alias symbol.
2719         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): New macro.
2720         (gl_HEADER_TIME_H_DEFAULTS): Initialize also GNULIB_MKTIME,
2721         GNULIB_NANOSLEEP, GNULIB_STRPTIME, GNULIB_TIMEGM.
2722         * modules/time (Depends-on): Add c++defs, warn-on-use.
2723         (Makefile.am): Update time.h rule.
2724         * modules/mktime (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
2725         * modules/nanosleep (configure.ac): Likewise.
2726         * modules/strptime (configure.ac): Likewise.
2727         * modules/timegm (configure.ac): Likewise.
2728
2729         sys_time: Avoid #define replacements in C++ mode.
2730         * lib/sys_time.in.h: Include c++defs.h.
2731         (gettimeofday): In C++, define a namespaced alias symbol.
2732         * modules/sys_time (Depends-on): Add c++defs.
2733         (Makefile.am): Update sys/time.h rule.
2734
2735         sys_stat: Avoid #define replacements in C++ mode.
2736         * lib/sys_stat.in.h: Include c++defs.h.
2737         (fchmodat, fstat, fstatat, futimens, lchmod, lstat, mkdir, mkdirat,
2738         mkfifo, mkfifoat, mknod, mknodat, utimensat): In C++, define a
2739         namespaced alias symbol.
2740         In C++, define a namespaced alias symbol.
2741         * modules/sys_stat (Depends-on): Add c++defs.
2742         (Makefile.am): Update sys/stat.h rule.
2743
2744         sys_socket: Avoid #define replacements in C++ mode.
2745         * lib/sys_socket.in.h: Handle the case of recursive include on Cygwin.
2746         Include c++defs.h. Include warn-on-use.h earlier. Enable the function
2747         definitions also when the system has a <sys/socket.h>.
2748         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
2749         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, accept4):
2750         In C++, define a namespaced alias symbol.
2751         * modules/sys_socket (Depends-on): Add c++defs.
2752         (Makefile.am): Update sys/socket.h rule.
2753
2754         sys_select: Avoid #define replacements in C++ mode.
2755         * lib/sys_select.in.h: Include c++defs.h. Enable the function
2756         definitions also when the system has a <sys/select.h>.
2757         (select): In C++, define a namespaced alias symbol.
2758         * modules/sys_select (Depends-on): Add c++defs.
2759         (Makefile.am): Update sys/select.h rule.
2760
2761         sys_ioctl: Avoid #define replacements in C++ mode.
2762         * lib/sys_ioctl.in.h: Include c++defs.h.
2763         (ioctl): In C++, define a namespaced alias symbol.
2764         * modules/sys_ioctl (Depends-on): Add c++defs.
2765         (Makefile.am): Update sys/ioctl.h rule.
2766
2767         string: Avoid #define replacements in C++ mode.
2768         * lib/string.in.h: Include c++defs.h.
2769         (stpncpy): Define to rpl_stpncpy, not gnu_stpncpy.
2770         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
2771         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
2772         strcasestr, strtok_r, mbslen, mbschr, mbsrchr, mbspbrk, strerror,
2773         strsignal, strverscmp): In C++, define a namespaced alias symbol.
2774         * modules/string (Depends-on): Add c++defs.
2775         (Makefile.am): Update string.h rule.
2776
2777         stdlib: Avoid #define replacements in C++ mode.
2778         * lib/stdlib.in.h: Include c++defs.h.
2779         (atoll, calloc, canonicalize_file_name, getloadavg, getsubopt, malloc,
2780         mkdtemp, mkostemp, mkostemps, mkstemp, mkstemps, putenv, random_r,
2781         srandom_r, initstate_r, setstate_r, realloc, realpath, rpmatch, setenv,
2782         strtod, strtoll, strtoull, unsetenv): In C++, define a namespaced alias
2783         symbol.
2784         * modules/stdlib (Depends-on): Add c++defs.
2785         (Makefile.am): Update stdlib.h rule.
2786
2787         stdio: Avoid #define replacements in C++ mode.
2788         * lib/stdio.in.h: Include c++defs.h.
2789         (dprintf, fclose, fflush, fopen, fprintf, fpurge, fputc, fputs,
2790         freopen, fseek, fseeko, ftell, ftello, fwrite, getdelim, getline,
2791         obstack_printf, obstack_vprintf, perror, popen, printf, fputc, putchar,
2792         puts, remove, rename, renameat, snprintf, sprintf, asprintf, vasprintf,
2793         vdprintf, vfprintf, vprintf, vsnprintf, vsprintf): In C++, define a
2794         namespaced alias symbol.
2795         * modules/stdio (Depends-on): Add c++defs.
2796         (Makefile.am): Update stdio.h rule.
2797
2798         spawn: Avoid #define replacements in C++ mode.
2799         * lib/spawn.in.h: Include c++defs.h.
2800         (posix_spawn, posix_spawnp, posix_spawnattr_init,
2801         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
2802         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
2803         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
2804         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
2805         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
2806         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
2807         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
2808         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
2809         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
2810         In C++, define a namespaced alias symbol.
2811         * modules/spawn (Depends-on): Add c++defs.
2812         (Makefile.am): Update spawn.h rule.
2813
2814         signal: Avoid #define replacements in C++ mode.
2815         * lib/signal.in.h: Include c++defs.h.
2816         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
2817         sigpending, sigprocmask, signal, raise, sigaction): In C++, define a
2818         namespaced alias symbol.
2819         * modules/signal (Depends-on): Add c++defs.
2820         (Makefile.am): Update signal.h rule.
2821
2822         search: Avoid #define replacements in C++ mode.
2823         * lib/search.in.h: Include c++defs.h.
2824         (_gl_search_compar_fn, _gl_search_action_fn): New types.
2825         (tsearch, tfind, tdelete, twalk): In C++, define a namespaced alias
2826         symbol.
2827         * modules/search (Depends-on): Add c++defs.
2828         (Makefile.am): Update search.h rule.
2829
2830         math: Avoid #define replacements in C++ mode.
2831         * lib/math.in.h: Include c++defs.h.
2832         (frexp, acosl, asinl, atanl, ceilf, ceill, cosl, expl, floorf, floorl,
2833         frexpl, ldexpl, logl, roundf, round, roundl, sinl, sqrtl, tanl, truncf,
2834         trunc, truncl): In C++, define a namespaced alias symbol.
2835         * modules/math (Depends-on): Add c++defs.
2836         (Makefile.am): Update math.h rule.
2837
2838         locale: Avoid #define replacements in C++ mode.
2839         * lib/locale.in.h: Include c++defs.h.
2840         (duplocale): In C++, define a namespaced alias symbol.
2841         * m4/locale_h.m4 (gl_LOCALE_H_DEFAULTS): Initialize HAVE_DUPLOCALE.
2842         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Set HAVE_DUPLOCALE.
2843         * modules/locale (Depends-on): Add c++defs.
2844         (Makefile.am): Update locale.h rule. Substitute HAVE_DUPLOCALE.
2845
2846         langinfo: Avoid #define replacements in C++ mode.
2847         * lib/langinfo.in.h: Include c++defs.h.
2848         (nl_langinfo): In C++, define a namespaced alias symbol.
2849         * modules/langinfo (Depends-on): Add c++defs.
2850         (Makefile.am): Update langinfo.h rule.
2851
2852         iconv-h: Avoid #define replacements in C++ mode.
2853         * lib/iconv.in.h: Include c++defs.h, warn-on-use.h.
2854         (iconv_open, iconv, iconv_close): In C++, define a namespaced alias
2855         symbol.
2856         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
2857         whenever iconv is present.
2858         * modules/iconv-h (Depends-on): Add c++defs, warn-on-use.
2859         (Makefile.am): Update iconv.h rule.
2860
2861         glob: Avoid #define replacements in C++ mode.
2862         * lib/glob.in.h: Include c++defs.h, warn-on-use.h.
2863         (_gl_glob_errfunc_fn): New type.
2864         (glob, globfree, glob_pattern_p): In C++, define a namespaced alias
2865         symbol.
2866         * modules/glob (Depends-on): Add c++defs, warn-on-use.
2867         (Makefile.am): Update glob.h rule.
2868
2869         fcntl-h: Avoid #define replacements in C++ mode.
2870         * lib/fcntl.in.h: Include c++defs.h.
2871         (fcntl, open, openat): In C++, define a namespaced alias symbol.
2872         * modules/fcntl-h (Depends-on): Add c++defs.
2873         (Makefile.am): Update fcntl.h rule.
2874
2875         dirent: Avoid #define replacements in C++ mode.
2876         * lib/dirent.in.h: Include c++defs.h.
2877         (closedir, fdopendir, opendir, scandir, alphasort): In C++, define a
2878         namespaced alias symbol.
2879         (dirfd): Update declaration.
2880         * modules/dirent (Depends-on): Add c++defs.
2881         (Makefile.am): Update dirent.h rule.
2882
2883         ctype: Make it usable in C++ code.
2884         * lib/ctype.in.h: Include c++defs.h.
2885         (isblank): Declare as extern "C".
2886         * modules/ctype (Depends-on): Add c++defs.
2887         (Makefile.am): Update ctype.h rule.
2888
2889         New module 'c++defs'.
2890         * modules/c++defs: New file.
2891         * build-aux/c++defs.h: New file.
2892         Reported by John W. Eaton <jwe@gnu.org>.
2893
2894 2010-03-07  Bruno Haible  <bruno@clisp.org>
2895
2896         logb: Provide missing declaration for Cygwin.
2897         * lib/math.in.h (logb): New declaration.
2898         * m4/logb.m4: New file.
2899         * modules/logb (Files): Add m4/logb.m4.
2900         (Depends-on): Add math.
2901         (configure.ac): Invoke gl_FUNC_LOGB, gl_MATH_MODULE_INDICATOR.
2902         * m4/math_h.m4 (gl_MATH_H): Check also for logb declaration.
2903         (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOGB, HAVE_DECL_LOGB.
2904         * modules/math (Makefile.am): Substitute GNULIB_LOGB, HAVE_DECL_LOGB.
2905         * doc/posix-functions/logb.texi: Mention the Cygwin bug.
2906
2907 2010-03-07  Bruno Haible  <bruno@clisp.org>
2908
2909         Fix test-cond link error.
2910         * tests/test-cond.c: Include <stdio.h>.
2911
2912 2010-03-07  Bruno Haible  <bruno@clisp.org>
2913
2914         Fix test-dirent-safer link error.
2915         * modules/dirent-safer-tests (Makefile.am): Define
2916         test_dirent_safer_LDADD.
2917
2918 2010-03-07  Bruno Haible  <bruno@clisp.org>
2919
2920         * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
2921         among default module list.
2922
2923 2010-03-07  Bruno Haible  <bruno@clisp.org>
2924
2925         Fix link error on platforms with GNU libiconv.
2926         * modules/unistr/u8-strcoll-tests (Makefile): Define
2927         test_u8_strcoll_LDADD.
2928         * modules/unistr/u16-strcoll-tests (Makefile): Define
2929         test_u16_strcoll_LDADD.
2930         * modules/unistr/u32-strcoll-tests (Makefile): Define
2931         test_u32_strcoll_LDADD.
2932
2933 2010-03-07  Bruno Haible  <bruno@clisp.org>
2934
2935         Use POSIX declarations for socket functions.
2936         * lib/sys_socket.in.h (rpl_connect, rpl_accept, rpl_bind,
2937         rpl_getpeername, rpl_getsockname, rpl_recv, rpl_send, rpl_recvfrom,
2938         rpl_sendto): Change declaration to match POSIX.
2939         * lib/connect.c (rpl_connect): Likewise.
2940         * lib/accept.c (rpl_accept): Likewise.
2941         * lib/bind.c (rpl_bind): Likewise.
2942         * lib/getpeername.c (rpl_getpeername): Likewise.
2943         * lib/getsockname.c (rpl_getsockname): Likewise.
2944         * lib/recv.c (rpl_recv): Likewise.
2945         * lib/send.c (rpl_send): Likewise.
2946         * lib/recvfrom.c (rpl_recvfrom): Likewise.
2947         * lib/sendto.c (rpl_sendto): Likewise.
2948
2949 2010-03-06  Bruno Haible  <bruno@clisp.org>
2950
2951         Clarify access, euidaccess, faccessat.
2952         * doc/posix-functions/faccessat.texi: Mention security problem under
2953         "Other problems", not "Portability problems".
2954         * doc/posix-functions/access.texi: Likewise. Mention a related security
2955         problem.
2956         * doc/glibc-functions/euidaccess.texi: Mention security problems.
2957         * lib/euidaccess.c: Add comments about platforms.
2958         * lib/unistd.in.h (access, euidaccess): Add warnings.
2959
2960 2010-03-07  Bruno Haible  <bruno@clisp.org>
2961
2962         Ensure posix_spawnattr_{get,set}sched{policy,param} are defined.
2963         * lib/spawn.in.h (POSIX_SPAWN_SETSCHEDPARAM): Define fallback.
2964         (POSIX_SPAWN_SETSCHEDULER): Likewise.
2965         (POSIX_SPAWN_USEVFORK): Define in a way that works when
2966         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
2967         (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy): Also
2968         declare when POSIX_SPAWN_SETSCHEDULER is zero.
2969         (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam): Also
2970         declare when POSIX_SPAWN_SETSCHEDPARAM is zero.
2971         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Test whether
2972         POSIX_SPAWN_SETSCHEDULER or POSIX_SPAWN_SETSCHEDPARAM are zero.
2973         * modules/posix_spawnattr_getschedparam (configure.ac): Enable the
2974         replacement also when POSIX_SPAWN_SETSCHEDPARAM is zero.
2975         * modules/posix_spawnattr_setschedparam (configure.ac): Likewise.
2976         * modules/posix_spawnattr_getschedpolicy (configure.ac): Enable the
2977         replacement also when POSIX_SPAWN_SETSCHEDULER is zero.
2978         * modules/posix_spawnattr_setschedpolicy (configure.ac): Likewise.
2979         * lib/spawnattr_getschedparam.c (posix_spawnattr_getschedparam): Do
2980         nothing if POSIX_SPAWN_SETSCHEDPARAM is zero.
2981         * lib/spawnattr_setschedparam.c (posix_spawnattr_setschedparam):
2982         Likewise.
2983         * lib/spawnattr_getschedpolicy.c (posix_spawnattr_getschedpolicy): Do
2984         nothing if POSIX_SPAWN_SETSCHEDULER is zero.
2985         * lib/spawnattr_setschedpolicy.c (posix_spawnattr_setschedpolicy):
2986         Likewise.
2987         * tests/test-spawn.c (main): Make it work when
2988         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
2989
2990 2010-03-07  Bruno Haible  <bruno@clisp.org>
2991
2992         Fix incorrect Makefile.am generation in German locale.
2993         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
2994         Execute sed command with character range in C locale.
2995
2996 2010-03-06  Bruno Haible  <bruno@clisp.org>
2997
2998         Tests for module 'iconv-h'.
2999         * modules/iconv-h-tests: New file.
3000         * tests/test-iconv-h.c: New file.
3001
3002         New module 'iconv-h'.
3003         * modules/iconv-h: New file.
3004         * modules/iconv_open (Files): Remove lib/iconv.in.h, m4/iconv_h.m4.
3005         (Depends-on): Add iconv-h. Remove include_next, arg-nonnull.
3006         (configure.ac): Remove gl_ICONV_H.
3007         (Makefile.am): Remove rule for iconv.h.
3008
3009 2010-03-06  Bruno Haible  <bruno@clisp.org>
3010
3011         More consistent naming of *.m4 files.
3012         * m4/wctype_h.m4: Renamed from m4/wctype.m4.
3013         * modules/wctype (Files): Update.
3014
3015         More consistent naming of *.m4 files.
3016         * m4/wchar_h.m4: Renamed from m4/wchar.m4.
3017         * modules/wchar (Files): Update.
3018
3019 2010-03-06  Jim Meyering  <meyering@redhat.com>
3020
3021         euidaccess: relax license to LGPLv2+
3022         * modules/euidaccess (License): Relax to LGPLv2+.
3023
3024 2010-03-06  Bruno Haible  <bruno@clisp.org>
3025
3026         Prefer lib_SOURCES over unconditional AC_LIBOBJ.
3027         * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation.
3028         (Makefile.am): Augment lib_SOURCES instead.
3029
3030 2010-03-04  Jim Meyering  <meyering@redhat.com>
3031
3032         utime: remove obsolete module
3033         This module, like autoconf's AC_FUNC_UTIME_NULL macro, has been
3034         unnecessary for years, and has been marked as obsolete for 10 months.
3035         * modules/utime: Remove file.
3036         * lib/utime.c: Remove file.
3037         * m4/utime.m4: Remove file.
3038         * m4/utimes-null.m4: Remove file.
3039         * doc/posix-functions/utime.texi (utime): Remove reference to
3040         the module.  Move the sole "fixed by gnulib" item into the
3041         "problems not fixed by Gnulib" list.
3042         * MODULES.html.sh (func_all_modules): Remove reference to "utime".
3043
3044 2010-03-05  Simon Josefsson  <simon@josefsson.org>
3045
3046         * modules/exit (License): Relax license to LGPLv2+.
3047         (Status): Mark as obsolete.
3048         * NEWS: Mention deprecated 'exit' module.
3049         * doc/posix-functions/exit.texi: Recommend 'stdlib' module instead
3050         of now obsolete 'exit'.
3051
3052 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3053
3054         fts-lgpl: remove unused module
3055         * modules/fts-lgpl: Remove.
3056         * MODULES.html.sh (func_all_modules): Adjust.
3057         * check-module (find_included_lib_files): Adjust.
3058         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove.
3059
3060 2010-03-02  Ben Walton  <bwalton@artsci.utoronto.ca>  (tiny change)
3061
3062         copy-acl: enhance Solaris ACL error handling
3063         * lib/copy-acl.c (qcopy_acl): Also ignore EOPNOTSUPP.
3064         * lib/set-mode-acl.c (qset_acl): Likewise.
3065
3066 2010-03-02  Bruno Haible  <bruno@clisp.org>
3067
3068         spawn: Don't override the system defined values on FreeBSD 8.
3069         * lib/spawn.in.h (POSIX_SPAWN_RESETIDS, POSIX_SPAWN_SETPGROUP,
3070         POSIX_SPAWN_SETSIGDEF, POSIX_SPAWN_SETSIGMASK,
3071         POSIX_SPAWN_SETSCHEDPARAM, POSIX_SPAWN_SETSCHEDULER): Don't redefine
3072         if HAVE_POSIX_SPAWN is 1.
3073         Reported by Johan van Selst <johans@stack.nl> via Eric Blake.
3074
3075 2010-03-01  Bruno Haible  <bruno@clisp.org>
3076
3077         * doc/gnulib-tool.texi (Initial import): Clarify the requirements
3078         regarding Automake.
3079
3080 2010-02-25  Bruno Haible  <bruno@clisp.org>
3081
3082         Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
3083         * gnulib-tool: Define 'echo' as a function only before the ksh alias
3084         setting, not afterwards.
3085         Reported by Ben Walton <bwalton@artsci.utoronto.ca>.
3086
3087 2010-02-24  Eric Blake  <eblake@redhat.com>
3088
3089         bootstrap, git-version-gen: use timestamp
3090         * build-aux/git-version-gen (scriptversion): Force UTC.
3091         * build-aux/bootstrap (scriptversion): New variable.
3092
3093         bootstrap: allow older git
3094         * build-aux/bootstrap (GNULIB_SRCDIR): Add fallback if git is
3095         older than 1.6.4.  Requested by the libvirt project.
3096
3097 2010-02-23  Eric Blake  <eblake@redhat.com>
3098
3099         warn-on-use: work with old autoconf
3100         * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Accomodate older
3101         AS_VAR semantics of autoconf 2.60.
3102         Reported by Bruno Haible.
3103
3104         bootstrap: improve some comments
3105         * build-aux/bootstrap: Drop unneeded emacs hint.  Add some
3106         clarification comments.
3107
3108         gettimeofday: provide correct function
3109         * lib/gettimeofday.c (gettimeofday): Provide rpl_gettimeofday only
3110         when replacement is declared, otherwise provide gettimeofday.
3111         Reported by Michael Goffioul.
3112
3113 2010-02-23  Jim Meyering  <meyering@redhat.com>
3114
3115         lib-ignore: relax license to "unlimited", not LGPLv2+
3116         * modules/lib-ignore (License): Relax to "unlimited".
3117
3118 2010-02-23  Jim Meyering  <meyering@redhat.com>
3119
3120         lib-ignore: relax license to LGPLv2+
3121         * modules/lib-ignore (License): Relax to LGPLv2+.
3122
3123 2010-02-22  Eric Blake  <eblake@redhat.com>
3124
3125         lseek: avoid bash 3.2 broken pipe bug
3126         * m4/lseek.m4 (gl_FUNC_LSEEK): Drain pipe, to avoid spurious
3127         warning from bash 3.2.
3128         Reported by Ben Pfaff, with analysis from Bruno Haible.
3129
3130         bootstrap: support non-FSF copyright holder
3131         * build-aux/bootstrap (COPYRIGHT_HOLDER, with_gettext): Allow
3132         bootstrap.conf override of COPYRIGHT_HOLDER.
3133         (MSGID_BUGS_ADDRESS): Allow URL rather than email.
3134
3135         bootstrap: interoperate with gettext 0.14.1
3136         * build-aux/bootstrap (slurp): Fix typo when using older gettext.
3137
3138         bootstrap: allow for alternate submodule location
3139         * build-aux/bootstrap (gnulib_path): New variable; use instead of
3140         hardcoding submodule location.
3141         (gnulib_mk): Allow direct use of Makefile.am.
3142
3143         bootstrap: use GNULIB_SRCDIR to reduce disk usage
3144         * build-aux/bootstrap (GNULIB_SRCDIR): If set, use as a reference,
3145         rather than reconfiguring where the submodule points.
3146
3147         gettimeofday: restore support for platforms that lack function
3148         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Also compile
3149         replacement if function is missing.
3150         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_DEFAULTS): New witness.
3151         * modules/sys_time (Makefile.am): Substitute it.
3152         * lib/sys_time.in.h (gettimeofday): Check it.
3153         Reported by Michael Goffioul.
3154
3155 2010-02-21  Bruno Haible  <bruno@clisp.org>
3156
3157         * lib/stdio.in.h (obstack_printf): Fix typo.
3158
3159 2010-02-21  Jose E. Marchesi  <jemarch@gnu.org>
3160
3161         vc-list-files: use bzr ls's -R option
3162         * build-aux/vc-list-files: Invoke bazaar to generate a recursive
3163         list of versioned files based on 'dir' (usage of -R in 'bzr ls').
3164
3165 2010-02-21  Jim Meyering  <meyering@redhat.com>
3166
3167         init.sh: fix EXEEXT shims to work also for names like test-prog
3168         * tests/init.sh: Re-exec a better shell, when needed.
3169         If the current shell lacks support for posix $(...), an init.sh-using
3170         test will now try to find a shell that supports that.  If EXEEXT is
3171         nonempty, we also require support for hyphen-in-alias-name and shell
3172         substitutions like ${var#glob}.  Failure to find such a shell results
3173         in a skipped test.
3174
3175 2010-02-21  Bruno Haible  <bruno@clisp.org>
3176
3177         Really work around around "broken pipe" error message from bash 3.2.
3178         * gnulib-tool (func_reset_sigpipe): Remove function.
3179         (echo): In bash 3.2, define to a function that uses printf.
3180         Analyzed by Ralf Wildenhues, Chet Ramey, Ben Pfaff.
3181
3182 2010-02-20  Bruno Haible  <bruno@clisp.org>
3183
3184         Restore support for automake 1.9.6 with autoconf 2.61.
3185         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Ensure MKDIR_P is AC_SUBSTed.
3186         Reported by James Youngman <jay@gnu.org>.
3187
3188 2010-02-20  Bruno Haible  <bruno@clisp.org>
3189
3190         Improve *printf warning condition.
3191         * lib/stdio.in.h (fprintf, printf, vfprintf, vprintf): Emit warning
3192         also if GNULIB_POSIXCHECK is defined, the *-posix module is not used,
3193         and the function is overridden due to SIGPIPE emulation.
3194
3195 2010-02-20  Bruno Haible  <bruno@clisp.org>
3196
3197         * lib/stdio.in.h: Tweak comments.
3198
3199 2010-02-19  Bruno Haible  <bruno@clisp.org>
3200
3201         Make it easier to find modules. New gnulib-tool option '--find'.
3202         * gnulib-tool: New option --find.
3203         (func_usage): Document it.
3204         (func_sanitize_modulelist): New function, extracted from
3205         func_all_modules.
3206         (func_all_modules): Invoke it.
3207         * doc/gnulib-tool.texi (Which modules?): New node.
3208
3209 2010-02-18  Markus Duft <mduft@gentoo.org>  (tiny change)
3210
3211         * lib/sys_select.in.h: Provide select replacement even if
3212         sys/select.h exists on a system, for Interix.
3213
3214 2010-02-18  Jim Meyering  <meyering@redhat.com>
3215
3216         init.sh: don't use $(...) just yet
3217         * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...),
3218         to accommodate e.g., Solaris' /bin/sh.
3219
3220 2010-02-17  Bruno Haible  <bruno@clisp.org>
3221
3222         * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem.
3223         Reported by Ludovic Courtès <ludo@gnu.org>.
3224
3225 2010-02-16  Simon Josefsson  <simon@josefsson.org>
3226
3227         * modules/userspec-tests (test_userspec_LDADD): Add variable, for
3228         linking with -lintl.
3229
3230 2010-02-17  Simon Josefsson  <simon@josefsson.org>
3231
3232         * lib/netdb.in.h (AI_V4MAPPED, AI_ALL, AI_ADDRCONFIG): Define to 0
3233         if not provided by the system's netdb.h.  Reported by
3234         ludo@gnu.org (Ludovic Courtès).
3235
3236 2010-02-15  Jim Meyering  <meyering@redhat.com>
3237
3238         init.sh: improve portability and efficiency
3239         * tests/init.sh (find_exe_basenames_): Remove unnecessary use of
3240         "dummy" in a for loop.
3241         Use '!', not '^' to select the complement of a character set used
3242         in a "case" statement.
3243         Use shell variable manipulation, a la ${...%.exe}, rather than sed.
3244         Suggestions from Eric Blake.
3245
3246         init.sh: automatically accommodate programs with the .exe suffix
3247         Automatically arrange for an invocation of "prog" to execute the
3248         program named "prog$EXEEXT" (usually prog.exe).  Thus, all invocations
3249         may use the simpler "prog", yet still work when built on a system
3250         that requires specifying the added suffix.
3251         Do this by constructing a function named "prog" that invokes
3252         "prog.exe" for each .exe file in selected directories.
3253         * tests/init.sh (find_exe_basenames_): New function.
3254         (create_exe_shim_functions_): New function.
3255         (path_prepend_): Use it.
3256
3257         maint.mk: mark syntax-check sc_*.m rules as .PHONY
3258         * top/maint.mk ($(syntax-check-rules)): Add .PHONY, so that
3259         "make -t syntax-check" doesn't create a ton of sc_*.m files.
3260
3261 2010-02-14  Jim Meyering  <meyering@redhat.com>
3262
3263         maint.mk: prohibit inclusion of "hash-pjw.h" without_use
3264         * top/maint.mk (sc_prohibit_hash_without_use): Re-add "@".
3265         (sc_prohibit_hash_pjw_without_use): New rule.
3266
3267         maint.mk: allow the default upload destination dir to be overridden
3268         * top/maint.mk (upload_dest_dir_): Define with a default that
3269         preserves the status quo.
3270         (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
3271         Reported by Peter Simons.
3272
3273         maint.mk: prohibit inclusion of "hash.h" without_use
3274         * top/maint.mk (sc_prohibit_hash_without_use): New rule.
3275
3276 2010-02-10  Jim Meyering  <meyering@redhat.com>
3277
3278         maint.mk: prohibit inclusion of "ignore-value.h" without_use
3279         * top/maint.mk (sc_prohibit_ignore_value_without_use): New rule.
3280
3281 2010-02-09  Eric Blake  <ebb9@byu.net>
3282         and Bruno Haible  <bruno@clisp.org>
3283
3284         obstack-printf-posix: ensure declaration
3285         * m4/obstack-printf.m4 (gl_DECL_OBSTACK_PRINTF): New macro,
3286         extracted from gl_FUNC_OBSTACK_PRINTF.
3287         (gl_FUNC_OBSTACK_PRINTF): Invoke it.
3288         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
3289         Likewise.
3290         * lib/stdio.in.h (obstack_printf, obstack_vprintf): Declare also
3291         if GNULIB_OBSTACK_PRINTF_POSIX is 1 and GNULIB_OBSTACK_PRINTF is
3292         0.
3293
3294 2010-02-08  Bruno Haible  <bruno@clisp.org>
3295
3296         gnulib-tool: Fix typo in 2010-02-07 commit.
3297         * gnulib-tool (func_get_dependencies): Fix typo in last commit.
3298         Reported by Eric Blake.
3299
3300 2010-02-07  Bruno Haible  <bruno@clisp.org>
3301
3302         gnulib-tool: Fix up caching patches.
3303         * gnulib-tool: New options --cache-modules, --no-cache-modules. Remove
3304         option --no-cache. Use associative arrays when supported by the shell.
3305         (sed_comments): New variable.
3306         (modcache): Renamed from do_cache.
3307         (sed_extract_field_header): Renamed from sed_extract_cache_prog. Don't
3308         abbreviate unnecessarily.
3309         (have_associative): New variable.
3310         (func_cache_var): Define correctly for bash 1.x. Define in an optimized
3311         way also for ksh and zsh.
3312         (func_init_sed_convert_to_cache_statements): New function, extracted
3313         from func_cache_lookup_module. Add support for associative arrays.
3314         Don't set the c_MODULE_cached variable here. Ignore all lines before
3315         the first field header. Remove only the final newline, not all trailing
3316         newlines. Support empty fields correctly. Limit the use of 'eval' to
3317         assignments.
3318         (func_get_description, func_get_status, func_get_notice,
3319         func_get_applicability, func_get_filelist, func_get_dependencies,
3320         func_get_autoconf_early_snippet, func_get_autoconf_snippet,
3321         func_get_automake_snippet, func_get_include_directive,
3322         func_get_link_directive, func_get_license, func_get_maintainer):
3323         Update documentation. List the unoptimized code first. Add support for
3324         associative arrays. Limit the use of 'eval' to assignments.
3325         (func_get_applicability): Undo stylistic pessimisations.
3326         (func_get_automake_snippet, func_get_include_directive): Reduce code
3327         duplication.
3328         (func_modules_transitive_closure, func_modules_add_dummy,
3329         func_modules_notice, func_modules_to_filelist, func_add_file,
3330         func_update_file, func_emit_lib_Makefile_am, func_emit_po_Makevars,
3331         func_emit_po_POTFILES_in, func_emit_tests_Makefile_am, func_import,
3332         func_create_testdir, func_create_megatestdir): Update documentation.
3333
3334 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3335
3336         * gnulib-tool (func_cache_lookup_module): Store the module name
3337         belonging to the cache variable; error out if two different
3338         module names map to the same cache variable name.
3339
3340 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3341
3342         gnulib-tool: Make caching optional.
3343         * gnulib-tool: Accept option --no-cache, turning off $do_cache.
3344         Update matching short versions of --no-changelog.
3345         (func_usage): Update.
3346         (sed_extract_cache_prog): Renamed from ...
3347         (sed_extract_prog): ... this; revert to old extraction script.
3348         (func_get_description, func_get_status)
3349         (func_get_notice, func_get_applicability, func_get_filelist)
3350         (func_get_dependencies, func_get_autoconf_early_snippet)
3351         (func_get_autoconf_snippet, func_get_automake_snippet)
3352         (func_get_include_directive, func_get_link_directive)
3353         (func_get_license, func_get_maintainer): If $do_cache is false,
3354         use old, non-caching extraction scripts.
3355         Suggestion by Bruno Haible.
3356
3357 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3358
3359         gnulib-tool: cache module metainformation.
3360         * gnulib-tool (sed_extract_prog): Match newline before each
3361         header, and rewrite header to a shell variable suffix.
3362         (func_cache_var, func_cache_lookup_module): New functions,
3363         to turn a module name into a cache variable prefix, and to
3364         look up and cache module metainformation.
3365         (func_get_description, func_get_status)
3366         (func_get_notice, func_get_applicability, func_get_filelist)
3367         (func_get_dependencies, func_get_autoconf_early_snippet)
3368         (func_get_autoconf_snippet, func_get_automake_snippet)
3369         (func_get_include_directive, func_get_link_directive)
3370         (func_get_license, func_get_maintainer): Use
3371         func_cache_lookup_module.
3372
3373 2010-02-07  Bruno Haible  <bruno@clisp.org>
3374
3375         fnctl: Fix missing dependency.
3376         * modules/fcntl (Depends-on): Add getdtablesize.
3377         Reported by John W. Eaton <jwe@gnu.org>.
3378
3379 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
3380
3381         Argp: fix recognition of short alias options.
3382
3383         * lib/argp-parse.c (convert_options): Fix improper use of
3384         `|' between character values.
3385         * tests/test-argp.c (group1_option): New alias option
3386         --read (-r).
3387         (group1_parser): Special handling for 'r'.
3388         (test15): New test case.
3389         (test_fun): Add test15.
3390         * tests/test-argp-2.sh: Update expected --help and --usage
3391         outputs.
3392
3393 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
3394
3395         * tests/test-argp.c: Fix indentation.
3396
3397 2010-02-04  Eric Blake  <ebb9@byu.net>
3398
3399         gettimeofday: expose type of second argument
3400         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Do better detection
3401         of glibc extension signature, and define GETTIMEOFDAY_TIMEZONE.
3402         * tests/test-gettimeofday.c: Use it to silence warning.
3403         * doc/posix-functions/gettimeofday.texi (gettimeofday): Document
3404         the issue.
3405
3406 2010-02-03  Jim Meyering  <meyering@redhat.com>
3407
3408         regcomp.c: avoid the sole warning from gcc's -Wtype-limits
3409         * lib/regcomp.c (TYPE_SIGNED): Define.
3410         (parse_dup_op): Use it to avoid the sole warning from -Wtype-limits.
3411
3412         regcomp.c: avoid a new -Wshadow warning
3413         * lib/regcomp.c (create_initial_state): Do not shadow local "err".
3414
3415 2010-02-01  Jim Meyering  <meyering@redhat.com>
3416
3417         removing useless parentheses in cpp #define directives
3418         For motivation, see commit c0221df4, "define STREQ(a,b)
3419         consistently, removing useless parentheses"
3420         * lib/memcmp.c (CMP_LT_OR_GT): Remove useless parentheses.
3421         * lib/mountlist.c (MNT_IGNORE): Likewise.
3422         * lib/trim.h (trim, trim_trailing, trim_leading): Likewise.
3423
3424 2010-02-01  Eric Blake  <ebb9@byu.net>
3425
3426         sys_time: use link-warning
3427         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Split defaults...
3428         (gl_HEADER_SYS_TIME_H_DEFAULTS): ...into new macro.
3429         (gl_SYS_TIME_MODULE_INDICATOR): New macro.
3430         * modules/sys_time (Depends-on): Add warn-on-use.
3431         (Makefile.am): Always build replacement.
3432         (configure.ac): Update substitutions.
3433         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY)
3434         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Include defaults, and no longer
3435         bother with SYS_TIME_H.
3436         * modules/gettimeofday (configure.ac): Declare indicator.
3437         * lib/sys_time.in.h (gettimeofday): Warn if gnulib module is not
3438         in use.
3439
3440         closein-tests: silence compiler warning
3441         * tests/test-closein.c (main): Ignore fread result.
3442         * modules/closein-tests (Depends-on): Add ignore-value.
3443
3444         tests: silence warning about system return
3445         * tests/test-areadlink-with-size.c (main): Ignore system result.
3446         * tests/test-areadlink.c (main): Likewise.
3447         * tests/test-areadlinkat-with-size.c (main): Likewise.
3448         * tests/test-areadlinkat.c (main): Likewise.
3449         * tests/test-canonicalize-lgpl.c (main): Likewise.
3450         * tests/test-canonicalize.c (main): Likewise.
3451         * tests/test-chown.c (main): Likewise.
3452         * tests/test-fchownat.c (main): Likewise.
3453         * tests/test-fdutimensat.c (main): Likewise.
3454         * tests/test-fstatat.c (main): Likewise.
3455         * tests/test-futimens.c (main): Likewise.
3456         * tests/test-lchown.c (main): Likewise.
3457         * tests/test-link.c (main): Likewise.
3458         * tests/test-linkat.c (main): Likewise.
3459         * tests/test-lstat.c (main): Likewise.
3460         * tests/test-mkdir.c (main): Likewise.
3461         * tests/test-mkdirat.c (main): Likewise.
3462         * tests/test-mkfifo.c (main): Likewise.
3463         * tests/test-mkfifoat.c (main): Likewise.
3464         * tests/test-mknod.c (main): Likewise.
3465         * tests/test-readlink.c (main): Likewise.
3466         * tests/test-remove.c (main): Likewise.
3467         * tests/test-rename.c (main): Likewise.
3468         * tests/test-renameat.c (main): Likewise.
3469         * tests/test-rmdir.c (main): Likewise.
3470         * tests/test-symlink.c (main): Likewise.
3471         * tests/test-symlinkat.c (main): Likewise.
3472         * tests/test-unlink.c (main): Likewise.
3473         * tests/test-unlinkat.c (main): Likewise.
3474         * tests/test-utimens.c (main): Likewise.
3475         * tests/test-utimensat.c (main): Likewise.
3476         * modules/areadlink-tests (Depends-on): Add ignore-value.
3477         * modules/areadlink-with-size-tests (Depends-on): Likewise.
3478         * modules/areadlinkat-tests (Depends-on): Likewise.
3479         * modules/areadlinkat-with-size-tests (Depends-on): Likewise.
3480         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
3481         * modules/canonicalize-tests (Depends-on): Likewise.
3482         * modules/chown-tests (Depends-on): Likewise.
3483         * modules/fdutimensat-tests (Depends-on): Likewise.
3484         * modules/futimens-tests (Depends-on): Likewise.
3485         * modules/lchown-tests (Depends-on): Likewise.
3486         * modules/link-tests (Depends-on): Likewise.
3487         * modules/linkat-tests (Depends-on): Likewise.
3488         * modules/lstat-tests (Depends-on): Likewise.
3489         * modules/mkdir-tests (Depends-on): Likewise.
3490         * modules/mkfifo-tests (Depends-on): Likewise.
3491         * modules/mkfifoat-tests (Depends-on): Likewise.
3492         * modules/mknod-tests (Depends-on): Likewise.
3493         * modules/openat-tests (Depends-on): Likewise.
3494         * modules/readlink-tests (Depends-on): Likewise.
3495         * modules/remove-tests (Depends-on): Likewise.
3496         * modules/rename-tests (Depends-on): Likewise.
3497         * modules/renameat-tests (Depends-on): Likewise.
3498         * modules/rmdir-tests (Depends-on): Likewise.
3499         * modules/symlink-tests (Depends-on): Likewise.
3500         * modules/symlinkat-tests (Depends-on): Likewise.
3501         * modules/unlink-tests (Depends-on): Likewise.
3502         * modules/utimens-tests (Depends-on): Likewise.
3503         * modules/utimensat-tests (Depends-on): Likewise.
3504
3505 2010-01-31  Bruno Haible  <bruno@clisp.org>
3506
3507         Perform the same test for many <math.h> functions.
3508         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC,
3509         gl_COMMON_DOUBLE_MATHFUNC_TEST): New macros.
3510         * m4/sqrt.m4 (gl_FUNC_SQRT): Invoke gl_COMMON_DOUBLE_MATHFUNC instead
3511         of gl_MATHFUNC.
3512         * modules/acos (configure.ac): Likewise.
3513         * modules/asin (configure.ac): Likewise.
3514         * modules/atan (configure.ac): Likewise.
3515         * modules/atan2 (configure.ac): Likewise.
3516         * modules/cbrt (configure.ac): Likewise.
3517         * modules/copysign (configure.ac): Likewise.
3518         * modules/cos (configure.ac): Likewise.
3519         * modules/cosh (configure.ac): Likewise.
3520         * modules/erf (configure.ac): Likewise.
3521         * modules/erfc (configure.ac): Likewise.
3522         * modules/exp (configure.ac): Likewise.
3523         * modules/fmod (configure.ac): Likewise.
3524         * modules/hypot (configure.ac): Likewise.
3525         * modules/j0 (configure.ac): Likewise.
3526         * modules/j1 (configure.ac): Likewise.
3527         * modules/jn (configure.ac): Likewise.
3528         * modules/lgamma (configure.ac): Likewise.
3529         * modules/log (configure.ac): Likewise.
3530         * modules/log10 (configure.ac): Likewise.
3531         * modules/log1p (configure.ac): Likewise.
3532         * modules/pow (configure.ac): Likewise.
3533         * modules/remainder (configure.ac): Likewise.
3534         * modules/sin (configure.ac): Likewise.
3535         * modules/sinh (configure.ac): Likewise.
3536         * modules/tan (configure.ac): Likewise.
3537         * modules/tanh (configure.ac): Likewise.
3538         * modules/y0 (configure.ac): Likewise.
3539         * modules/y1 (configure.ac): Likewise.
3540         * modules/yn (configure.ac): Likewise.
3541         Suggested by Paolo Bonzini.
3542
3543 2010-01-31  Bruno Haible  <bruno@clisp.org>
3544
3545         * m4/getline.m4 (gl_FUNC_GETLINE): Add comment about REPLACE_GETLINE.
3546
3547 2010-01-31  Bruno Haible  <bruno@clisp.org>
3548
3549         Work around getdelim() bug on FreeBSD 8.0.
3550         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Test whether getdelim supports an
3551         initially NULL line. Set REPLACE_GETDELIM if getdelim exists but does
3552         not work.
3553         * lib/stdio.in.h (getdelim): Define as an alias if REPLACE_GETDELIM
3554         is 1.
3555         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize REPLACE_GETDELIM.
3556         * modules/stdio (Makefile.am): Also substitute REPLACE_GETDELIM.
3557         * tests/test-getdelim.c (main): Also test result for a NULL buffer and
3558         a non-zero size.
3559         * doc/posix-functions/getdelim.texi: Mention the FreeBSD bug.
3560
3561 2010-01-31  Bruno Haible  <bruno@clisp.org>
3562
3563         Work around getline() bug on FreeBSD 8.0.
3564         * m4/getline.m4 (gl_FUNC_GETLINE): Also test result for a NULL buffer
3565         and a non-zero size.
3566         * tests/test-getline.c (main): Likewise.
3567         * doc/posix-functions/getline.texi: Mention the FreeBSD bug.
3568         Reported by Dennis <noordsij@cs.helsinki.fi> via Eric Blake.
3569
3570 2010-01-28  Eric Blake  <ebb9@byu.net>
3571
3572         regex: fix build failure
3573         * lib/regex_internal.h (__GNUC_PREREQ): Define for non-glibc
3574         platforms.
3575
3576 2010-01-28  Jim Meyering  <meyering@redhat.com>
3577
3578         regex: do not ignore memory allocation failure
3579         * lib/regex_internal.c (create_cd_newstate): Detect
3580         re_node_set_init_copy failure.   Extracted from glibc commit
3581         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
3582
3583         regex: sync more white-space changes from libc
3584         * lib/regex_internal.c: White-space only changes.
3585         * lib/regexec.c: Likewise.
3586
3587         regex: add many uses of __attribute_warn_unused_result__
3588         * lib/regex_internal.c: Use __attribute_warn_unused_result__.
3589         * lib/regexec.c: Likewise.
3590         Extracted from a messy glibc commit.
3591
3592         regcomp.c: spelling and merge-artifact from glibc
3593         * lib/regcomp.c: Merge remainder of glibc's
3594         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
3595
3596         regcomp.c: sync white-space changes from glibc
3597         * lib/regcomp.c: Merge to accommodate white space
3598         changes from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
3599
3600         regcomp.c: do not ignore internal return values
3601         * lib/regcomp.c: Do not ignore internal return values.
3602         This is from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c,
3603         but without its white-space changes and spelling fixes.
3604
3605         regex_internal.h: define __attribute_warn_unused_result__
3606         * lib/regex_internal.h (__attribute_warn_unused_result__): Define.
3607
3608         maint: add a syntax-check rule to check for vulnerable Makefile.in
3609         * top/maint.mk (sc_vulnerable_makefile_CVE-2009-4029): New rule.
3610
3611 2010-01-27  Jim Meyering  <meyering@redhat.com>
3612
3613         ncftpput-ftp: clean up spaces
3614         * build-aux/ncftpput-ftp: Make Copyright line consistent.
3615         Remove trailing blanks.
3616
3617 2010-01-27  Simon Josefsson  <simon@josefsson.org>
3618
3619         * build-aux/git-version-gen: Fix copyright statement.
3620         * build-aux/gnupload: Likewise.
3621         * tests/test-arcfour.c: Likewise.
3622         * tests/test-arctwo.c: Likewise.
3623         * tests/test-count-one-bits.c: Likewise.
3624         * tests/test-crc.c: Likewise.
3625         * tests/test-des.c: Likewise.
3626         * tests/test-gc-arcfour.c: Likewise.
3627         * tests/test-gc-arctwo.c: Likewise.
3628         * tests/test-gc-des.c: Likewise.
3629         * tests/test-gc-hmac-md5.c: Likewise.
3630         * tests/test-gc-hmac-sha1.c: Likewise.
3631         * tests/test-gc-md2.c: Likewise.
3632         * tests/test-gc-md4.c: Likewise.
3633         * tests/test-gc-md5.c: Likewise.
3634         * tests/test-gc-pbkdf2-sha1.c: Likewise.
3635         * tests/test-gc-rijndael.c: Likewise.
3636         * tests/test-gc-sha1.c: Likewise.
3637         * tests/test-gc.c: Likewise.
3638         * tests/test-gethostname.c: Likewise.
3639         * tests/test-gettimeofday.c: Likewise.
3640         * tests/test-hash.c: Likewise.
3641         * tests/test-hmac-md5.c: Likewise.
3642         * tests/test-hmac-sha1.c: Likewise.
3643         * tests/test-md2.c: Likewise.
3644         * tests/test-md4.c: Likewise.
3645         * tests/test-md5.c: Likewise.
3646         * tests/test-memchr.c: Likewise.
3647         * tests/test-memchr2.c: Likewise.
3648         * tests/test-memcmp.c: Likewise.
3649         * tests/test-memmem.c: Likewise.
3650         * tests/test-memrchr.c: Likewise.
3651         * tests/test-rawmemchr.c: Likewise.
3652         * tests/test-read-file.c: Likewise.
3653         * tests/test-rijndael.c: Likewise.
3654         * tests/test-sockets.c: Likewise.
3655         * tests/test-strchrnul.c: Likewise.
3656         * tests/test-strstr.c: Likewise.
3657         * tests/test-strtod.c: Likewise.
3658         * build-aux/ncftpput-ftp: Likewise.
3659
3660 2010-01-26  Eric Blake  <ebb9@byu.net>
3661
3662         ignore-value: update recommended header name
3663         * modules/ignore-value (Include): Only use <> for headers that
3664         exist in glibc.
3665
3666 2010-01-26  Jim Meyering  <meyering@redhat.com>
3667
3668         test-userspec.c: avoid compiler warnings
3669         * tests/test-userspec.c (main): Avoid shadowing ("uid"),
3670         and "initialization discards qualifiers..." warnings.
3671         Put the first "uid" in its own scope, and make char* members "const".
3672
3673 2010-01-25  Bruno Haible  <bruno@clisp.org>
3674
3675         gnulib-tool: Make warning diagnostics consistent.
3676         * gnulib-tool (func_warning): New function.
3677         Use it everywhere where gnulib-tool produces output to stderr and it is
3678         not a fatal error.
3679
3680 2010-01-25  Bruno Haible  <bruno@clisp.org>
3681
3682         Fix test dependencies.
3683         * modules/xstrtol-tests (Depends-on): Add inttypes.
3684         * modules/xstrtoll-tests (Depends-on): Likewise. Remove xstrtoll.
3685
3686 2010-01-25 Pádraig Brady <P@draigBrady.com>
3687
3688         syntax-check: detect incorrect boolean macro values in config.h
3689         * modules/maintainer-makefile (configure.ac): Parameterize the location
3690         of config.h which will be available to makefiles as $(CONFIG_INCLUDE).
3691         The logic is from Eric Blake and the location indicated by Jim Meyering.
3692         Note the more natural CONFIG_HEADER name is prohibited by automake
3693         for backwards compatibility reasons.
3694         * top/maint.mk (sc_Wundef_boolean): New rule.
3695
3696 2010-01-25  Jim Meyering  <meyering@redhat.com>
3697
3698         bootstrap: detect MacOS 10.6's shasum, too
3699         * build-aux/bootstrap: Also recognize MacOS 10.6's shasum.
3700         Suggested by Thomas Treichl <Thomas.Treichl@gmx.net>.
3701
3702 2010-01-23  Jim Meyering  <meyering@redhat.com>
3703
3704         xstrtoll: new module
3705         * modules/xstrtoll: New file.
3706         * MODULES.html.sh (Numeric conversion functions): Add xstrtoll.
3707         * lib/xstrtol.h [HAVE_LONG_LONG_INT]: Declare xstrtoll and xstrtoull.
3708         * lib/xstrtoll.c, lib/xstrtoull.c: New files.
3709         ./configure fails if you use this module and lack "long long".
3710         * modules/xstrtoll-tests: New module.
3711         * tests/test-xstrtoll.c, tests/test-xstrtoull.c: New files.
3712         * tests/test-xstrtoll.sh: Like test-xstrtol.c, but use the
3713         new init.sh-based test framework.
3714
3715 2010-01-24  Bruno Haible  <bruno@clisp.org>
3716
3717         Tests for module 'yn'.
3718         * modules/yn-tests: New file.
3719         * tests/test-yn.c: New file.
3720
3721         Tests for module 'y1'.
3722         * modules/y1-tests: New file.
3723         * tests/test-y1.c: New file.
3724
3725         Tests for module 'y0'.
3726         * modules/y0-tests: New file.
3727         * tests/test-y0.c: New file.
3728
3729         Tests for module 'tanh'.
3730         * modules/tanh-tests: New file.
3731         * tests/test-tanh.c: New file.
3732
3733         Tests for module 'tan'.
3734         * modules/tan-tests: New file.
3735         * tests/test-tan.c: New file.
3736
3737         Tests for module 'sqrt'.
3738         * modules/sqrt-tests: New file.
3739         * tests/test-sqrt.c: New file.
3740
3741         Tests for module 'sinh'.
3742         * modules/sinh-tests: New file.
3743         * tests/test-sinh.c: New file.
3744
3745         Tests for module 'sin'.
3746         * modules/sin-tests: New file.
3747         * tests/test-sin.c: New file.
3748
3749         Tests for module 'rint'.
3750         * modules/rint-tests: New file.
3751         * tests/test-rint.c: New file.
3752
3753         Tests for module 'remainder'.
3754         * modules/remainder-tests: New file.
3755         * tests/test-remainder.c: New file.
3756
3757         Tests for module 'pow'.
3758         * modules/pow-tests: New file.
3759         * tests/test-pow.c: New file.
3760
3761         Tests for module 'nextafter'.
3762         * modules/nextafter-tests: New file.
3763         * tests/test-nextafter.c: New file.
3764
3765         Tests for module 'modf'.
3766         * modules/modf-tests: New file.
3767         * tests/test-modf.c: New file.
3768
3769         Tests for module 'logb'.
3770         * modules/logb-tests: New file.
3771         * tests/test-logb.c: New file.
3772
3773         Tests for module 'log1p'.
3774         * modules/log1p-tests: New file.
3775         * tests/test-log1p.c: New file.
3776
3777         Tests for module 'log10'.
3778         * modules/log10-tests: New file.
3779         * tests/test-log10.c: New file.
3780
3781         Tests for module 'log'.
3782         * modules/log-tests: New file.
3783         * tests/test-log.c: New file.
3784
3785         Tests for module 'lgamma'.
3786         * modules/lgamma-tests: New file.
3787         * tests/test-lgamma.c: New file.
3788
3789         Tests for module 'ldexp'.
3790         * modules/ldexp-tests: New file.
3791         * tests/test-ldexp.c: New file.
3792
3793         Tests for module 'jn'.
3794         * modules/jn-tests: New file.
3795         * tests/test-jn.c: New file.
3796
3797         Tests for module 'j1'.
3798         * modules/j1-tests: New file.
3799         * tests/test-j1.c: New file.
3800
3801         Tests for module 'j0'.
3802         * modules/j0-tests: New file.
3803         * tests/test-j0.c: New file.
3804
3805         Tests for module 'hypot'.
3806         * modules/hypot-tests: New file.
3807         * tests/test-hypot.c: New file.
3808
3809         Tests for module 'fmod'.
3810         * modules/fmod-tests: New file.
3811         * tests/test-fmod.c: New file.
3812
3813         Tests for module 'fabs'.
3814         * modules/fabs-tests: New file.
3815         * tests/test-fabs.c: New file.
3816
3817         Tests for module 'exp'.
3818         * modules/exp-tests: New file.
3819         * tests/test-exp.c: New file.
3820
3821         Tests for module 'erfc'.
3822         * modules/erfc-tests: New file.
3823         * tests/test-erfc.c: New file.
3824
3825         Tests for module 'erf'.
3826         * modules/erf-tests: New file.
3827         * tests/test-erf.c: New file.
3828
3829         Tests for module 'cosh'.
3830         * modules/cosh-tests: New file.
3831         * tests/test-cosh.c: New file.
3832
3833         Tests for module 'cos'.
3834         * modules/cos-tests: New file.
3835         * tests/test-cos.c: New file.
3836
3837         Tests for module 'copysign'.
3838         * modules/copysign-tests: New file.
3839         * tests/test-copysign.c: New file.
3840
3841         Tests for module 'cbrt'.
3842         * modules/cbrt-tests: New file.
3843         * tests/test-cbrt.c: New file.
3844
3845         Tests for module 'atan2'.
3846         * modules/atan2-tests: New file.
3847         * tests/test-atan2.c: New file.
3848
3849         Tests for module 'atan'.
3850         * modules/atan-tests: New file.
3851         * tests/test-atan.c: New file.
3852
3853         Tests for module 'asin'.
3854         * modules/asin-tests: New file.
3855         * tests/test-asin.c: New file.
3856
3857         Tests for module 'acos'.
3858         * modules/acos-tests: New file.
3859         * tests/test-acos.c: New file.
3860
3861 2010-01-24  Bruno Haible  <bruno@clisp.org>
3862
3863         Fix tests for common <math.h> functions.
3864         * m4/mathfunc.m4 (gl_MATHFUNC): Take two additional parameters. Use a
3865         code snippet that references the function pointer, rather than merely
3866         calling the function. Substitute the FUNC_LIBM variable.
3867         * m4/sqrt.m4 (gl_FUNC_SQRT): Update gl_MATHFUNC invocation.
3868         * modules/acos (configure.ac): Likewise.
3869         * modules/asin (configure.ac): Likewise.
3870         * modules/atan (configure.ac): Likewise.
3871         * modules/atan2 (configure.ac): Likewise.
3872         * modules/cbrt (configure.ac): Likewise.
3873         * modules/copysign (configure.ac): Likewise.
3874         * modules/cos (configure.ac): Likewise.
3875         * modules/cosh (configure.ac): Likewise.
3876         * modules/erf (configure.ac): Likewise.
3877         * modules/erfc (configure.ac): Likewise.
3878         * modules/exp (configure.ac): Likewise.
3879         * modules/fabs (configure.ac): Likewise.
3880         * modules/fmod (configure.ac): Likewise.
3881         * modules/hypot (configure.ac): Likewise.
3882         * modules/j0 (configure.ac): Likewise.
3883         * modules/j1 (configure.ac): Likewise.
3884         * modules/jn (configure.ac): Likewise.
3885         * modules/ldexp (configure.ac): Likewise.
3886         * modules/lgamma (configure.ac): Likewise.
3887         * modules/log (configure.ac): Likewise.
3888         * modules/log10 (configure.ac): Likewise.
3889         * modules/log1p (configure.ac): Likewise.
3890         * modules/logb (configure.ac): Likewise.
3891         * modules/modf (configure.ac): Likewise.
3892         * modules/nextafter (configure.ac): Likewise.
3893         * modules/pow (configure.ac): Likewise.
3894         * modules/remainder (configure.ac): Likewise.
3895         * modules/rint (configure.ac): Likewise.
3896         * modules/sin (configure.ac): Likewise.
3897         * modules/sinh (configure.ac): Likewise.
3898         * modules/tan (configure.ac): Likewise.
3899         * modules/tanh (configure.ac): Likewise.
3900         * modules/y0 (configure.ac): Likewise.
3901         * modules/y1 (configure.ac): Likewise.
3902         * modules/yn (configure.ac): Likewise.
3903
3904 2010-01-24  Bruno Haible  <bruno@clisp.org>
3905
3906         Tests: Defeat inlining of math functions by GCC >= 4.3.0.
3907         * tests/test-acosl.c (x): New variable.
3908         (main): Store argument in x and fetch it from x.
3909         * tests/test-asinl.c (x): New variable.
3910         (main): Store argument in x and fetch it from x.
3911         * tests/test-atanl.c (x): New variable.
3912         (main): Store argument in x and fetch it from x.
3913         * tests/test-cosl.c (x): New variable.
3914         (main): Store argument in x and fetch it from x.
3915         * tests/test-expl.c (x): New variable.
3916         (main): Store argument in x and fetch it from x.
3917         * tests/test-logl.c (x): New variable.
3918         (main): Store argument in x and fetch it from x.
3919         * tests/test-sinl.c (x): New variable.
3920         (main): Store argument in x and fetch it from x.
3921         * tests/test-sqrtl.c (x): New variable.
3922         (main): Store argument in x and fetch it from x.
3923         * tests/test-tanl.c (x): New variable.
3924         (main): Store argument in x and fetch it from x.
3925
3926 2010-01-24  Bruno Haible  <bruno@clisp.org>
3927
3928         Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
3929         * gnulib-tool (func_emit_tests_Makefile_am): Add EXEEXT and srcdir
3930         assignments to the initial TESTS_ENVIRONMENT.
3931         * doc/gnulib.texi (Unit test modules): Document it.
3932         * modules/acl-tests (Makefile.am): Drop EXEEXT assignment from
3933         TESTS_ENVIRONMENT.
3934         * modules/btowc-tests (Makefile.am): Likewise.
3935         * modules/c-stack-tests (Makefile.am): Likewise.
3936         * modules/c-strcase-tests (Makefile.am): Likewise.
3937         * modules/copy-file-tests (Makefile.am): Likewise.
3938         * modules/mbmemcasecmp-tests (Makefile.am): Likewise.
3939         * modules/mbmemcasecoll-tests (Makefile.am): Likewise.
3940         * modules/mbrtowc-tests (Makefile.am): Likewise.
3941         * modules/mbscasecmp-tests (Makefile.am): Likewise.
3942         * modules/mbscasestr-tests (Makefile.am): Likewise.
3943         * modules/mbschr-tests (Makefile.am): Likewise.
3944         * modules/mbscspn-tests (Makefile.am): Likewise.
3945         * modules/mbsinit-tests (Makefile.am): Likewise.
3946         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
3947         * modules/mbsnrtowcs-tests (Makefile.am): Likewise.
3948         * modules/mbspbrk-tests (Makefile.am): Likewise.
3949         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
3950         * modules/mbsrchr-tests (Makefile.am): Likewise.
3951         * modules/mbsrtowcs-tests (Makefile.am): Likewise.
3952         * modules/mbsspn-tests (Makefile.am): Likewise.
3953         * modules/mbsstr-tests (Makefile.am): Likewise.
3954         * modules/nl_langinfo-tests (Makefile.am): Likewise.
3955         * modules/unicase/locale-language-tests (Makefile.am): Likewise.
3956         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
3957         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
3958         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
3959         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
3960         * modules/uniwbrk/ulc-wordbreaks-tests (Makefile.am): Likewise.
3961         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
3962         * modules/wcrtomb-tests (Makefile.am): Likewise.
3963         * modules/wcsnrtombs-tests (Makefile.am): Likewise.
3964         * modules/wcsrtombs-tests (Makefile.am): Likewise.
3965         * modules/quotearg-tests (Makefile.am): Drop EXEEXT and srcdir
3966         assignments from TESTS_ENVIRONMENT.
3967         * modules/argp-tests (Makefile.am): Drop TESTS_ENVIRONMENT
3968         augmentation.
3969         * modules/argp-version-etc-tests (Makefile.am): Likewise.
3970         * modules/atexit-tests (Makefile.am): Likewise.
3971         * modules/binary-io-tests (Makefile.am): Likewise.
3972         * modules/closein-tests (Makefile.am): Likewise.
3973         * modules/dprintf-posix-tests (Makefile.am): Likewise.
3974         * modules/exclude-tests (Makefile.am): Likewise.
3975         * modules/fflush-tests (Makefile.am): Likewise.
3976         * modules/fpending-tests (Makefile.am): Likewise.
3977         * modules/fprintf-posix-tests (Makefile.am): Likewise.
3978         * modules/freadahead-tests (Makefile.am): Likewise.
3979         * modules/freadptr-tests (Makefile.am): Likewise.
3980         * modules/freadseek-tests (Makefile.am): Likewise.
3981         * modules/fseek-tests (Makefile.am): Likewise.
3982         * modules/fseeko-tests (Makefile.am): Likewise.
3983         * modules/ftell-tests (Makefile.am): Likewise.
3984         * modules/ftello-tests (Makefile.am): Likewise.
3985         * modules/idpriv-drop-tests (Makefile.am): Likewise.
3986         * modules/idpriv-droptemp-tests (Makefile.am): Likewise.
3987         * modules/lseek-tests (Makefile.am): Likewise.
3988         * modules/parse-duration-tests (Makefile.am): Likewise.
3989         * modules/perror-tests (Makefile.am): Likewise.
3990         * modules/pipe-filter-gi-tests (Makefile.am): Likewise.
3991         * modules/pipe-filter-ii-tests (Makefile.am): Likewise.
3992         * modules/pipe-tests (Makefile.am): Likewise.
3993         * modules/pread-tests (Makefile.am): Likewise.
3994         * modules/printf-posix-tests (Makefile.am): Likewise.
3995         * modules/select-tests (Makefile.am): Likewise.
3996         * modules/sigpipe-tests (Makefile.am): Likewise.
3997         * modules/tsearch-tests (Makefile.am): Likewise.
3998         * modules/unicase/ulc-casecmp-tests (Makefile.am): Likewise.
3999         * modules/unicase/ulc-casecoll-tests (Makefile.am): Likewise.
4000         * modules/uniname/uniname-tests (Makefile.am): Likewise.
4001         * modules/uniwidth/width-tests (Makefile.am): Likewise.
4002         * modules/vdprintf-posix-tests (Makefile.am): Likewise.
4003         * modules/version-etc-tests (Makefile.am): Likewise.
4004         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
4005         * modules/vprintf-posix-tests (Makefile.am): Likewise.
4006         * modules/xalloc-die-tests (Makefile.am): Likewise.
4007         * modules/xprintf-posix-tests (Makefile.am): Likewise.
4008         * modules/xstrtoimax-tests (Makefile.am): Likewise.
4009         * modules/xstrtol-tests (Makefile.am): Likewise.
4010         * modules/xstrtoumax-tests (Makefile.am): Likewise.
4011         * modules/yesno-tests (Makefile.am): Likewise.
4012         Suggested by Jim Meyering.
4013
4014 2010-01-24  Bruno Haible  <bruno@clisp.org>
4015
4016         More documentation.
4017         * doc/gnulib.texi (Writing modules): New chapter.
4018         (Miscellaneous Notes): Move sections "Comments" and "Header files" to
4019         the new chapter.
4020
4021 2010-01-24  Jim Meyering  <meyering@redhat.com>
4022
4023         maint.mk: do not prepend "./" after filtering
4024         * top/maint.mk (_prepend_srcdir_prefix): New variable
4025         (VC_LIST_EXCEPT): Use it to avoid prepending (post-filter)
4026         "./" when $(srcdir) is ".".
4027
4028         define STREQ(a,b) consistently, removing useless parentheses
4029         #define STREQ(a, b) (strcmp ((a), (b)) == 0) is over-parenthesized,
4030         since the only risk is that "a" or "b" contains an unparenthesized
4031         comma, but if either did that, STREQ would have 3 or more arguments.
4032         Hence, #define STREQ(a, b) (strcmp (a, b) == 0) is better.
4033         * lib/fts.c (STREQ): Remove unnecessary parentheses.
4034         * lib/hash-triple.c (STREQ): Likewise.
4035         * tests/test-argv-iter.c (STREQ): Use a and b, not s1 and s2.
4036         * lib/getugroups.c (STREQ): Likewise.
4037
4038 2010-01-23  Jim Meyering  <meyering@redhat.com>
4039
4040         maint.mk: fix syntax-check in a non-srcdir build directory
4041         * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash,
4042         introduced in my 2010-01-21 commit, a6da6c45.  Reported by Eric Blake.
4043
4044 2010-01-22  Jim Meyering  <meyering@redhat.com>
4045
4046         userspec: add unit tests
4047         * tests/test-userspec.c: New file.
4048         * modules/userspec-tests: Likewise.
4049
4050 2010-01-21  Jim Meyering  <meyering@redhat.com>
4051
4052         maint.mk: handle source file names containing "." robustly
4053         * top/maint.mk (_dot_escaped_srcdir): Define.
4054         (VC_LIST): Use it in LHS of sed substitution.
4055
4056 2010-01-21  Jiri Denemark  <jdenemar@redhat.com>
4057
4058         maint.mk: fix VC_LIST_EXCEPT for srcdir != builddir
4059         * top/maint.mk (VC_LIST_EXCEPT): Preprocess the output of
4060         $(VC_LIST) to remove a prefix of '$(srcdir)/', so that it works
4061         from a non-srcdir build.
4062
4063 2010-01-20  Eric Blake  <ebb9@byu.net>
4064
4065         warn-on-use: use instead of link-warning
4066         * modules/stdio (Depends-on, Makefile.am): Drop link-warning.
4067         * modules/unistd (Depends-on, Makefile.am): Likewise.
4068         * modules/arpa_inet (Depends-on): Replace link-warning with
4069         warn-on-use.
4070         (Makefile.am): Update rules accordingly.
4071         * modules/ctype (Depends-on, Makefile.am): Likewise.
4072         * modules/dirent (Depends-on, Makefile.am): Likewise.
4073         * modules/fcntl-h (Depends-on, Makefile.am): Likewise.
4074         * modules/inttypes (Depends-on, Makefile.am): Likewise.
4075         * modules/langinfo (Depends-on, Makefile.am): Likewise.
4076         * modules/locale (Depends-on, Makefile.am): Likewise.
4077         * modules/math (Depends-on, Makefile.am): Likewise.
4078         * modules/search (Depends-on, Makefile.am): Likewise.
4079         * modules/signal (Depends-on, Makefile.am): Likewise.
4080         * modules/spawn (Depends-on, Makefile.am): Likewise.
4081         * modules/stdlib (Depends-on, Makefile.am): Likewise.
4082         * modules/string (Depends-on, Makefile.am): Likewise.
4083         * modules/strings (Depends-on, Makefile.am): Likewise.
4084         * modules/sys_file (Depends-on, Makefile.am): Likewise.
4085         * modules/sys_ioctl (Depends-on, Makefile.am): Likewise.
4086         * modules/sys_select (Depends-on, Makefile.am): Likewise.
4087         * modules/sys_socket (Depends-on, Makefile.am): Likewise.
4088         * modules/sys_stat (Depends-on, Makefile.am): Likewise.
4089         * modules/sys_times (Depends-on, Makefile.am): Likewise.
4090         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
4091         * modules/wchar (Depends-on, Makefile.am): Likewise.
4092         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Check which functions
4093         should be poisoned.
4094         * m4/ctype.m4 (gl_CTYPE_H): Likewise.
4095         * m4/dirent_h.m4 (gl_DIRENT_H): Likewise.
4096         * m4/fcntl_h.m4 (gl_FCNTL_H): Likewise.
4097         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
4098         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
4099         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
4100         * m4/math_h.m4 (gl_MATH_H): Likewise.
4101         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
4102         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
4103         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
4104         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
4105         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
4106         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
4107         * m4/strings_h.m4 (gl_HEADER_STRINGS_H_BODY): Likewise.
4108         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H_DEFAULTS): Likewise.
4109         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise.
4110         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
4111         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
4112         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
4113         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
4114         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
4115         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
4116         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
4117         * lib/arpa_inet.in.h: Use _GL_WARN_ON_USE instead of
4118         GL_LINK_WARNING.
4119         * lib/ctype.in.h: Likewise.
4120         * lib/dirent.in.h: Likewise.
4121         * lib/fcntl.in.h: Likewise.
4122         * lib/inttypes.in.h: Likewise.
4123         * lib/langinfo.in.h: Likewise.
4124         * lib/locale.in.h: Likewise.
4125         * lib/math.in.h: Likewise.
4126         * lib/search.in.h: Likewise.
4127         * lib/signal.in.h: Likewise.
4128         * lib/spawn.in.h: Likewise.
4129         * lib/stdio.in.h: Likewise.
4130         * lib/stdlib.in.h: Likewise.
4131         * lib/string.in.h: Likewise.
4132         * lib/strings.in.h: Likewise.
4133         * lib/sys_file.in.h: Likewise.
4134         * lib/sys_ioctl.in.h: Likewise.
4135         * lib/sys_select.in.h: Likewise.
4136         * lib/sys_socket.in.h: Likewise.
4137         * lib/sys_stat.in.h: Likewise.
4138         * lib/sys_times.in.h: Likewise.
4139         * lib/sys_utsname.in.h: Likewise.
4140         * lib/unistd.in.h: Likewise.
4141         * lib/wchar.in.h: Likewise.
4142
4143 2010-01-20  Bruno Haible  <bruno@clisp.org>
4144
4145         Avoid duplicate -lm.
4146         * m4/isnan.m4 (gl_ISNAN): Avoid duplicate -lm in $ISNAN_LIBM.
4147         * m4/round.m4 (gl_FUNC_ROUND): Avoid duplicate -lm in $ROUND_LIBM.
4148         * m4/roundf.m4 (gl_FUNC_ROUNDF): Avoid duplicate -lm in $ROUNDF_LIBM.
4149         * m4/roundl.m4 (gl_FUNC_ROUNDL): Avoid duplicate -lm in $ROUNDL_LIBM.
4150         * m4/acosl.m4 (gl_FUNC_ACOSL): Avoid duplicate -lm in $ACOSL_LIBM.
4151         * m4/cosl.m4 (gl_FUNC_COSL): Avoid duplicate -lm in $COSL_LIBM.
4152         * m4/logl.m4 (gl_FUNC_LOGL): Avoid duplicate -lm in $LOGL_LIBM.
4153         * m4/sinl.m4 (gl_FUNC_SINL): Avoid duplicate -lm in $SINL_LIBM.
4154         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Avoid duplicate -lm in $SQRTL_LIBM.
4155         * m4/tanl.m4 (gl_FUNC_TANL): Avoid duplicate -lm in $TANL_LIBM.
4156         * m4/asinl.m4 (gl_FUNC_ASINL): Same change, for consistency.
4157         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
4158         Reported by Paolo Bonzini.
4159
4160 2010-01-19  Bruno Haible  <bruno@clisp.org>
4161
4162         langinfo, nl_langinfo: Relicense under LGPLv2+.
4163         * modules/langinfo (License): Change to LGPLv2+.
4164         * modules/nl_langinfo (License): Likewise.
4165         Patch by David Lutterkort <lutter@redhat.com>.
4166
4167 2010-01-19  Bruno Haible  <bruno@clisp.org>
4168
4169         Avoid compilation error with cc on OSF/1 5.1.
4170         * lib/fcntl.in.h: Include <unistd.h> after the #include_next <fcntl.h>
4171         statement, not before.
4172         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4173
4174 2010-01-18  Bruno Haible  <bruno@clisp.org>
4175
4176         Avoid a link error due to the __printf__ symbol.
4177         * lib/stdio.in.h (__attribute__): Define to empty also for gcc 2.5.x
4178         and 2.6.x.
4179         (__format__, __printf__): Remove definitions.
4180         * lib/argp-fmtstream.h: Likewise.
4181         * lib/argp.h: Likewise.
4182         * lib/error.h: Likewise.
4183         * lib/vasnprintf.h: Likewise.
4184         * lib/xprintf.h: Likewise.
4185         * lib/xvasprintf.h: Likewise.
4186         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4187
4188 2010-01-18  Bruno Haible  <bruno@clisp.org>
4189
4190         Tests for module 'tanl'.
4191         * modules/tanl-tests: New file.
4192         * tests/test-tanl.c: New file.
4193
4194         Tests for module 'sqrtl'.
4195         * modules/sqrtl-tests: New file.
4196         * tests/test-sqrtl.c: New file.
4197
4198         Tests for module 'sinl'.
4199         * modules/sinl-tests: New file.
4200         * tests/test-sinl.c: New file.
4201
4202         Tests for module 'logl'.
4203         * modules/logl-tests: New file.
4204         * tests/test-logl.c: New file.
4205
4206         Tests for module 'expl'.
4207         * modules/expl-tests: New file.
4208         * tests/test-expl.c: New file.
4209
4210         Tests for module 'cosl'.
4211         * modules/cosl-tests: New file.
4212         * tests/test-cosl.c: New file.
4213
4214         Tests for module 'atanl'.
4215         * modules/atanl-tests: New file.
4216         * tests/test-atanl.c: New file.
4217
4218         Tests for module 'asinl'.
4219         * modules/asinl-tests: New file.
4220         * tests/test-asinl.c: New file.
4221
4222         Tests for module 'acosl'.
4223         * modules/acosl-tests: New file.
4224         * tests/test-acosl.c: New file.
4225
4226         New modules acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
4227         * lib/math.in.h (acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl,
4228         tanl): Use the standard gnulib idiom.
4229         * lib/cosl.c: Don't include trigl.c and sincosl.c.
4230         * lib/sinl.c: Likewise.
4231         * lib/tanl.c: Don't include trigl.c.
4232         (kernel_tanl): Make static.
4233         * lib/sincosl.c: Include trigl.h first.
4234         * lib/trigl.c: Likewise.
4235         * m4/acosl.m4: New file.
4236         * m4/asinl.m4: New file.
4237         * m4/atanl.m4: New file.
4238         * m4/cosl.m4: New file.
4239         * m4/expl.m4: New file.
4240         * m4/logl.m4: New file.
4241         * m4/sinl.m4: New file.
4242         * m4/sqrtl.m4: New file.
4243         * m4/tanl.m4: New file.
4244         * m4/mathl.m4: Remove file.
4245         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_* and HAVE_*
4246         variables for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
4247         Don't initialize GNULIB_MATHL.
4248         * modules/acosl: New file.
4249         * modules/asinl: New file.
4250         * modules/atanl: New file.
4251         * modules/cosl: New file.
4252         * modules/expl: New file.
4253         * modules/logl: New file.
4254         * modules/sinl: New file.
4255         * modules/sqrtl: New file.
4256         * modules/tanl: New file.
4257         * modules/math (Makefile.am): Substitute GNULIB_* and HAVE_* variables
4258         for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl. Don't
4259         substitute GNULIB_MATHL.
4260         * modules/mathl: Rewritten.
4261         * doc/posix-functions/acosl.texi: Mention the 'acosl' module.
4262         * doc/posix-functions/asinl.texi: Mention the 'asinl' module.
4263         * doc/posix-functions/atanl.texi: Mention the 'atanl' module.
4264         * doc/posix-functions/cosl.texi: Mention the 'cosl' module.
4265         * doc/posix-functions/expl.texi: Mention the 'expl' module.
4266         * doc/posix-functions/logl.texi: Mention the 'logl' module.
4267         * doc/posix-functions/sinl.texi: Mention the 'sinl' module.
4268         * doc/posix-functions/sqrtl.texi: Mention the 'sqrtl' module.
4269         * doc/posix-functions/tanl.texi: Mention the 'tanl' module.
4270
4271 2010-01-18  Bruno Haible  <bruno@clisp.org>
4272
4273         sqrt: Make gl_FUNC_SQRT requirable.
4274         * m4/sqrt.m4: New file.
4275         * modules/sqrt (Files): Add it.
4276         (configure.ac): Invoke gl_FUNC_SQRT.
4277
4278 2010-01-18  Bruno Haible  <bruno@clisp.org>
4279
4280         New modules for common <math.h> functions.
4281         * m4/mathfunc.m4: New file.
4282         * modules/acos: New file.
4283         * modules/asin: New file.
4284         * modules/atan: New file.
4285         * modules/atan2: New file.
4286         * modules/cbrt: New file.
4287         * modules/copysign: New file.
4288         * modules/cos: New file.
4289         * modules/cosh: New file.
4290         * modules/erf: New file.
4291         * modules/erfc: New file.
4292         * modules/exp: New file.
4293         * modules/fabs: New file.
4294         * modules/fmod: New file.
4295         * modules/hypot: New file.
4296         * modules/j0: New file.
4297         * modules/j1: New file.
4298         * modules/jn: New file.
4299         * modules/ldexp: New file.
4300         * modules/lgamma: New file.
4301         * modules/log: New file.
4302         * modules/log10: New file.
4303         * modules/log1p: New file.
4304         * modules/logb: New file.
4305         * modules/modf: New file.
4306         * modules/nextafter: New file.
4307         * modules/pow: New file.
4308         * modules/remainder: New file.
4309         * modules/rint: New file.
4310         * modules/sin: New file.
4311         * modules/sinh: New file.
4312         * modules/sqrt: New file.
4313         * modules/tan: New file.
4314         * modules/tanh: New file.
4315         * modules/y0: New file.
4316         * modules/y1: New file.
4317         * modules/yn: New file.
4318         * doc/posix-functions/acos.texi: Mention the 'acos' module.
4319         * doc/posix-functions/asin.texi: Mention the 'asin' module.
4320         * doc/posix-functions/atan.texi: Mention the 'atan' module.
4321         * doc/posix-functions/atan2.texi: Mention the 'atan2' module.
4322         * doc/posix-functions/cbrt.texi: Mention the 'cbrt' module.
4323         * doc/posix-functions/copysign.texi: Mention the 'copysign' module.
4324         * doc/posix-functions/cos.texi: Mention the 'cos' module.
4325         * doc/posix-functions/cosh.texi: Mention the 'cosh' module.
4326         * doc/posix-functions/erf.texi: Mention the 'erf' module.
4327         * doc/posix-functions/erfc.texi: Mention the 'erfc' module.
4328         * doc/posix-functions/exp.texi: Mention the 'exp' module.
4329         * doc/posix-functions/fabs.texi: Mention the 'fabs' module.
4330         * doc/posix-functions/fmod.texi: Mention the 'fmod' module.
4331         * doc/posix-functions/hypot.texi: Mention the 'hypot' module.
4332         * doc/posix-functions/j0.texi: Mention the 'j0' module.
4333         * doc/posix-functions/j1.texi: Mention the 'j1' module.
4334         * doc/posix-functions/jn.texi: Mention the 'jn' module.
4335         * doc/posix-functions/ldexp.texi: Mention the 'ldexp' module.
4336         * doc/posix-functions/lgamma.texi: Mention the 'lgamma' module.
4337         * doc/posix-functions/log.texi: Mention the 'log' module.
4338         * doc/posix-functions/log10.texi: Mention the 'log10' module.
4339         * doc/posix-functions/log1p.texi: Mention the 'log1p' module.
4340         * doc/posix-functions/logb.texi: Mention the 'logb' module.
4341         * doc/posix-functions/modf.texi: Mention the 'modf' module.
4342         * doc/posix-functions/nextafter.texi: Mention the 'nextafter' module.
4343         * doc/posix-functions/pow.texi: Mention the 'pow' module.
4344         * doc/posix-functions/remainder.texi: Mention the 'remainder' module.
4345         * doc/posix-functions/rint.texi: Mention the 'rint' module.
4346         * doc/posix-functions/sin.texi: Mention the 'sin' module.
4347         * doc/posix-functions/sinh.texi: Mention the 'sinh' module.
4348         * doc/posix-functions/sqrt.texi: Mention the 'sqrt' module.
4349         * doc/posix-functions/tan.texi: Mention the 'tan' module.
4350         * doc/posix-functions/tanh.texi: Mention the 'tanh' module.
4351         * doc/posix-functions/y0.texi: Mention the 'y0' module.
4352         * doc/posix-functions/y1.texi: Mention the 'y1' module.
4353         * doc/posix-functions/yn.texi: Mention the 'yn' module.
4354
4355 2010-01-18  Jim Meyering  <meyering@redhat.com>
4356
4357         ignore-value: relax license to LGPLv2+
4358         * modules/ignore-value (License): Relax to LGPLv2+.
4359
4360         getdate: don't leak when TZ contains two or more '"'s
4361         * lib/getdate.y (get_date): Don't leak a copy of TZ for each
4362         double quote in TZ after the first one.
4363
4364         readtokens: do not leak internal token_lengths buffer
4365         * lib/readtokens.c (readtokens): Free the local, lengths,
4366         when the supplied "token_lengths" parameter is NULL.
4367
4368 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4369
4370         Fix a couple of missing LIBTHREAD link failures on AIX.
4371         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add
4372         $(LIBTHREAD).
4373         * modules/strsignal-tests (test_strsignal_LDADD): Likewise.
4374
4375         Link test-poll against INET_PTON_LIB.
4376         * modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
4377         for inet_pton on Solaris 10.
4378
4379 2010-01-17  Bruno Haible  <bruno@clisp.org>
4380
4381         unistdio/*-sprintf: Fix typo in module description.
4382         * modules/unistdio/u8-sprintf (Depends-on): Fix typo.
4383         * modules/unistdio/u8-u8-sprintf (Depends-on): Likewise.
4384         * modules/unistdio/u16-sprintf (Depends-on): Likewise.
4385         * modules/unistdio/u16-u16-sprintf (Depends-on): Likewise.
4386         * modules/unistdio/u32-sprintf (Depends-on): Likewise.
4387         * modules/unistdio/u32-u32-sprintf (Depends-on): Likewise.
4388         * modules/unistdio/ulc-sprintf (Depends-on): Likewise.
4389         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4390
4391 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4392
4393         gnulib-tool: fix filelist for AIX, HP-UX ksh.
4394         * gnulib-tool (func_filter_filelist): Do not quote possibly-empty
4395         variables in shell case patterns, for AIX and HP-UX ksh.
4396
4397         Split large sed scripts, for HP-UX sed.
4398         * modules/stdio: Split sed scripts around 50 sed commands,
4399         to avoid HP-UX limit of 99 commands, in the near future.
4400         * modules/string: Likewise.
4401         * modules/unistd: Likewise.
4402
4403         gnulib-tool: avoid writing in the current directory.
4404         * gnulib-tool (func_emit_lib_Makefile_am)
4405         (func_emit_tests_Makefile_am): Put temporary files in $tmp,
4406         not in the current directory, so concurrent gnulib-tool
4407         instances do not interfere.
4408
4409 2010-01-16  Jim Meyering  <meyering@redhat.com>
4410
4411         doc: update users.txt
4412         * users.txt: Add grep.
4413         (diffutils, gzip): Update URLs.
4414
4415 2010-01-12  Bruno Haible  <bruno@clisp.org>
4416
4417         posix_spawn: Avoid test failure on Cygwin.
4418         * tests/test-posix_spawn3.c (DATA_FILENAME) [CYGWIN]: Use less risky
4419         characters.
4420         Reported by Simon Josefsson.
4421
4422 2010-01-12  Bruno Haible  <bruno@clisp.org>
4423
4424         * tests/test-cond.c (main): When skipping the test, show the reason.
4425
4426 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4427
4428         * lib/striconv.c (str_cd_iconv): Avoid if before free.
4429
4430 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4431
4432         * top/maint.mk (VC_LIST_EXCEPT): Filter list through
4433         VC_LIST_ALWAYS_EXCLUDE_REGEX.
4434
4435 2010-01-12  Eric Blake  <ebb9@byu.net>
4436
4437         build: guarantee AS_VAR_IF
4438         * m4/warnings.m4 (gl_WARN_ADD): Use autoconf name.
4439         (gl_AS_VAR_IF): Move...
4440         * m4/gnulib-common.m4 (AS_VAR_IF): ...here.
4441         Reported by Simon Josefsson.
4442
4443 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4444
4445         * lib/stdio.in.h: Fix typo.
4446
4447 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4448
4449         * m4/gc.m4: Check if linking to libgcrypt also needs linking to
4450         libgpg-error.
4451
4452 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4453
4454         * tests/test-xalloc-die.sh: Use $EXEEXT.
4455
4456 2010-01-12  Simon Josefsson  <simon@josefsson.org>
4457             Bruno Haible  <bruno@clisp.org>
4458
4459         getlogin, getlogin_r: Avoid test failure.
4460         * tests/test-getlogin.c: Include <stdio.h>.
4461         (main): Skip the test when the function fails because stdin is not a
4462         tty.
4463         * tests/test-getlogin_r.c: Include <stdio.h>.
4464         (main): Skip the test when the function fails because stdin is not a
4465         tty.
4466
4467 2010-01-11  Eric Blake  <ebb9@byu.net>
4468
4469         tests: avoid more large file warnings
4470         * tests/test-fflush.c: Avoid warning about ftell use.
4471         * tests/test-fseek.c: Avoid warning about fseek use.
4472
4473 2010-01-10  Bruno Haible  <bruno@clisp.org>
4474
4475         nproc: Work better on Linux when /proc and /sys are not mounted.
4476         * lib/nproc.c (num_processors): Use num_processors_via_affinity_mask ()
4477         as lower bound when, on glibc/Linux systems,
4478         sysconf (_SC_NPROCESSORS_CONF) returns 1.
4479         Suggested by Pádraig Brady <P@draigbrady.com>.
4480         Reported by Dmitry V. Levin <ldv@altlinux.org>.
4481
4482         nproc: Refactor.
4483         * lib/nproc.c (num_processors_via_affinity_mask): New function,
4484         extracted from num_processors.
4485         (num_processors): Call it.
4486
4487 2010-01-11  Jim Meyering  <meyering@redhat.com>
4488
4489         utimecmp: avoid new warning from upcoming gcc-4.5.0
4490         * lib/utimecmp.c (BILLION): Define using #define rather than an
4491         anonymous enum, to placate upcoming gcc-4.5.0's -Wenum-compare.
4492
4493 2010-01-11  Eric Blake  <ebb9@byu.net>
4494
4495         math: add portability warnings for classification macros
4496         * modules/math (Depends-on): Add warn-on-use.
4497         (Makefile.am): Provide new substitutions.
4498         * m4/math_h.m4 (gl_MATH_H): Require inline.
4499         * lib/math.in.h (_GL_WARN_REAL_FLOATING_DECL)
4500         (_GL_WARN_REAL_FLOATING_IMPL): New helper macros.
4501         (isfinite, isinf, isnan, signbit) [GNULIB_POSIXCHECK]: Use them to
4502         implement warnings.
4503
4504         unistd: warn on use of environ without module
4505         * modules/unistd (Depends-on): Add warn-on-use.
4506         (Makefile.am): Provide new substitutions.
4507         * m4/unistd_h.m4 (gl_UNISTD_H): Check for inline and environ.
4508         * lib/unistd.in.h (environ): Wrap with a warning helper function.
4509
4510         stdio: warn on suspicious uses
4511         * modules/stdio (Depends-on): Add warn-on-use.
4512         (Makefile.am): Provide new substitutions.
4513         * m4/stdio_h.m4 (gl_STDIO_H): Check for inline, ftello, and
4514         fseeko.
4515         * lib/stdio.in.h (gets): Always warn on use.
4516         (fseek, ftell): Adjust when warnings are issued, and honor
4517         _GL_NO_LARGE_FILES as a way to silence the warning.
4518         * tests/test-fpurge.c [!GNULIB_FSEEK]: Use new means to squelch
4519         any warning about large file offsets.
4520         * tests/test-freadable.c [!GNULIB_FSEEK]: Likewise.
4521         * tests/test-freading.c [!GNULIB_FSEEK]: Likewise.
4522         * tests/test-fseeko.c [!GNULIB_FSEEK]: Likewise.
4523         * tests/test-ftell.c [!GNULIB_FSEEK]: Likewise.
4524         * tests/test-ftello.c [!GNULIB_FSEEK]: Likewise.
4525         * tests/test-fwritable.c [!GNULIB_FSEEK]: Likewise.
4526         * tests/test-fwriting.c [!GNULIB_FSEEK]: Likewise.
4527         * tests/test-getopt.c [!GNULIB_FTELL]: Likewise.
4528
4529         warn-on-use: new module
4530         * modules/warn-on-use: New file.
4531         * build-aux/warn-on-use.h: Likewise.
4532         * m4/warn-on-use.m4: Likewise.
4533         * MODULES.html.sh (Support for building): Mention it.
4534
4535 2010-01-10  Bruno Haible  <bruno@clisp.org>
4536
4537         Tests for module 'unistr/u32-strdup'.
4538         * modules/unistr/u32-strdup-tests: New file.
4539         * tests/unistr/test-u32-strdup.c: New file.
4540
4541         Tests for module 'unistr/u16-strdup'.
4542         * modules/unistr/u16-strdup-tests: New file.
4543         * tests/unistr/test-u16-strdup.c: New file.
4544
4545         Tests for module 'unistr/u8-strdup'.
4546         * modules/unistr/u8-strdup-tests: New file.
4547         * tests/unistr/test-u8-strdup.c: New file.
4548         * tests/unistr/test-strdup.h: New file.
4549
4550         Tests for module 'unistr/u32-strncmp'.
4551         * modules/unistr/u32-strncmp-tests: New file.
4552         * tests/unistr/test-u32-strncmp.c: New file.
4553
4554         Tests for module 'unistr/u16-strncmp'.
4555         * modules/unistr/u16-strncmp-tests: New file.
4556         * tests/unistr/test-u16-strncmp.c: New file.
4557
4558         Tests for module 'unistr/u8-strncmp'.
4559         * modules/unistr/u8-strncmp-tests: New file.
4560         * tests/unistr/test-u8-strncmp.c: New file.
4561         * tests/unistr/test-strncmp.h: New file.
4562
4563         Tests for module 'unistr/u32-strcoll'.
4564         * modules/unistr/u32-strcoll-tests: New file.
4565         * tests/unistr/test-u32-strcoll.c: New file.
4566
4567         Tests for module 'unistr/u16-strcoll'.
4568         * modules/unistr/u16-strcoll-tests: New file.
4569         * tests/unistr/test-u16-strcoll.c: New file.
4570
4571         Tests for module 'unistr/u8-strcoll'.
4572         * modules/unistr/u8-strcoll-tests: New file.
4573         * tests/unistr/test-u8-strcoll.c: New file.
4574
4575         Tests for module 'unistr/u32-strcmp'.
4576         * modules/unistr/u32-strcmp-tests: New file.
4577         * tests/unistr/test-u32-strcmp.c: New file.
4578         * tests/unistr/test-u32-strcmp.h: New file.
4579
4580         Tests for module 'unistr/u16-strcmp'.
4581         * modules/unistr/u16-strcmp-tests: New file.
4582         * tests/unistr/test-u16-strcmp.c: New file.
4583         * tests/unistr/test-u16-strcmp.h: New file.
4584
4585         Tests for module 'unistr/u8-strcmp'.
4586         * modules/unistr/u8-strcmp-tests: New file.
4587         * tests/unistr/test-u8-strcmp.c: New file.
4588         * tests/unistr/test-u8-strcmp.h: New file.
4589         * tests/unistr/test-strcmp.h: New file.
4590
4591         Tests for module 'unistr/u32-strncat'.
4592         * modules/unistr/u32-strncat-tests: New file.
4593         * tests/unistr/test-u32-strncat.c: New file.
4594
4595         Tests for module 'unistr/u16-strncat'.
4596         * modules/unistr/u16-strncat-tests: New file.
4597         * tests/unistr/test-u16-strncat.c: New file.
4598
4599         Tests for module 'unistr/u8-strncat'.
4600         * modules/unistr/u8-strncat-tests: New file.
4601         * tests/unistr/test-u8-strncat.c: New file.
4602         * tests/unistr/test-strncat.h: New file.
4603
4604         Tests for module 'unistr/u32-strcat'.
4605         * modules/unistr/u32-strcat-tests: New file.
4606         * tests/unistr/test-u32-strcat.c: New file.
4607
4608         Tests for module 'unistr/u16-strcat'.
4609         * modules/unistr/u16-strcat-tests: New file.
4610         * tests/unistr/test-u16-strcat.c: New file.
4611
4612         Tests for module 'unistr/u8-strcat'.
4613         * modules/unistr/u8-strcat-tests: New file.
4614         * tests/unistr/test-u8-strcat.c: New file.
4615         * tests/unistr/test-strcat.h: New file.
4616
4617         Tests for module 'unistr/u32-stpncpy'.
4618         * modules/unistr/u32-stpncpy-tests: New file.
4619         * tests/unistr/test-u32-stpncpy.c: New file.
4620
4621         Tests for module 'unistr/u16-stpncpy'.
4622         * modules/unistr/u16-stpncpy-tests: New file.
4623         * tests/unistr/test-u16-stpncpy.c: New file.
4624
4625         Tests for module 'unistr/u8-stpncpy'.
4626         * modules/unistr/u8-stpncpy-tests: New file.
4627         * tests/unistr/test-u8-stpncpy.c: New file.
4628         * tests/unistr/test-stpncpy.h: New file.
4629
4630         Tests for module 'unistr/u32-strncpy'.
4631         * modules/unistr/u32-strncpy-tests: New file.
4632         * tests/unistr/test-u32-strncpy.c: New file.
4633
4634         Tests for module 'unistr/u16-strncpy'.
4635         * modules/unistr/u16-strncpy-tests: New file.
4636         * tests/unistr/test-u16-strncpy.c: New file.
4637
4638         Tests for module 'unistr/u8-strncpy'.
4639         * modules/unistr/u8-strncpy-tests: New file.
4640         * tests/unistr/test-u8-strncpy.c: New file.
4641         * tests/unistr/test-strncpy.h: New file.
4642
4643         Tests for module 'unistr/u32-stpcpy'.
4644         * modules/unistr/u32-stpcpy-tests: New file.
4645         * tests/unistr/test-u32-stpcpy.c: New file.
4646
4647         Tests for module 'unistr/u16-stpcpy'.
4648         * modules/unistr/u16-stpcpy-tests: New file.
4649         * tests/unistr/test-u16-stpcpy.c: New file.
4650
4651         Tests for module 'unistr/u8-stpcpy'.
4652         * modules/unistr/u8-stpcpy-tests: New file.
4653         * tests/unistr/test-u8-stpcpy.c: New file.
4654         * tests/unistr/test-stpcpy.h: New file.
4655
4656         Tests for module 'unistr/u32-strcpy'.
4657         * modules/unistr/u32-strcpy-tests: New file.
4658         * tests/unistr/test-u32-strcpy.c: New file.
4659
4660         Tests for module 'unistr/u16-strcpy'.
4661         * modules/unistr/u16-strcpy-tests: New file.
4662         * tests/unistr/test-u16-strcpy.c: New file.
4663
4664         Tests for module 'unistr/u8-strcpy'.
4665         * modules/unistr/u8-strcpy-tests: New file.
4666         * tests/unistr/test-u8-strcpy.c: New file.
4667         * tests/unistr/test-strcpy.h: New file.
4668
4669         Tests for module 'unistr/u32-strnlen'.
4670         * modules/unistr/u32-strnlen-tests: New file.
4671         * tests/unistr/test-u32-strnlen.c: New file.
4672
4673         Tests for module 'unistr/u16-strnlen'.
4674         * modules/unistr/u16-strnlen-tests: New file.
4675         * tests/unistr/test-u16-strnlen.c: New file.
4676
4677         Tests for module 'unistr/u8-strnlen'.
4678         * modules/unistr/u8-strnlen-tests: New file.
4679         * tests/unistr/test-u8-strnlen.c: New file.
4680         * tests/unistr/test-strnlen.h: New file.
4681
4682         Tests for module 'unistr/u32-strlen'.
4683         * modules/unistr/u32-strlen-tests: New file.
4684         * tests/unistr/test-u32-strlen.c: New file.
4685
4686         Tests for module 'unistr/u16-strlen'.
4687         * modules/unistr/u16-strlen-tests: New file.
4688         * tests/unistr/test-u16-strlen.c: New file.
4689
4690         Tests for module 'unistr/u8-strlen'.
4691         * modules/unistr/u8-strlen-tests: New file.
4692         * tests/unistr/test-u8-strlen.c: New file.
4693
4694         Tests for module 'unistr/u32-prev'.
4695         * modules/unistr/u32-prev-tests: New file.
4696         * tests/unistr/test-u32-prev.c: New file.
4697
4698         Tests for module 'unistr/u16-prev'.
4699         * modules/unistr/u16-prev-tests: New file.
4700         * tests/unistr/test-u16-prev.c: New file.
4701
4702         Tests for module 'unistr/u8-prev'.
4703         * modules/unistr/u8-prev-tests: New file.
4704         * tests/unistr/test-u8-prev.c: New file.
4705
4706         Tests for module 'unistr/u32-next'.
4707         * modules/unistr/u32-next-tests: New file.
4708         * tests/unistr/test-u32-next.c: New file.
4709
4710         Tests for module 'unistr/u16-next'.
4711         * modules/unistr/u16-next-tests: New file.
4712         * tests/unistr/test-u16-next.c: New file.
4713
4714         Tests for module 'unistr/u8-next'.
4715         * modules/unistr/u8-next-tests: New file.
4716         * tests/unistr/test-u8-next.c: New file.
4717
4718         Tests for module 'unistr/u32-strmbtouc'.
4719         * modules/unistr/u32-strmbtouc-tests: New file.
4720         * tests/unistr/test-u32-strmbtouc.c: New file.
4721
4722         Tests for module 'unistr/u16-strmbtouc'.
4723         * modules/unistr/u16-strmbtouc-tests: New file.
4724         * tests/unistr/test-u16-strmbtouc.c: New file.
4725
4726         Tests for module 'unistr/u8-strmbtouc'.
4727         * modules/unistr/u8-strmbtouc-tests: New file.
4728         * tests/unistr/test-u8-strmbtouc.c: New file.
4729
4730         Tests for module 'unistr/u32-strmblen'.
4731         * modules/unistr/u32-strmblen-tests: New file.
4732         * tests/unistr/test-u32-strmblen.c: New file.
4733
4734         Tests for module 'unistr/u16-strmblen'.
4735         * modules/unistr/u16-strmblen-tests: New file.
4736         * tests/unistr/test-u16-strmblen.c: New file.
4737
4738         Tests for module 'unistr/u8-strmblen'.
4739         * modules/unistr/u8-strmblen-tests: New file.
4740         * tests/unistr/test-u8-strmblen.c: New file.
4741
4742         Tests for module 'unistr/u32-cpy-alloc'.
4743         * modules/unistr/u32-cpy-alloc-tests: New file.
4744         * tests/unistr/test-u32-cpy-alloc.c: New file.
4745
4746         Tests for module 'unistr/u16-cpy-alloc'.
4747         * modules/unistr/u16-cpy-alloc-tests: New file.
4748         * tests/unistr/test-u16-cpy-alloc.c: New file.
4749
4750         Tests for module 'unistr/u8-cpy-alloc'.
4751         * modules/unistr/u8-cpy-alloc-tests: New file.
4752         * tests/unistr/test-u8-cpy-alloc.c: New file.
4753         * tests/unistr/test-cpy-alloc.h: New file.
4754
4755         Tests for module 'unistr/u32-mbsnlen'.
4756         * modules/unistr/u32-mbsnlen-tests: New file.
4757         * tests/unistr/test-u32-mbsnlen.c: New file.
4758
4759         Tests for module 'unistr/u16-mbsnlen'.
4760         * modules/unistr/u16-mbsnlen-tests: New file.
4761         * tests/unistr/test-u16-mbsnlen.c: New file.
4762
4763         Tests for module 'unistr/u8-mbsnlen'.
4764         * modules/unistr/u8-mbsnlen-tests: New file.
4765         * tests/unistr/test-u8-mbsnlen.c: New file.
4766
4767         Tests for module 'unistr/u32-chr'.
4768         * modules/unistr/u32-chr-tests: New file.
4769         * tests/unistr/test-u32-chr.c: New file.
4770
4771         Tests for module 'unistr/u16-chr'.
4772         * modules/unistr/u16-chr-tests: New file.
4773         * tests/unistr/test-u16-chr.c: New file.
4774
4775         Tests for module 'unistr/u8-chr'.
4776         * modules/unistr/u8-chr-tests: New file.
4777         * tests/unistr/test-u8-chr.c: New file.
4778         * tests/unistr/test-chr.h: New file, based on tests/test-memchr.c.
4779
4780         Tests for module 'unistr/u32-cmp2'.
4781         * modules/unistr/u32-cmp2-tests: New file.
4782         * tests/unistr/test-u32-cmp2.c: New file.
4783
4784         Tests for module 'unistr/u16-cmp2'.
4785         * modules/unistr/u16-cmp2-tests: New file.
4786         * tests/unistr/test-u16-cmp2.c: New file.
4787
4788         Tests for module 'unistr/u8-cmp2'.
4789         * modules/unistr/u8-cmp2-tests: New file.
4790         * tests/unistr/test-u8-cmp2.c: New file.
4791         * tests/unistr/test-cmp2.h: New file, based on tests/unistr/test-cmp.h.
4792
4793         Tests for module 'unistr/u32-cmp'.
4794         * modules/unistr/u32-cmp-tests: New file.
4795         * tests/unistr/test-u32-cmp.c: New file.
4796
4797         Tests for module 'unistr/u16-cmp'.
4798         * modules/unistr/u16-cmp-tests: New file.
4799         * tests/unistr/test-u16-cmp.c: New file.
4800
4801         Tests for module 'unistr/u8-cmp'.
4802         * modules/unistr/u8-cmp-tests: New file.
4803         * tests/unistr/test-u8-cmp.c: New file.
4804         * tests/unistr/test-cmp.h: New file, based on tests/test-memcmp.c.
4805
4806         Tests for module 'unistr/u32-set'.
4807         * modules/unistr/u32-set-tests: New file.
4808         * tests/unistr/test-u32-set.c: New file.
4809
4810         Tests for module 'unistr/u16-set'.
4811         * modules/unistr/u16-set-tests: New file.
4812         * tests/unistr/test-u16-set.c: New file.
4813
4814         Tests for module 'unistr/u8-set'.
4815         * modules/unistr/u8-set-tests: New file.
4816         * tests/unistr/test-u8-set.c: New file.
4817         * tests/unistr/test-set.h: New file.
4818
4819         Tests for module 'unistr/u32-move'.
4820         * modules/unistr/u32-move-tests: New file.
4821         * tests/unistr/test-u32-move.c: New file.
4822
4823         Tests for module 'unistr/u16-move'.
4824         * modules/unistr/u16-move-tests: New file.
4825         * tests/unistr/test-u16-move.c: New file.
4826
4827         Tests for module 'unistr/u8-move'.
4828         * modules/unistr/u8-move-tests: New file.
4829         * tests/unistr/test-u8-move.c: New file.
4830         * tests/unistr/test-move.h: New file.
4831
4832         Tests for module 'unistr/u32-cpy'.
4833         * modules/unistr/u32-cpy-tests: New file.
4834         * tests/unistr/test-u32-cpy.c: New file.
4835
4836         Tests for module 'unistr/u16-cpy'.
4837         * modules/unistr/u16-cpy-tests: New file.
4838         * tests/unistr/test-u16-cpy.c: New file.
4839
4840         Tests for module 'unistr/u8-cpy'.
4841         * modules/unistr/u8-cpy-tests: New file.
4842         * tests/unistr/test-u8-cpy.c: New file.
4843         * tests/unistr/test-cpy.h: New file.
4844
4845 2010-01-09  Bruno Haible  <bruno@clisp.org>
4846
4847         Tests for module 'unistr/u32-uctomb'.
4848         * modules/unistr/u32-uctomb-tests: New file.
4849         * tests/unistr/test-u32-uctomb.c: New file.
4850
4851         Tests for module 'unistr/u16-uctomb'.
4852         * modules/unistr/u16-uctomb-tests: New file.
4853         * tests/unistr/test-u16-uctomb.c: New file.
4854
4855         Tests for module 'unistr/u8-uctomb'.
4856         * modules/unistr/u8-uctomb-tests: New file.
4857         * tests/unistr/test-u8-uctomb.c: New file.
4858
4859         Tests for module 'unistr/u32-mbtoucr'.
4860         * modules/unistr/u32-mbtoucr-tests: New file.
4861         * tests/unistr/test-u32-mbtoucr.c: New file.
4862
4863         Tests for module 'unistr/u16-mbtoucr'.
4864         * modules/unistr/u16-mbtoucr-tests: New file.
4865         * tests/unistr/test-u16-mbtoucr.c: New file.
4866
4867         Tests for module 'unistr/u8-mbtoucr'.
4868         * modules/unistr/u8-mbtoucr-tests: New file.
4869         * tests/unistr/test-u8-mbtoucr.c: New file.
4870
4871         Tests for module 'unistr/u32-mbtouc'.
4872         * modules/unistr/u32-mbtouc-tests: New file.
4873         * tests/unistr/test-u32-mbtouc.c: New file.
4874
4875         Tests for module 'unistr/u16-mbtouc'.
4876         * modules/unistr/u16-mbtouc-tests: New file.
4877         * tests/unistr/test-u16-mbtouc.c: New file.
4878
4879         Tests for module 'unistr/u8-mbtouc'.
4880         * modules/unistr/u8-mbtouc-tests: New file.
4881         * tests/unistr/test-u8-mbtouc.c: New file.
4882
4883         Tests for module 'unistr/u32-mbtouc-unsafe'.
4884         * modules/unistr/u32-mbtouc-unsafe-tests: New file.
4885         * tests/unistr/test-u32-mbtouc-unsafe.c: New file.
4886         * tests/unistr/test-u32-mbtouc.h: New file.
4887
4888         Tests for module 'unistr/u16-mbtouc-unsafe'.
4889         * modules/unistr/u16-mbtouc-unsafe-tests: New file.
4890         * tests/unistr/test-u16-mbtouc-unsafe.c: New file.
4891         * tests/unistr/test-u16-mbtouc.h: New file.
4892
4893         Tests for module 'unistr/u8-mbtouc-unsafe'.
4894         * modules/unistr/u8-mbtouc-unsafe-tests: New file.
4895         * tests/unistr/test-u8-mbtouc-unsafe.c: New file.
4896         * tests/unistr/test-u8-mbtouc.h: New file.
4897
4898         Tests for module 'unistr/u32-mblen'.
4899         * modules/unistr/u32-mblen-tests: New file.
4900         * tests/unistr/test-u32-mblen.c: New file.
4901
4902         Tests for module 'unistr/u16-mblen'.
4903         * modules/unistr/u16-mblen-tests: New file.
4904         * tests/unistr/test-u16-mblen.c: New file.
4905
4906         Tests for module 'unistr/u8-mblen'.
4907         * modules/unistr/u8-mblen-tests: New file.
4908         * tests/unistr/test-u8-mblen.c: New file.
4909
4910         Tests for module 'unistr/u32-to-u16'.
4911         * modules/unistr/u32-to-u16-tests: New file.
4912         * tests/unistr/test-u32-to-u16.c: New file.
4913
4914         Tests for module 'unistr/u32-to-u8'.
4915         * modules/unistr/u32-to-u8-tests: New file.
4916         * tests/unistr/test-u32-to-u8.c: New file.
4917
4918         Tests for module 'unistr/u16-to-u32'.
4919         * modules/unistr/u16-to-u32-tests: New file.
4920         * tests/unistr/test-u16-to-u32.c: New file.
4921
4922         Tests for module 'unistr/u16-to-u8'.
4923         * modules/unistr/u16-to-u8-tests: New file.
4924         * tests/unistr/test-u16-to-u8.c: New file.
4925
4926         Tests for module 'unistr/u8-to-u32'.
4927         * modules/unistr/u8-to-u32-tests: New file.
4928         * tests/unistr/test-u8-to-u32.c: New file.
4929
4930         Tests for module 'unistr/u8-to-u16'.
4931         * modules/unistr/u8-to-u16-tests: New file.
4932         * tests/unistr/test-u8-to-u16.c: New file.
4933
4934         Tests for module 'unistr/u32-check'.
4935         * modules/unistr/u32-check-tests: New file.
4936         * tests/unistr/test-u32-check.c: New file.
4937
4938         Tests for module 'unistr/u16-check'.
4939         * modules/unistr/u16-check-tests: New file.
4940         * tests/unistr/test-u16-check.c: New file.
4941
4942         Tests for module 'unistr/u8-check'.
4943         * modules/unistr/u8-check-tests: New file.
4944         * tests/unistr/test-u8-check.c: New file.
4945
4946         * tests/unictype/test-categ_byname.c: Include <stdbool.h>.
4947         (category_equals): New function.
4948         (main): Add more tests.
4949         * modules/unictype/category-byname-tests (Depends-on): Add stdbool.
4950
4951         * tests/unictype/test-bidi_byname.c (main): Add more tests.
4952
4953 2010-01-10  Bruno Haible  <bruno@clisp.org>
4954
4955         unistr/u*-strcoll: Try harder to distinguish different strings.
4956         * lib/unistr/u-strcoll.h (FUNC): When sl1 and sl2 are the same,
4957         compare s1 and s2 to see if they are different.
4958
4959 2010-01-10  Bruno Haible  <bruno@clisp.org>
4960
4961         unistr/u*-stpncpy: Fix the return value.
4962         * lib/unistr.h (u8_stpncpy, u16_stpncpy, u32_stpncpy): Make the
4963         description of the return value consistent with stpncpy in glibc.
4964         * lib/unistr/u-stpncpy.h (FUNC): Return the pointer past the last
4965         written non-NUL unit.
4966
4967 2010-01-10  Bruno Haible  <bruno@clisp.org>
4968
4969         unistr/u*-next: Add missing dependencies.
4970         * modules/unistr/u8-next (Depends-on): Add unistr/u8-strmbtouc.
4971         * modules/unistr/u16-next (Depends-on): Add unistr/u16-strmbtouc.
4972         * modules/unistr/u32-next (Depends-on): Add unistr/u32-strmbtouc.
4973
4974 2010-01-10  Bruno Haible  <bruno@clisp.org>
4975
4976         unistr/u8-mbsnlen: Fix return value for incomplete character.
4977         * lib/unistr/u8-mbsnlen.c (u8_mbsnlen): Use u8_mbtoucr instead of
4978         u8_mblen.
4979         * modules/unistr/u8-mbsnlen (Depends-on): Add unistr/u8-mbtoucr.
4980         Remove unistr/u8-mblen.
4981         * lib/unistr/u16-mbsnlen.c (u16_mbsnlen): Use u16_mbtoucr instead of
4982         u16_mblen.
4983         * modules/unistr/u16-mbsnlen (Depends-on): Add unistr/u16-mbtoucr.
4984         Remove unistr/u16-mblen.
4985
4986 2010-01-10  Bruno Haible  <bruno@clisp.org>
4987
4988         wchar: Fix compilation error when <wchar.h> is used from coreutils.
4989         * lib/wchar.in.h: Treat __need_wint_t like __need_mbstate_t.
4990         Reported by Brian Gough <bjg@gnu.org> and
4991         Chris Clayton <chris2553@googlemail.com> via
4992         Mike Frysinger <vapier@gentoo.org> and Jim Meyering <jim@meyering.net>.
4993
4994 2010-01-09  Bruno Haible  <bruno@clisp.org>
4995
4996         unistr/u16-to-u32: Reject invalid input.
4997         * lib/unistr/u16-to-u32.c (u16_to_u32): Call u16_mbtoucr instead of
4998         u16_mbtouc.
4999         * modules/unistr/u16-to-u32 (Depends-on): Add unistr/u16-mbtoucr.
5000         Remove unistr/u16-mbtouc.
5001
5002         unistr/u16-to-u8: Reject invalid input.
5003         * lib/unistr/u16-to-u8.c (u16_to_u8): Call u16_mbtoucr instead of
5004         u16_mbtouc.
5005         * modules/unistr/u16-to-u8 (Depends-on): Add unistr/u16-mbtoucr.
5006         Remove unistr/u16-mbtouc.
5007
5008         unistr/u8-to-u32: Reject invalid input.
5009         * lib/unistr/u8-to-u32.c (u8_to_u32): Call u8_mbtoucr instead of
5010         u8_mbtouc.
5011         * modules/unistr/u8-to-u32 (Depends-on): Add unistr/u8-mbtoucr.
5012         Remove unistr/u8-mbtouc.
5013
5014         unistr/u8-to-u16: Reject invalid input.
5015         * lib/unistr/u8-to-u16.c (u8_to_u16): Call u8_mbtoucr instead of
5016         u8_mbtouc.
5017         * modules/unistr/u8-to-u16 (Depends-on): Add unistr/u8-mbtoucr.
5018         Remove unistr/u8-mbtouc.
5019
5020 2010-01-09  Bruno Haible  <bruno@clisp.org>
5021
5022         Tests for module 'getlogin'.
5023         * modules/getlogin-tests: New file.
5024         * tests/test-getlogin.c: New file.
5025
5026         New module 'getlogin'.
5027         * lib/unistd.in.h (getlogin): New declaration.
5028         * lib/getlogin.c: New file.
5029         * m4/getlogin.m4: New file.
5030         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETLOGIN,
5031         HAVE_GETLOGIN.
5032         * modules/unistd (Makefile.am): Substitute GNULIB_GETLOGIN,
5033         HAVE_GETLOGIN.
5034         * modules/getlogin: New file.
5035         * doc/posix-functions/getlogin.texi: Mention the new module.
5036         Reported by John W. Eaton <jwe@gnu.org>.
5037
5038 2010-01-09  Bruno Haible  <bruno@clisp.org>
5039
5040         getlogin_r: Support for native Windows.
5041         * lib/getlogin_r.c: Include <windows.h>
5042         (getlogin_r): Implement for native Windows.
5043         * tests/test-getlogin_r.c (main): Also test with a huge buffer.
5044         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>
5045         via John W. Eaton <jwe@gnu.org>.
5046
5047 2010-01-09  Bruno Haible  <bruno@clisp.org>
5048
5049         getlogin_r: Small fixes.
5050         * lib/getlogin_r.c (getlogin_r): Don't set errno if the function
5051         succeeds.
5052         * m4/getlogin_r.m4 (gl_GETLOGIN_R): Require gl_USE_SYSTEM_EXTENSIONS
5053         before testing whether getlogin_r is declared. No need to set
5054         HAVE_DECL_GETLOGIN_R to 1.
5055         (gl_PREREQ_GETLOGIN_R): Don't check for the getlogin_r declaration.
5056
5057 2010-01-09  Bruno Haible  <bruno@clisp.org>
5058
5059         * lib/unistd.in.h (getlogin_r): Add comment.
5060
5061 2010-01-09  Bruno Haible  <bruno@clisp.org>
5062
5063         Tests for module 'getlogin_r'.
5064         * modules/getlogin_r-tests: New file.
5065         * tests/test-getlogin_r.c: New file.
5066
5067 2010-01-09  Jim Meyering  <meyering@redhat.com>
5068
5069         maint.mk: extend proper_name_utf8-vs-LIBICONV-checking rule
5070         * top/maint.mk (sc_proper_name_utf8_requires_ICONV): Adapt to work
5071         also when $(LIBICONV) is part of LDADD, rather than ${prog}_LDADD.
5072
5073 2010-01-08  Simon Josefsson  <simon@josefsson.org>
5074
5075         * lib/dup2.c (rpl_dup2): Improve comment.
5076
5077 2010-01-08  Eric Blake  <ebb9@byu.net>
5078
5079         maint.mk: allow packages to add makefile @@ exceptions
5080         * top/maint.mk (_makefile_at_at_check_exceptions): New hook.
5081         (sc_makefile_check): Rename...
5082         (sc_makefile_at_at_check): ...to this, and use hook.
5083
5084         dup2: work around mingw bug
5085         * lib/dup2.c (rpl_dup2): Sanitize return value on mingw.
5086         Reported by Simon Josefsson.
5087
5088 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
5089
5090         glob: Fix C++ compilation.
5091         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
5092         C++.
5093
5094 2010-01-07  Bruno Haible  <bruno@clisp.org>
5095
5096         Fix indentation of wctype.in.h, broken since 2007-01-06.
5097         * lib/wctype.in.h: Fix indentation of preprocessor directives.
5098
5099 2010-01-07  Bruno Haible  <bruno@clisp.org>
5100
5101         mbslen: Avoid collision with system function.
5102         * lib/string.in.h [MirBSD]: Include <wchar.h>.
5103         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
5104         * m4/mbslen.m4: New file.
5105         * modules/mbslen (Files): Add it.
5106         (configure.ac): Invoke gl_MBSLEN.
5107         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
5108         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
5109         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
5110         via Ian Beckwith <ianb@erislabs.net>.
5111
5112 2010-01-07  Bruno Haible  <bruno@clisp.org>
5113
5114         dirent: Document the last fix.
5115         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
5116
5117 2010-01-07  Bruno Haible  <bruno@clisp.org>
5118
5119         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
5120         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
5121         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
5122         va_list are defined.
5123         * doc/posix-headers/stdio.texi: Document the bug of missing types.
5124         Reported by Eric Blake.
5125
5126 2010-01-07  Bruno Haible  <bruno@clisp.org>
5127
5128         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
5129         * modules/xlist (Depends-on): Add 'list',
5130         * modules/xoset (Depends-on): Add 'oset'.
5131         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5132
5133 2010-01-07  Bruno Haible  <bruno@clisp.org>
5134
5135         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
5136         * doc/posix-functions/strncasecmp.texi: Likewise.
5137
5138 2010-01-07  Bruno Haible  <bruno@clisp.org>
5139
5140         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
5141
5142 2010-01-07  John W. Eaton  <jwe@octave.org>
5143
5144         wctype: allow C++ use
5145         * lib/wctype.in.h: Add extern "C" block for C++.
5146
5147 2010-01-06  Eric Blake  <ebb9@byu.net>
5148
5149         maint.mk: detect incorrect GFDL usage
5150         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
5151
5152 2010-01-06  Jim Meyering  <meyering@redhat.com>
5153         and Eric Blake  <ebb9@byu.net>
5154
5155         maint.mk: ignore multi-line copyright in NEWS
5156         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
5157
5158 2010-01-06  Eric Blake  <ebb9@byu.net>
5159
5160         select: add missing dependency
5161         * modules/select-tests (Depends-on): Move sockets dependency...
5162         * modules/select (Depends-on): ...here.
5163         Reported by Ian Beckwith.
5164
5165         doc: regenerate INSTALL
5166         * doc/INSTALL: Reflect recent autoconf update.
5167         * doc/INSTALL.ISO: Likewise.
5168         * doc/INSTALL.UTF-8: Likewise.
5169
5170         pread: fix compilation on glibc
5171         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
5172         Reported by Ralf Wildenhues.
5173
5174         dirent: fix test failure
5175         * lib/dirent.in.h (includes): Guarantee ino_t.
5176         Reported by Ralf Wildenhues.
5177
5178 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
5179
5180         linkat, renameat: avoid bad free
5181         * lib/at-func2.c (at_func2): Fix typo.
5182         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
5183
5184 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5185
5186         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
5187         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
5188         to avoid failure of symlink test later.
5189
5190 2010-01-06  Eric Blake  <ebb9@byu.net>
5191
5192         stdio, unistd: guarantee ssize_t
5193         * lib/unistd.in.h (includes): Ensure that types required by POSIX
5194         2008 are exposed when needed.
5195         * lib/stdio.in.h (includes): Likewise.
5196         Reported by Ralf Wildenhues.
5197
5198 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
5199
5200         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
5201         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
5202         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
5203
5204 2010-01-06  Jim Meyering  <meyering@redhat.com>
5205
5206         readtokens: this module *does* require xalloc.h
5207         It uses only functions that were omitted by the old syntax-check rule.
5208         * lib/readtokens.c: Include "xalloc.h" once again.
5209         * modules/readtokens (Depends-on): Add xalloc.
5210         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
5211
5212 2010-01-05  Eric Blake  <ebb9@byu.net>
5213
5214         maint: support 'make announcement' from a VPATH build
5215         * top/maint.mk (announcement): Look for correct NEWS file.
5216
5217 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
5218
5219         utimens (fdutimens): ignore a negative FD, per contract
5220         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
5221         when we have a valid file descriptor.  Otherwise, using a brand
5222         new glibc (with just-patched futimens that now fails with EBADF)
5223         would cause this function to fail with ENOSYS.
5224         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
5225         See also http://bugzilla.redhat.com/552320.
5226
5227 2010-01-05  Eric Blake  <ebb9@byu.net>
5228
5229         strcase: document what it provides
5230         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
5231         gnulib module.
5232         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
5233         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
5234
5235 2010-01-05  Jim Meyering  <meyering@redhat.com>
5236
5237         maint: remove useless inclusions of "xalloc.h"
5238         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
5239         * lib/readtokens.c: Likewise.
5240         * lib/same.c: Likewise.
5241         * modules/getloadavg (Depends-on): Remove xalloc.
5242         * modules/readtokens: Likewise.
5243         * modules/same: Likewise.
5244
5245         maint.mk: include 4 more function names in alloca.h-checking regexp
5246         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
5247         regexp.  Before, we would give a false-positive (saying alloca.h
5248         is included unnecessarily) when the only uses involved omitted symbols.
5249
5250         xalloc.h: use consistent formatting
5251         * lib/xalloc.h: Move declarations to start in the first column.
5252
5253 2010-01-05  Eric Blake  <ebb9@byu.net>
5254
5255         mkdir: avoid xalloc
5256         * lib/mkdir.c (includes): Drop unused header.
5257         Reported by John W. Eaton.
5258
5259 2010-01-04  Jim Meyering  <meyering@redhat.com>
5260
5261         nl_langinfo: avoid configure-time syntax error
5262         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
5263         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
5264         the empty string.  Don't let that provoke a shell syntax error.
5265
5266         regcomp, regexec, fnmatch: avoid array bounds read error
5267         * lib/regcomp.c (build_equiv_class): From glibc:
5268         Use only the low 24 bits of a findidx return value as an index
5269         into the weights array.  Patch by Ulrich Drepper:
5270         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
5271         * lib/regexec.c (check_node_accept_bytes): Likewise.
5272         * lib/fnmatch_loop.c (FCT): Likewise.
5273
5274         regcomp: skip collseq lookup when there are no rules
5275         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
5276         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
5277
5278         regcomp: recognize ill-formed { } expressions
5279         * lib/regcomp.c (parse_dup_op): From glibc:
5280         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
5281
5282         regcomp: fix typo in comment
5283         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
5284         s/satisfy/satisfies/.
5285
5286         regcomp: sync from glibc: remove dead store
5287         * lib/regcomp.c (duplicate_node_closure): Remove useless
5288         search_duplicated_node call and dead store.
5289
5290         regcomp: sync from glibc; always use nl_langinfo
5291         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
5292         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
5293         * modules/regex (Depends-on): Add nl_langinfo.
5294
5295 2010-01-04  Eric Blake  <ebb9@byu.net>
5296
5297         fdopendir: fix configure test
5298         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
5299
5300 2010-01-01  Bruno Haible  <bruno@clisp.org>
5301
5302         wchar: Remove unused configure check.
5303         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
5304
5305 2010-01-01  Eric Blake  <ebb9@byu.net>
5306
5307         headers: make check of system header explicit
5308         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
5309         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
5310         ourselves.
5311         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
5312         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
5313         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
5314         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
5315         internals.
5316         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
5317         missing.
5318         Suggested by Bruno Haible.
5319
5320 2010-01-01  Jim Meyering  <meyering@redhat.com>
5321
5322         ChangeLog: tweak to eliminate unnecessary copyright line
5323         * ChangeLog: Remove a copyright line that was mistakenly updated
5324         by today's update-copyright run.  Reported by Eric Blake.
5325
5326         test-update-copyright: don't let envvar setting cause test failure
5327         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
5328
5329 2010-01-01  Bruno Haible  <bruno@clisp.org>
5330
5331         localename: Avoid gcc warning.
5332         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
5333         function if it is not used.
5334
5335 2010-01-01  Jim Meyering  <meyering@redhat.com>
5336
5337         update nearly all FSF copyright year lists to include 2010
5338         Use the same procedure as for 2009, outlined in
5339         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
5340
5341         version-etc: set COPYRIGHT_YEAR to 2010
5342         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
5343
5344 2009-12-31  Eric Blake  <ebb9@byu.net>
5345
5346         doc: correct availability of cygwin 1.5.x getopt
5347         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
5348         variables.
5349         * doc/posix-functions/opterr.texi (opterr): Likewise.
5350         * doc/posix-functions/optind.texi (optind): Likewise.
5351         * doc/posix-functions/optopt.texi (optopt): Likewise.
5352         * doc/posix-functions/tzname.texi (tzname): Likewise.
5353
5354         openat: update maintainer
5355         * modules/openat (Maintainer): Add myself.
5356
5357         utimens: avoid shadowing warning
5358         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
5359         buffers into one, to avoid shadowing, as well as avoiding a
5360         redundant stat.
5361         Reported by Jim Meyering.
5362
5363         test-dup2: avoid compiler warning
5364         * tests/test-dup2.c (is_inheritable): Only define if used.
5365
5366 2010-01-01  Bruno Haible  <bruno@clisp.org>
5367
5368         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
5369         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
5370         defined, use wctomb instead of wcrtomb.
5371
5372 2010-01-01  Bruno Haible  <bruno@clisp.org>
5373
5374         iconv: Reject native Solaris iconv.
5375         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
5376         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
5377
5378 2009-12-31  Bruno Haible  <bruno@clisp.org>
5379
5380         * tests/test-signal.c (main): Remove test of 'SIG'.
5381
5382 2009-12-31  Bruno Haible  <bruno@clisp.org>
5383
5384         spawn: Fix incomplete fix.
5385         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
5386         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
5387         warnings for GNULIB_POSIXCHECK again.
5388         Reported by Eric Blake.
5389
5390 2009-12-31  Bruno Haible  <bruno@clisp.org>
5391
5392         Avoid namespace pollution on glibc systems.
5393         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
5394         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
5395         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
5396         glibc systems.
5397
5398 2009-12-31  Bruno Haible  <bruno@clisp.org>
5399
5400         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
5401         (gl_REPLACE_WCHAR_H): Turn into a no-op.
5402         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
5403         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
5404         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
5405         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
5406         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
5407
5408 2009-12-31  Bruno Haible  <bruno@clisp.org>
5409
5410         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
5411         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
5412         afterwards.
5413
5414 2009-12-31  Bruno Haible  <bruno@clisp.org>
5415
5416         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
5417         SYS_UTSNAME_H.
5418
5419 2009-12-31  Bruno Haible  <bruno@clisp.org>
5420
5421         spawn: Fix misapplied patch.
5422         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
5423         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
5424         warnings for GNULIB_POSIXCHECK.
5425
5426 2009-12-31  Bruno Haible  <bruno@clisp.org>
5427
5428         times: Update after sys_times changed.
5429         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
5430         * modules/times (Files): Add it.
5431         (configure.ac): Invoke gl_FUNC_TIMES.
5432
5433 2009-12-31  Bruno Haible  <bruno@clisp.org>
5434
5435         Use AC_C_INLINE where necessary.
5436         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
5437         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
5438         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
5439         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
5440         * m4/mbfile.m4 (gl_MBFILE): Likewise.
5441         * m4/mbiter.m4 (gl_MBITER): Likewise.
5442         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
5443         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
5444         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
5445         * modules/u64 (configure.ac): Likewise.
5446
5447 2009-12-31  Bruno Haible  <bruno@clisp.org>
5448
5449         Use AC_C_INLINE instead of module 'inline' where possible.
5450         * modules/inline (Description): Clarify purpose.
5451         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
5452         * modules/count-one-bits (Depends-on): Remove inline.
5453         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
5454         * modules/openat (Depends-on): Remove inline.
5455         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
5456         instead of depending on module 'inline'.
5457         * modules/filevercmp (Depends-on, configure.ac): Likewise.
5458         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
5459         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
5460         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
5461         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
5462         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
5463         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
5464         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
5465         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
5466         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
5467         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
5468         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
5469         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
5470         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
5471         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
5472         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
5473         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
5474         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
5475         Likewise.
5476         * modules/unictype/property-ascii-hex-digit (Depends-on,
5477         configure.ac): Likewise.
5478         * modules/unictype/property-bidi-arabic-digit (Depends-on,
5479         configure.ac): Likewise.
5480         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
5481         configure.ac): Likewise.
5482         * modules/unictype/property-bidi-block-separator (Depends-on,
5483         configure.ac): Likewise.
5484         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
5485         configure.ac): Likewise.
5486         * modules/unictype/property-bidi-common-separator (Depends-on,
5487         configure.ac): Likewise.
5488         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
5489         Likewise.
5490         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
5491         configure.ac): Likewise.
5492         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
5493         configure.ac): Likewise.
5494         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
5495         configure.ac): Likewise.
5496         * modules/unictype/property-bidi-european-digit (Depends-on,
5497         configure.ac): Likewise.
5498         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
5499         configure.ac): Likewise.
5500         * modules/unictype/property-bidi-left-to-right (Depends-on,
5501         configure.ac): Likewise.
5502         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
5503         configure.ac): Likewise.
5504         * modules/unictype/property-bidi-other-neutral (Depends-on,
5505         configure.ac): Likewise.
5506         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
5507         Likewise.
5508         * modules/unictype/property-bidi-segment-separator (Depends-on,
5509         configure.ac): Likewise.
5510         * modules/unictype/property-bidi-whitespace (Depends-on,
5511         configure.ac): Likewise.
5512         * modules/unictype/property-combining (Depends-on, configure.ac):
5513         Likewise.
5514         * modules/unictype/property-composite (Depends-on, configure.ac):
5515         Likewise.
5516         * modules/unictype/property-currency-symbol (Depends-on,
5517         configure.ac): Likewise.
5518         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
5519         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
5520         Likewise.
5521         * modules/unictype/property-default-ignorable-code-point (Depends-on,
5522         configure.ac): Likewise.
5523         * modules/unictype/property-deprecated (Depends-on, configure.ac):
5524         Likewise.
5525         * modules/unictype/property-diacritic (Depends-on, configure.ac):
5526         Likewise.
5527         * modules/unictype/property-extender (Depends-on, configure.ac):
5528         Likewise.
5529         * modules/unictype/property-format-control (Depends-on, configure.ac):
5530         Likewise.
5531         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
5532         Likewise.
5533         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
5534         Likewise.
5535         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
5536         Likewise.
5537         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
5538         Likewise.
5539         * modules/unictype/property-hyphen (Depends-on, configure.ac):
5540         Likewise.
5541         * modules/unictype/property-id-continue (Depends-on, configure.ac):
5542         Likewise.
5543         * modules/unictype/property-id-start (Depends-on, configure.ac):
5544         Likewise.
5545         * modules/unictype/property-ideographic (Depends-on, configure.ac):
5546         Likewise.
5547         * modules/unictype/property-ids-binary-operator (Depends-on,
5548         configure.ac): Likewise.
5549         * modules/unictype/property-ids-trinary-operator (Depends-on,
5550         configure.ac): Likewise.
5551         * modules/unictype/property-ignorable-control (Depends-on,
5552         configure.ac): Likewise.
5553         * modules/unictype/property-iso-control (Depends-on, configure.ac):
5554         Likewise.
5555         * modules/unictype/property-join-control (Depends-on, configure.ac):
5556         Likewise.
5557         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
5558         Likewise.
5559         * modules/unictype/property-line-separator (Depends-on, configure.ac):
5560         Likewise.
5561         * modules/unictype/property-logical-order-exception (Depends-on,
5562         configure.ac): Likewise.
5563         * modules/unictype/property-lowercase (Depends-on, configure.ac):
5564         Likewise.
5565         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
5566         * modules/unictype/property-non-break (Depends-on, configure.ac):
5567         Likewise.
5568         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
5569         Likewise.
5570         * modules/unictype/property-numeric (Depends-on, configure.ac):
5571         Likewise.
5572         * modules/unictype/property-other-alphabetic (Depends-on,
5573         configure.ac): Likewise.
5574         * modules/unictype/property-other-default-ignorable-code-point
5575         (Depends-on, configure.ac): Likewise.
5576         * modules/unictype/property-other-grapheme-extend (Depends-on,
5577         configure.ac): Likewise.
5578         * modules/unictype/property-other-id-continue (Depends-on,
5579         configure.ac): Likewise.
5580         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
5581         Likewise.
5582         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
5583         Likewise.
5584         * modules/unictype/property-other-math (Depends-on, configure.ac):
5585         Likewise.
5586         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
5587         Likewise.
5588         * modules/unictype/property-paired-punctuation (Depends-on,
5589         configure.ac): Likewise.
5590         * modules/unictype/property-paragraph-separator (Depends-on,
5591         configure.ac): Likewise.
5592         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
5593         Likewise.
5594         * modules/unictype/property-pattern-white-space (Depends-on,
5595         configure.ac): Likewise.
5596         * modules/unictype/property-private-use (Depends-on, configure.ac):
5597         Likewise.
5598         * modules/unictype/property-punctuation (Depends-on, configure.ac):
5599         Likewise.
5600         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
5601         Likewise.
5602         * modules/unictype/property-radical (Depends-on, configure.ac):
5603         Likewise.
5604         * modules/unictype/property-sentence-terminal (Depends-on,
5605         configure.ac): Likewise.
5606         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
5607         Likewise.
5608         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
5609         * modules/unictype/property-terminal-punctuation (Depends-on,
5610         configure.ac): Likewise.
5611         * modules/unictype/property-titlecase (Depends-on, configure.ac):
5612         Likewise.
5613         * modules/unictype/property-unassigned-code-value (Depends-on,
5614         configure.ac): Likewise.
5615         * modules/unictype/property-unified-ideograph (Depends-on,
5616         configure.ac): Likewise.
5617         * modules/unictype/property-uppercase (Depends-on, configure.ac):
5618         Likewise.
5619         * modules/unictype/property-variation-selector (Depends-on,
5620         configure.ac): Likewise.
5621         * modules/unictype/property-white-space (Depends-on, configure.ac):
5622         Likewise.
5623         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
5624         Likewise.
5625         * modules/unictype/property-xid-start (Depends-on, configure.ac):
5626         Likewise.
5627         * modules/unictype/property-zero-width (Depends-on, configure.ac):
5628         Likewise.
5629         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
5630         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
5631         Likewise.
5632
5633 2009-12-31  Bruno Haible  <bruno@clisp.org>
5634
5635         Remove unnecessary AC_C_INLINE invocation.
5636         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
5637         since 2009-08-21.
5638
5639 2009-12-31  Jim Meyering  <meyering@redhat.com>
5640
5641         maint.mk: don't require explicit gpg_key_ID in cfg.mk
5642         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
5643         With this change, we can all remove the gpg_key_ID = ... definition
5644         from our respective cfg.mk files.
5645
5646         maint.mk: create announcement template in ~/, not in /tmp
5647         * top/maint.mk (emit_upload_commands): Adjust.
5648         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
5649         Remove temporary file, .ci-msg.
5650
5651 2009-12-31  Eric Blake  <ebb9@byu.net>
5652
5653         link-warning: always build headers with link warnings
5654         * modules/arpa_inet (Makefile.am): Always build replacement
5655         header.
5656         * modules/ctype (Makefile.am): Likewise.
5657         * modules/dirent (Makefile.am): Likewise.
5658         * modules/inttypes (Makefile.am): Likewise.
5659         * modules/langinfo (Makefile.am): Likewise.
5660         * modules/locale (Makefile.am): Likewise.
5661         * modules/spawn (Makefile.am): Likewise.
5662         * modules/sys_file (Makefile.am): Likewise.
5663         * modules/sys_ioctl (Makefile.am): Likewise.
5664         * modules/sys_select (Makefile.am): Likewise.
5665         * modules/sys_socket (Makefile.am): Likewise.
5666         * modules/sys_times (Makefile.am): Likewise.
5667         * modules/sys_utsname (Makefile.am): Likewise.
5668         * modules/sys_wait (Makefile.am): Likewise.
5669         * modules/wchar (Makefile.am): Likewise.
5670         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
5671         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
5672         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
5673         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
5674         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
5675         Likewise.
5676         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
5677         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
5678         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
5679         Likewise.
5680         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
5681         Likewise.
5682         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
5683         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
5684         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
5685         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
5686         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
5687         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
5688         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
5689         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
5690         (gl_WCHAR_H_DEFAULTS): Likewise.
5691
5692 2009-12-31  Eric Blake  <ebb9@byu.net>
5693
5694         signal, spawn: use link warnings
5695         * lib/signal.in.h (sigset_t): Make unconditional.
5696         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
5697         (sigpending, sigprocmask, sigaction): Add link warnings.
5698         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
5699         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
5700         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
5701         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
5702         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
5703         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
5704         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
5705         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
5706         (posix_spawn_file_actions_destroy)
5707         (posix_spawn_file_actions_addopen)
5708         (posix_spawn_file_actions_addclose)
5709         (posix_spawn_file_actions_adddup2): Likewise.
5710         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
5711         * tests/test-signal.c (main): Enhance test.
5712
5713         spawn: improve wrapper support
5714         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
5715         (gl_SPAWN_H_DEFAULTS): New defaults.
5716         * modules/spawn (Makefile.am): Substitute them.
5717         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
5718         Only declare if missing or broken.
5719
5720         sys_times, sys_utsname: use include_next
5721         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
5722         header.
5723         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
5724         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
5725         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
5726         * modules/sys_times (Depends-on): Add include_next.
5727         (Makefile.am): Substitute additional values.
5728         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
5729         * lib/sys_times.in.h (includes): Include native header, if
5730         available.
5731         * lib/sys_utsname.in.h (includes): Likewise.
5732         * tests/test-sys_times.c (main): Enhance test.
5733
5734         fdutimensat: revert prior patch
5735         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
5736         utimens.h.
5737         Reported by Bruno Haible.
5738
5739 2009-12-30  Eric Blake  <ebb9@byu.net>
5740
5741         sys_wait: drop link-warning dependency
5742         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
5743         link-warning efforts.
5744         * lib/sys_wait.in.h: Likewise.
5745
5746         fdutimensat: remove bogus dependency
5747         * modules/fdutimensat (Depends-on): Drop inline.
5748
5749         unistd: fix typo
5750         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
5751
5752 2009-12-30  Bruno Haible  <bruno@clisp.org>
5753
5754         Fix compilation error with Solaris cc.
5755         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
5756         * lib/unicase/u16-is-invariant.c: Likewise.
5757         * lib/unicase/u32-is-invariant.c: Likewise.
5758         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
5759
5760 2009-12-30  Bruno Haible  <bruno@clisp.org>
5761
5762         Fix test crash.
5763         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
5764         locales.
5765         Reported by Simon Josefsson <simon@josefsson.org>.
5766
5767 2009-12-30  Bruno Haible  <bruno@clisp.org>
5768
5769         Fix compilation error on most platforms.
5770         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
5771         Reported by Simon Josefsson <simon@josefsson.org>
5772         and Nelson H. F. Beebe <beebe@math.utah.edu>.
5773
5774 2009-12-30  Eric Blake  <ebb9@byu.net>
5775
5776         futimens, utimensat: work around ntfs-3g bug
5777         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
5778         a ctime bug is present, and expand workaround to cover ntfs-3g.
5779         * lib/utimens.c (fdutimens, lutimens): Likewise.
5780         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
5781         (validate_timespec): Adjust return value.
5782         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
5783         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
5784         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
5785
5786 2009-12-29  Eric Blake  <ebb9@byu.net>
5787
5788         link-warning: make usage consistent
5789         * modules/ctype (Depends-on): Add link-warning.
5790         (Makefile.am): Update rules accordingly.
5791         * modules/langinfo (Depends-on, Makefile.am): Likewise.
5792         * modules/locale (Depends-on, Makefile.am): Likewise.
5793         * modules/sys_file (Makefile.am): Likewise.
5794         * modules/getopt-posix (Makefile.am): Delete unused link warning
5795         efforts.
5796         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
5797         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
5798         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
5799         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
5800
5801         stdio: remove unused variables
5802         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
5803         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
5804         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
5805
5806         tests: test more substitute headers
5807         * modules/ctype-tests: New file.
5808         * modules/dirent-tests: Likewise.
5809         * modules/spawn-tests: Likewise.
5810         * modules/sys_file-tests: Likewise.
5811         * modules/sys_ioctl-tests: Likewise.
5812         * modules/sys_wait-tests: Likewise.
5813         * tests/test-ctype.c: Likewise.
5814         * tests/test-dirent.c: Likewise.
5815         * tests/test-spawn.c: Likewise.
5816         * tests/test-sys_file.c: Likewise.
5817         * tests/test-sys_ioctl.c: Likewise.
5818         * tests/test-sys_wait.c: Likewise.
5819         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
5820         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
5821         whether or not flock is in use.
5822
5823         tests: remove License section from module
5824         * modules/arpa_inet-tests: Remove unneeded section.
5825         * modules/byteswap-tests: Likewise.
5826         * modules/ceilf-tests: Likewise.
5827         * modules/ceill-tests: Likewise.
5828         * modules/crypto/des-tests: Likewise.
5829         * modules/crypto/gc-arcfour-tests: Likewise.
5830         * modules/crypto/gc-arctwo-tests: Likewise.
5831         * modules/crypto/gc-des-tests: Likewise.
5832         * modules/crypto/gc-hmac-md5-tests: Likewise.
5833         * modules/crypto/gc-hmac-sha1-tests: Likewise.
5834         * modules/crypto/gc-md2-tests: Likewise.
5835         * modules/crypto/gc-md4-tests: Likewise.
5836         * modules/crypto/gc-md5-tests: Likewise.
5837         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
5838         * modules/crypto/gc-rijndael-tests: Likewise.
5839         * modules/crypto/gc-sha1-tests: Likewise.
5840         * modules/crypto/gc-tests: Likewise.
5841         * modules/crypto/md2-tests: Likewise.
5842         * modules/crypto/md4-tests: Likewise.
5843         * modules/fcntl-h-tests: Likewise.
5844         * modules/floorf-tests: Likewise.
5845         * modules/floorl-tests: Likewise.
5846         * modules/frexp-nolibm-tests: Likewise.
5847         * modules/frexp-tests: Likewise.
5848         * modules/frexpl-nolibm-tests: Likewise.
5849         * modules/frexpl-tests: Likewise.
5850         * modules/getaddrinfo-tests: Likewise.
5851         * modules/inttypes-tests: Likewise.
5852         * modules/isfinite-tests: Likewise.
5853         * modules/isinf-tests: Likewise.
5854         * modules/ldexpl-tests: Likewise.
5855         * modules/locale-tests: Likewise.
5856         * modules/math-tests: Likewise.
5857         * modules/netdb-tests: Likewise.
5858         * modules/netinet_in-tests: Likewise.
5859         * modules/printf-frexp-tests: Likewise.
5860         * modules/printf-frexpl-tests: Likewise.
5861         * modules/priv-set-tests: Likewise.
5862         * modules/random_r-tests: Likewise.
5863         * modules/round-tests: Likewise.
5864         * modules/roundf-tests: Likewise.
5865         * modules/roundl-tests: Likewise.
5866         * modules/search-tests: Likewise.
5867         * modules/select-tests: Likewise.
5868         * modules/signal-tests: Likewise.
5869         * modules/stdbool-tests: Likewise.
5870         * modules/stddef-tests: Likewise.
5871         * modules/stdint-tests: Likewise.
5872         * modules/stdio-tests: Likewise.
5873         * modules/stdlib-tests: Likewise.
5874         * modules/string-tests: Likewise.
5875         * modules/strings-tests: Likewise.
5876         * modules/sys_select-tests: Likewise.
5877         * modules/sys_socket-tests: Likewise.
5878         * modules/sys_stat-tests: Likewise.
5879         * modules/sys_time-tests: Likewise.
5880         * modules/sys_utsname-tests: Likewise.
5881         * modules/sysexits-tests: Likewise.
5882         * modules/time-tests: Likewise.
5883         * modules/trunc-tests: Likewise.
5884         * modules/truncf-tests: Likewise.
5885         * modules/truncl-tests: Likewise.
5886         * modules/tsearch-tests: Likewise.
5887         * modules/unistd-tests: Likewise.
5888         * modules/wchar-tests: Likewise.
5889         * modules/wctype-tests: Likewise.
5890
5891         tests: fix license on several tests
5892         * tests/test-des.c: Update to GPLv3+.
5893         * tests/test-flock.c: Likewise.
5894         * tests/test-fsync.c: Likewise.
5895         * tests/test-futimens.h: Likewise.
5896         * tests/test-gc-arcfour.c: Likewise.
5897         * tests/test-gc-arctwo.c: Likewise.
5898         * tests/test-gc-des.c: Likewise.
5899         * tests/test-gc-hmac-md5.c: Likewise.
5900         * tests/test-gc-hmac-sha1.c: Likewise.
5901         * tests/test-gc-md2.c: Likewise.
5902         * tests/test-gc-md4.c: Likewise.
5903         * tests/test-gc-md5.c: Likewise.
5904         * tests/test-gc-pbkdf2-sha1.c: Likewise.
5905         * tests/test-gc-rijndael.c: Likewise.
5906         * tests/test-gc-sha1.c: Likewise.
5907         * tests/test-gc.c: Likewise.
5908         * tests/test-getcwd.c: Likewise.
5909         * tests/test-link.c: Likewise.
5910         * tests/test-link.h: Likewise.
5911         * tests/test-lutimens.h: Likewise.
5912         * tests/test-md2.c: Likewise.
5913         * tests/test-md4.c: Likewise.
5914         * tests/test-mkdir.h: Likewise.
5915         * tests/test-rename.c: Likewise.
5916         * tests/test-rename.h: Likewise.
5917         * tests/test-safe-alloc.c: Likewise.
5918         * tests/test-utimens-common.h: Likewise.
5919         * tests/test-utimens.h: Likewise.
5920
5921         maint: sync license texts
5922         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
5923         * doc/gpl-3.0.texi: Revert copyright year update.
5924         * doc/lgpl-3.0.texi: Likewise.
5925
5926 2009-12-29  Jim Meyering  <meyering@redhat.com>
5927
5928         update nearly all FSF copyright year lists to include 2009
5929         The files named by the following are exempted:
5930             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
5931               test -f "$dst" && { echo "$dst"; continue; }
5932               test -d "$dst" || continue
5933               echo "$dst"/$(basename "$src")
5934             done > exempt
5935             git ls-files tests/unictype >> exempt
5936         In the remaining files, convert to all-interval notation if
5937         - there is already at least one year interval like 2000-2003
5938         - the file is maintained by me
5939         - the file is in lib/uni*/, where that style already prevails
5940         Otherwise, use update-copyright's default.
5941
5942 2009-12-29  Simon Josefsson  <simon@josefsson.org>
5943         and Eric Blake  <ebb9@byu.net>
5944
5945         tests: don't require debug system() to pass
5946         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
5947         * tests/test-rmdir.h (test_rmdir_func): Likewise.
5948         * tests/test-unlink.h (test_unlink_func): Likewise.
5949         * tests/test-fstatat.c (main): ...into callers.
5950         * tests/test-lstat.c (main): Likewise.
5951         * tests/test-rmdir.c (main): Likewise.
5952         * tests/test-unlink.c (main): Likewise.
5953         * tests/test-unlinkat.c (main): Likewise.
5954         * tests/test-areadlink-with-size.c (main): Don't require a
5955         debug-only system call to pass, aiding cross-testing to mingw.
5956         * tests/test-areadlink.c (main): Likewise.
5957         * tests/test-areadlinkat-with-size.c (main): Likewise.
5958         * tests/test-areadlinkat.c (main): Likewise.
5959         * tests/test-canonicalize-lgpl.c (main): Likewise.
5960         * tests/test-canonicalize.c (main): Likewise.
5961         * tests/test-chown.c (main): Likewise.
5962         * tests/test-fchownat.c (main): Likewise.
5963         * tests/test-lchown.c (main): Likewise.
5964         * tests/test-fdutimensat.c (main): Likewise.
5965         * tests/test-futimens.c (main): Likewise.
5966         * tests/test-link.c (main): Likewise.
5967         * tests/test-linkat.c (main): Likewise.
5968         * tests/test-mkdir.c (main): Likewise.
5969         * tests/test-mkdirat.c (main): Likewise.
5970         * tests/test-mkfifo.c (main): Likewise.
5971         * tests/test-mkfifoat.c (main): Likewise.
5972         * tests/test-mknod.c (main): Likewise.
5973         * tests/test-readlink.c (main): Likewise.
5974         * tests/test-remove.c (main): Likewise.
5975         * tests/test-rename.c (main): Likewise.
5976         * tests/test-renameat.c (main): Likewise.
5977         * tests/test-symlink.c (main): Likewise.
5978         * tests/test-symlinkat.c (main): Likewise.
5979         * tests/test-utimens.c (main): Likewise.
5980         * tests/test-utimensat.c (main): Likewise.
5981
5982 2009-12-29  Simon Josefsson  <simon@josefsson.org>
5983
5984         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
5985         on $(UNUSED_PARAMETER_H) to avoid build failure.
5986
5987 2009-12-28  Jim Meyering  <meyering@redhat.com>
5988
5989         update-copyright: you may specify a max. line length other than 72
5990         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
5991
5992         maint: use consistent FSF copyright line syntax
5993         * lib/posixtm.c: Add missing comma in FSF copyright line.
5994         * lib/posixtm.h: Likewise.
5995         * lib/getugroups.c: Add missing ", Inc.".
5996
5997         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
5998         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
5999         FSF copyright line.  Remove trailing blanks.
6000
6001 2009-12-28  Eric Blake  <ebb9@byu.net>
6002
6003         test-dup2: reduce dependencies
6004         * modules/cloexec (Configure.ac): Set witness.
6005         * modules/dup2-tests (Depends-on): Drop cloexec.
6006         * tests/test-dup2.c (main): Skip portion of test if cloexec module
6007         not present.
6008         Suggested by Bruno Haible.
6009
6010 2009-12-26  Bruno Haible  <bruno@clisp.org>
6011
6012         Remove an unneeded dependency.
6013         * modules/fseterr (Depends-on): Remove dup2.
6014
6015 2009-12-26  Eric Blake  <ebb9@byu.net>
6016
6017         tests: use macros.h in more places
6018         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
6019         (ASSERT_STREAM): Provide default of stderr.
6020         * tests/test-dirent-safer.c: Include macros.h, using alternate
6021         stream for assertions.
6022         * tests/test-dup-safer.c: Likewise.
6023         * tests/test-freopen-safer.c: Likewise.
6024         * tests/test-getopt.c: Likewise.
6025         * tests/test-openat-safer.c: Likewise.
6026         * tests/test-pipe.c: Likewise.
6027         * tests/test-popen-safer.c: Likewise.
6028         * modules/dirent-safer-tests (Files): Include macros.h.
6029         * modules/unistd-safer-tests (Files): Likewise.
6030         * modules/freopen-safer-tests (Files): Likewise.
6031         * modules/getopt-posix-tests (Files): Likewise.
6032         * modules/openat-safer-tests (Files): Likewise.
6033         * modules/pipe-tests (Files): Likewise.
6034
6035 2009-12-26  Bruno Haible  <bruno@clisp.org>
6036
6037         javacomp: Portability fix.
6038         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
6039         that it also works on Solaris.
6040
6041 2009-12-26  Bruno Haible  <bruno@clisp.org>
6042
6043         localename: Fix storage allocation of gl_locale_name_thread's result.
6044         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
6045         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
6046         all platforms that have 'uselocale'.
6047         (gl_locale_name_thread_unsafe): New function, extracted from
6048         gl_locale_name_thread.
6049         (gl_locale_name_thread): Call struniq on all platforms that have
6050         'uselocale'.
6051         * tests/test-localename.c (test_locale_name_thread): Check that the
6052         resulting strings are permanently allocated.
6053         * modules/localename-tests (Depends-on): Add strdup.
6054
6055 2009-12-26  Bruno Haible  <bruno@clisp.org>
6056
6057         * tests/test-localename.c (categories): Fill in the strings.
6058
6059 2009-12-26  Jim Meyering  <meyering@redhat.com>
6060
6061         isdir: complete the removal of m4/isdir.m4
6062         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
6063
6064         isdir: clean up, since at least grep still uses it
6065         * lib/isdir.c: Include "isdir.h".
6066         (S_ISDIR): Remove now-unneeded definition.
6067         * modules/isdir (Files): Add lib/isdir.h.
6068         * lib/isdir.h: New file, with declaration.
6069         * m4/isdir.m4: Remove file -- unneeded.
6070
6071 2009-12-25  Bruno Haible  <bruno@clisp.org>
6072
6073         selinux-h: Make generated .h files standalone.
6074         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
6075         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
6076         * lib/se-selinux.in.h: Likewise.
6077         * modules/selinux-h (Depends-on): Add unused-parameter.
6078         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
6079         selinux/selinux.h and selinux/context.h.
6080         Suggested by Eric Blake.
6081
6082 2009-12-25  Bruno Haible  <bruno@clisp.org>
6083
6084         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
6085         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
6086         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
6087         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
6088         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
6089
6090 2009-12-24  Bruno Haible  <bruno@clisp.org>
6091
6092         openat: Fix warning.
6093         * lib/openat-proc.c: Include <unistd.h>.
6094
6095 2009-12-24  Bruno Haible  <bruno@clisp.org>
6096
6097         New module 'unused-parameter'.
6098         * build-aux/unused-parameter.h: New file, extracted from earlier
6099         gnulib-common.m4.
6100         * modules/unused-parameter: New file.
6101         * lib/unistr.h: Include unused-parameter.h.
6102         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
6103         _GL_UNUSED.
6104         * modules/unistr/base (Depends-on): Add unused-parameter.
6105
6106 2009-12-24  Bruno Haible  <bruno@clisp.org>
6107
6108         Add missing dependencies to 'extensions' module.
6109         * m4/extensions.m4: Add comment.
6110         * modules/accept4 (Depends-on): Add extensions.
6111         * modules/dup3 (Depends-on): Likewise.
6112         * modules/fcntl (Depends-on): Likewise.
6113         * modules/futimens (Depends-on): Likewise.
6114         * modules/mknod (Depends-on): Likewise.
6115         * modules/pipe2 (Depends-on): Likewise.
6116         * modules/stat-time (Depends-on): Likewise.
6117         * modules/strcasestr-simple (Depends-on): Likewise.
6118         * modules/strsignal (Depends-on): Likewise.
6119         * modules/utimensat (Depends-on): Likewise.
6120         * modules/localcharset (Depends-on): Likewise. Needed because of
6121         gl_FCNTL_O_FLAGS.
6122         * modules/wcrtomb (Depends-on): Likewise. Needed because of
6123         AC_TYPE_MBSTATE_T.
6124         * modules/wcsnrtombs (Depends-on): Likewise.
6125         * modules/wcsrtombs (Depends-on): Likewise.
6126
6127 2009-12-24  Bruno Haible  <bruno@clisp.org>
6128
6129         binary-io: Avoid gcc warning due to SET_BINARY.
6130         * lib/binary-io.h (SET_BINARY): Cast the result to void.
6131         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
6132
6133 2009-12-24  Bruno Haible  <bruno@clisp.org>
6134
6135         Avoid future namespace pollution on glibc systems.
6136         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
6137         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
6138         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
6139         glibc systems.
6140
6141 2009-12-24  Bruno Haible  <bruno@clisp.org>
6142
6143         Refactor common macros used in tests.
6144         * tests/macros.h: New file.
6145         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
6146         and/or <stdlib.h>, if appropriate.
6147         (ASSERT, SIZEOF): Remove macros.
6148         * tests/test-areadlink-with-size.c: Likewise.
6149         * tests/test-areadlinkat.c: Likewise.
6150         * tests/test-areadlinkat-with-size.c: Likewise.
6151         * tests/test-argmatch.c: Likewise.
6152         * tests/test-argv-iter.c: Likewise.
6153         * tests/test-array-mergesort.c: Likewise.
6154         * tests/test-array_list.c: Likewise.
6155         * tests/test-array_oset.c: Likewise.
6156         * tests/test-avltree_list.c: Likewise.
6157         * tests/test-avltree_oset.c: Likewise.
6158         * tests/test-avltreehash_list.c: Likewise.
6159         * tests/test-base64.c: Likewise.
6160         * tests/test-binary-io.c: Likewise.
6161         * tests/test-bitrotate.c: Likewise.
6162         * tests/test-btowc.c: Likewise.
6163         * tests/test-byteswap.c: Likewise.
6164         * tests/test-c-ctype.c: Likewise.
6165         * tests/test-c-stack.c: Likewise.
6166         * tests/test-c-strcasecmp.c: Likewise.
6167         * tests/test-c-strcasestr.c: Likewise.
6168         * tests/test-c-strncasecmp.c: Likewise.
6169         * tests/test-c-strstr.c: Likewise.
6170         * tests/test-canonicalize-lgpl.c: Likewise.
6171         * tests/test-canonicalize.c: Likewise.
6172         * tests/test-carray_list.c: Likewise.
6173         * tests/test-ceilf1.c: Likewise.
6174         * tests/test-ceilf2.c: Likewise.
6175         * tests/test-ceill.c: Likewise.
6176         * tests/test-chown.c: Likewise.
6177         * tests/test-cloexec.c: Likewise.
6178         * tests/test-copy-acl.c: Likewise.
6179         * tests/test-copy-file.c: Likewise.
6180         * tests/test-count-one-bits.c: Likewise.
6181         * tests/test-dprintf-posix.c: Likewise.
6182         * tests/test-dup2.c: Likewise.
6183         * tests/test-dup3.c: Likewise.
6184         * tests/test-duplocale.c: Likewise.
6185         * tests/test-fbufmode.c: Likewise.
6186         * tests/test-fchdir.c: Likewise.
6187         * tests/test-fchownat.c: Likewise.
6188         * tests/test-fcntl-safer.c: Likewise.
6189         * tests/test-fcntl.c: Likewise.
6190         * tests/test-fdopendir.c: Likewise.
6191         * tests/test-fdutimensat.c: Likewise.
6192         * tests/test-fflush2.c: Likewise.
6193         * tests/test-file-has-acl.c: Likewise.
6194         * tests/test-filevercmp.c: Likewise.
6195         * tests/test-flock.c: Likewise.
6196         * tests/test-floorf1.c: Likewise.
6197         * tests/test-floorf2.c: Likewise.
6198         * tests/test-floorl.c: Likewise.
6199         * tests/test-fnmatch.c: Likewise.
6200         * tests/test-fopen.h: Likewise.
6201         * tests/test-fpending.c: Likewise.
6202         * tests/test-fprintf-posix.c: Likewise.
6203         * tests/test-fpurge.c: Likewise.
6204         * tests/test-freadable.c: Likewise.
6205         * tests/test-freadahead.c: Likewise.
6206         * tests/test-freading.c: Likewise.
6207         * tests/test-freadptr.c: Likewise.
6208         * tests/test-freadptr2.c: Likewise.
6209         * tests/test-freadseek.c: Likewise.
6210         * tests/test-freopen.c: Likewise.
6211         * tests/test-frexp.c: Likewise.
6212         * tests/test-frexpl.c: Likewise.
6213         * tests/test-fseek.c: Likewise.
6214         * tests/test-fseeko.c: Likewise.
6215         * tests/test-fstatat.c: Likewise.
6216         * tests/test-fstrcmp.c: Likewise.
6217         * tests/test-fsync.c: Likewise.
6218         * tests/test-ftell.c: Likewise.
6219         * tests/test-ftello.c: Likewise.
6220         * tests/test-func.c: Likewise.
6221         * tests/test-futimens.c: Likewise.
6222         * tests/test-fwritable.c: Likewise.
6223         * tests/test-fwriting.c: Likewise.
6224         * tests/test-getcwd.c: Likewise.
6225         * tests/test-getdate.c: Likewise.
6226         * tests/test-getdelim.c: Likewise.
6227         * tests/test-getdtablesize.c: Likewise.
6228         * tests/test-getgroups.c: Likewise.
6229         * tests/test-getline.c: Likewise.
6230         * tests/test-getndelim2.c: Likewise.
6231         * tests/test-glob.c: Likewise.
6232         * tests/test-hash.c: Likewise.
6233         * tests/test-i-ring.c: Likewise.
6234         * tests/test-iconv-utf.c: Likewise.
6235         * tests/test-iconv.c: Likewise.
6236         * tests/test-idpriv-drop.c: Likewise.
6237         * tests/test-idpriv-droptemp.c: Likewise.
6238         * tests/test-inet_ntop.c: Likewise.
6239         * tests/test-inet_pton.c: Likewise.
6240         * tests/test-isblank.c: Likewise.
6241         * tests/test-isfinite.c: Likewise.
6242         * tests/test-isinf.c: Likewise.
6243         * tests/test-isnan.c: Likewise.
6244         * tests/test-isnand.h: Likewise.
6245         * tests/test-isnanf.h: Likewise.
6246         * tests/test-isnanl.h: Likewise.
6247         * tests/test-lchown.c: Likewise.
6248         * tests/test-ldexpl.c: Likewise.
6249         * tests/test-link.c: Likewise.
6250         * tests/test-linkat.c: Likewise.
6251         * tests/test-linked_list.c: Likewise.
6252         * tests/test-linkedhash_list.c: Likewise.
6253         * tests/test-localename.c: Likewise.
6254         * tests/test-lseek.c: Likewise.
6255         * tests/test-lstat.c: Likewise.
6256         * tests/test-mbmemcasecmp.c: Likewise.
6257         * tests/test-mbmemcasecoll.c: Likewise.
6258         * tests/test-mbrtowc.c: Likewise.
6259         * tests/test-mbscasecmp.c: Likewise.
6260         * tests/test-mbscasestr1.c: Likewise.
6261         * tests/test-mbscasestr2.c: Likewise.
6262         * tests/test-mbscasestr3.c: Likewise.
6263         * tests/test-mbscasestr4.c: Likewise.
6264         * tests/test-mbschr.c: Likewise.
6265         * tests/test-mbscspn.c: Likewise.
6266         * tests/test-mbsinit.c: Likewise.
6267         * tests/test-mbsncasecmp.c: Likewise.
6268         * tests/test-mbsnrtowcs.c: Likewise.
6269         * tests/test-mbspbrk.c: Likewise.
6270         * tests/test-mbspcasecmp.c: Likewise.
6271         * tests/test-mbsrchr.c: Likewise.
6272         * tests/test-mbsrtowcs.c: Likewise.
6273         * tests/test-mbsspn.c: Likewise.
6274         * tests/test-mbsstr1.c: Likewise.
6275         * tests/test-mbsstr2.c: Likewise.
6276         * tests/test-mbsstr3.c: Likewise.
6277         * tests/test-memchr.c: Likewise.
6278         * tests/test-memchr2.c: Likewise.
6279         * tests/test-memcmp.c: Likewise.
6280         * tests/test-memmem.c: Likewise.
6281         * tests/test-memrchr.c: Likewise.
6282         * tests/test-mkdir.c: Likewise.
6283         * tests/test-mkdirat.c: Likewise.
6284         * tests/test-mkfifo.c: Likewise.
6285         * tests/test-mkfifoat.c: Likewise.
6286         * tests/test-mknod.c: Likewise.
6287         * tests/test-nanosleep.c: Likewise.
6288         * tests/test-nl_langinfo.c: Likewise.
6289         * tests/test-obstack-printf.c: Likewise.
6290         * tests/test-open.c: Likewise.
6291         * tests/test-openat.c: Likewise.
6292         * tests/test-pipe-filter-gi1.c: Likewise.
6293         * tests/test-pipe-filter-gi2-main.c: Likewise.
6294         * tests/test-pipe-filter-ii1.c: Likewise.
6295         * tests/test-pipe-filter-ii2-main.c: Likewise.
6296         * tests/test-pipe2.c: Likewise.
6297         * tests/test-popen.h: Likewise.
6298         * tests/test-posixtm.c: Likewise.
6299         * tests/test-pread.c: Likewise.
6300         * tests/test-printf-frexp.c: Likewise.
6301         * tests/test-printf-frexpl.c: Likewise.
6302         * tests/test-printf-posix.c: Likewise.
6303         * tests/test-priv-set.c: Likewise.
6304         * tests/test-quotearg.c: Likewise.
6305         * tests/test-random_r.c: Likewise.
6306         * tests/test-rawmemchr.c: Likewise.
6307         * tests/test-rbtree_list.c: Likewise.
6308         * tests/test-rbtree_oset.c: Likewise.
6309         * tests/test-rbtreehash_list.c: Likewise.
6310         * tests/test-readlink.c: Likewise.
6311         * tests/test-remove.c: Likewise.
6312         * tests/test-rename.c: Likewise.
6313         * tests/test-renameat.c: Likewise.
6314         * tests/test-rmdir.c: Likewise.
6315         * tests/test-round1.c: Likewise.
6316         * tests/test-roundf1.c: Likewise.
6317         * tests/test-roundl.c: Likewise.
6318         * tests/test-safe-alloc.c: Likewise.
6319         * tests/test-sameacls.c: Likewise.
6320         * tests/test-set-mode-acl.c: Likewise.
6321         * tests/test-setenv.c: Likewise.
6322         * tests/test-sigaction.c: Likewise.
6323         * tests/test-signbit.c: Likewise.
6324         * tests/test-sleep.c: Likewise.
6325         * tests/test-snprintf-posix.c: Likewise.
6326         * tests/test-snprintf.c: Likewise.
6327         * tests/test-sprintf-posix.c: Likewise.
6328         * tests/test-stat-time.c: Likewise.
6329         * tests/test-stat.c: Likewise.
6330         * tests/test-strcasestr.c: Likewise.
6331         * tests/test-strchrnul.c: Likewise.
6332         * tests/test-strerror.c: Likewise.
6333         * tests/test-striconv.c: Likewise.
6334         * tests/test-striconveh.c: Likewise.
6335         * tests/test-striconveha.c: Likewise.
6336         * tests/test-strsignal.c: Likewise.
6337         * tests/test-strstr.c: Likewise.
6338         * tests/test-strtod.c: Likewise.
6339         * tests/test-strverscmp.c: Likewise.
6340         * tests/test-symlink.c: Likewise.
6341         * tests/test-symlinkat.c: Likewise.
6342         * tests/test-trunc1.c: Likewise.
6343         * tests/test-trunc2.c: Likewise.
6344         * tests/test-truncf1.c: Likewise.
6345         * tests/test-truncf2.c: Likewise.
6346         * tests/test-truncl.c: Likewise.
6347         * tests/test-uname.c: Likewise.
6348         * tests/test-unlink.c: Likewise.
6349         * tests/test-unlinkat.c: Likewise.
6350         * tests/test-unsetenv.c: Likewise.
6351         * tests/test-usleep.c: Likewise.
6352         * tests/test-utimens.c: Likewise.
6353         * tests/test-utimensat.c: Likewise.
6354         * tests/test-vasnprintf-posix.c: Likewise.
6355         * tests/test-vasnprintf-posix2.c: Likewise.
6356         * tests/test-vasnprintf.c: Likewise.
6357         * tests/test-vasprintf-posix.c: Likewise.
6358         * tests/test-vasprintf.c: Likewise.
6359         * tests/test-vdprintf-posix.c: Likewise.
6360         * tests/test-vfprintf-posix.c: Likewise.
6361         * tests/test-vprintf-posix.c: Likewise.
6362         * tests/test-vsnprintf-posix.c: Likewise.
6363         * tests/test-vsnprintf.c: Likewise.
6364         * tests/test-vsprintf-posix.c: Likewise.
6365         * tests/test-wcrtomb.c: Likewise.
6366         * tests/test-wcsnrtombs.c: Likewise.
6367         * tests/test-wcsrtombs.c: Likewise.
6368         * tests/test-wctype.c: Likewise.
6369         * tests/test-wcwidth.c: Likewise.
6370         * tests/test-xfprintf-posix.c: Likewise.
6371         * tests/test-xmemdup0.c: Likewise.
6372         * tests/test-xprintf-posix.c: Likewise.
6373         * tests/test-xvasprintf.c: Likewise.
6374         * tests/unicase/test-locale-language.c: Likewise.
6375         * tests/unicase/test-mapping-part1.h: Likewise.
6376         * tests/unicase/test-predicate-part1.h: Likewise.
6377         * tests/unicase/test-u8-casecmp.c: Likewise.
6378         * tests/unicase/test-u8-casecoll.c: Likewise.
6379         * tests/unicase/test-u8-casefold.c: Likewise.
6380         * tests/unicase/test-u8-is-cased.c: Likewise.
6381         * tests/unicase/test-u8-is-casefolded.c: Likewise.
6382         * tests/unicase/test-u8-is-lowercase.c: Likewise.
6383         * tests/unicase/test-u8-is-titlecase.c: Likewise.
6384         * tests/unicase/test-u8-is-uppercase.c: Likewise.
6385         * tests/unicase/test-u8-tolower.c: Likewise.
6386         * tests/unicase/test-u8-totitle.c: Likewise.
6387         * tests/unicase/test-u8-toupper.c: Likewise.
6388         * tests/unicase/test-u16-casecmp.c: Likewise.
6389         * tests/unicase/test-u16-casecoll.c: Likewise.
6390         * tests/unicase/test-u16-casefold.c: Likewise.
6391         * tests/unicase/test-u16-is-cased.c: Likewise.
6392         * tests/unicase/test-u16-is-casefolded.c: Likewise.
6393         * tests/unicase/test-u16-is-lowercase.c: Likewise.
6394         * tests/unicase/test-u16-is-titlecase.c: Likewise.
6395         * tests/unicase/test-u16-is-uppercase.c: Likewise.
6396         * tests/unicase/test-u16-tolower.c: Likewise.
6397         * tests/unicase/test-u16-totitle.c: Likewise.
6398         * tests/unicase/test-u16-toupper.c: Likewise.
6399         * tests/unicase/test-u32-casecmp.c: Likewise.
6400         * tests/unicase/test-u32-casecoll.c: Likewise.
6401         * tests/unicase/test-u32-casefold.c: Likewise.
6402         * tests/unicase/test-u32-is-cased.c: Likewise.
6403         * tests/unicase/test-u32-is-casefolded.c: Likewise.
6404         * tests/unicase/test-u32-is-lowercase.c: Likewise.
6405         * tests/unicase/test-u32-is-titlecase.c: Likewise.
6406         * tests/unicase/test-u32-is-uppercase.c: Likewise.
6407         * tests/unicase/test-u32-tolower.c: Likewise.
6408         * tests/unicase/test-u32-totitle.c: Likewise.
6409         * tests/unicase/test-u32-toupper.c: Likewise.
6410         * tests/unicase/test-ulc-casecmp.c: Likewise.
6411         * tests/unicase/test-ulc-casecoll.c: Likewise.
6412         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
6413         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
6414         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
6415         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
6416         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
6417         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
6418         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
6419         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
6420         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
6421         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
6422         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
6423         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
6424         * tests/unictype/test-bidi_byname.c: Likewise.
6425         * tests/unictype/test-bidi_name.c: Likewise.
6426         * tests/unictype/test-bidi_of.c: Likewise.
6427         * tests/unictype/test-bidi_test.c: Likewise.
6428         * tests/unictype/test-block_list.c: Likewise.
6429         * tests/unictype/test-block_of.c: Likewise.
6430         * tests/unictype/test-block_test.c: Likewise.
6431         * tests/unictype/test-categ_and.c: Likewise.
6432         * tests/unictype/test-categ_and_not.c: Likewise.
6433         * tests/unictype/test-categ_byname.c: Likewise.
6434         * tests/unictype/test-categ_name.c: Likewise.
6435         * tests/unictype/test-categ_none.c: Likewise.
6436         * tests/unictype/test-categ_of.c: Likewise.
6437         * tests/unictype/test-categ_or.c: Likewise.
6438         * tests/unictype/test-categ_test_withtable.c: Likewise.
6439         * tests/unictype/test-combining.c: Likewise.
6440         * tests/unictype/test-decdigit.c: Likewise.
6441         * tests/unictype/test-digit.c: Likewise.
6442         * tests/unictype/test-mirror.c: Likewise.
6443         * tests/unictype/test-numeric.c: Likewise.
6444         * tests/unictype/test-pr_byname.c: Likewise.
6445         * tests/unictype/test-pr_test.c: Likewise.
6446         * tests/unictype/test-predicate-part1.h: Likewise.
6447         * tests/unictype/test-scripts.c: Likewise.
6448         * tests/unictype/test-sy_c_ident.c: Likewise.
6449         * tests/unictype/test-sy_java_ident.c: Likewise.
6450         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
6451         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
6452         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
6453         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
6454         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
6455         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
6456         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
6457         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
6458         * tests/uninorm/test-canonical-decomposition.c: Likewise.
6459         * tests/uninorm/test-compat-decomposition.c: Likewise.
6460         * tests/uninorm/test-composition.c: Likewise.
6461         * tests/uninorm/test-decomposing-form.c: Likewise.
6462         * tests/uninorm/test-decomposition.c: Likewise.
6463         * tests/uninorm/test-u8-nfc.c: Likewise.
6464         * tests/uninorm/test-u8-nfd.c: Likewise.
6465         * tests/uninorm/test-u8-nfkc.c: Likewise.
6466         * tests/uninorm/test-u8-nfkd.c: Likewise.
6467         * tests/uninorm/test-u8-normcmp.c: Likewise.
6468         * tests/uninorm/test-u8-normcoll.c: Likewise.
6469         * tests/uninorm/test-u16-nfc.c: Likewise.
6470         * tests/uninorm/test-u16-nfd.c: Likewise.
6471         * tests/uninorm/test-u16-nfkc.c: Likewise.
6472         * tests/uninorm/test-u16-nfkd.c: Likewise.
6473         * tests/uninorm/test-u16-normcmp.c: Likewise.
6474         * tests/uninorm/test-u16-normcoll.c: Likewise.
6475         * tests/uninorm/test-u32-nfc.c: Likewise.
6476         * tests/uninorm/test-u32-nfd.c: Likewise.
6477         * tests/uninorm/test-u32-nfkc.c: Likewise.
6478         * tests/uninorm/test-u32-nfkd.c: Likewise.
6479         * tests/uninorm/test-u32-normalize-big.c: Likewise.
6480         * tests/uninorm/test-u32-normcmp.c: Likewise.
6481         * tests/uninorm/test-u32-normcoll.c: Likewise.
6482         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
6483         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
6484         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
6485         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
6486         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
6487         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
6488         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
6489         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
6490         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
6491         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
6492         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
6493         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
6494         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
6495         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
6496         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
6497         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
6498         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
6499         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
6500         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
6501         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
6502         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
6503         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
6504         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
6505         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
6506         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
6507         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
6508         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
6509         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
6510         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
6511         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
6512         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
6513         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
6514         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
6515         * tests/uniwidth/test-u8-strwidth.c: Likewise.
6516         * tests/uniwidth/test-u8-width.c: Likewise.
6517         * tests/uniwidth/test-u16-strwidth.c: Likewise.
6518         * tests/uniwidth/test-u16-width.c: Likewise.
6519         * tests/uniwidth/test-u32-strwidth.c: Likewise.
6520         * tests/uniwidth/test-u32-width.c: Likewise.
6521         * tests/uniwidth/test-uc_width.c: Likewise.
6522         * tests/uniwidth/test-uc_width2.c: Likewise.
6523         * modules/acl-tests (Files): Add tests/macros.h.
6524         * modules/areadlink-tests (Files): Likewise.
6525         * modules/areadlink-with-size-tests (Files): Likewise.
6526         * modules/areadlinkat-tests (Files): Likewise.
6527         * modules/areadlinkat-with-size-tests (Files): Likewise.
6528         * modules/argmatch-tests (Files): Likewise.
6529         * modules/argv-iter-tests (Files): Likewise.
6530         * modules/array-list-tests (Files): Likewise.
6531         * modules/array-mergesort-tests (Files): Likewise.
6532         * modules/array-oset-tests (Files): Likewise.
6533         * modules/avltree-list-tests (Files): Likewise.
6534         * modules/avltree-oset-tests (Files): Likewise.
6535         * modules/avltreehash-list-tests (Files): Likewise.
6536         * modules/base64-tests (Files): Likewise.
6537         * modules/binary-io-tests (Files): Likewise.
6538         * modules/bitrotate-tests (Files): Likewise.
6539         * modules/btowc-tests (Files): Likewise.
6540         * modules/byteswap-tests (Files): Likewise.
6541         * modules/c-ctype-tests (Files): Likewise.
6542         * modules/c-stack-tests (Files): Likewise.
6543         * modules/c-strcase-tests (Files): Likewise.
6544         * modules/c-strcasestr-tests (Files): Likewise.
6545         * modules/c-strstr-tests (Files): Likewise.
6546         * modules/canonicalize-lgpl-tests (Files): Likewise.
6547         * modules/canonicalize-tests (Files): Likewise.
6548         * modules/carray-list-tests (Files): Likewise.
6549         * modules/ceilf-tests (Files): Likewise.
6550         * modules/ceill-tests (Files): Likewise.
6551         * modules/chown-tests (Files): Likewise.
6552         * modules/cloexec-tests (Files): Likewise.
6553         * modules/copy-file-tests (Files): Likewise.
6554         * modules/count-one-bits-tests (Files): Likewise.
6555         * modules/dprintf-posix-tests (Files): Likewise.
6556         * modules/dup2-tests (Files): Likewise.
6557         * modules/dup3-tests (Files): Likewise.
6558         * modules/duplocale-tests (Files): Likewise.
6559         * modules/fbufmode-tests (Files): Likewise.
6560         * modules/fchdir-tests (Files): Likewise.
6561         * modules/fcntl-safer-tests (Files): Likewise.
6562         * modules/fcntl-tests (Files): Likewise.
6563         * modules/fdopendir-tests (Files): Likewise.
6564         * modules/fdutimensat-tests (Files): Likewise.
6565         * modules/fflush-tests (Files): Likewise.
6566         * modules/filevercmp-tests (Files): Likewise.
6567         * modules/flock-tests (Files): Likewise.
6568         * modules/floorf-tests (Files): Likewise.
6569         * modules/floorl-tests (Files): Likewise.
6570         * modules/fnmatch-tests (Files): Likewise.
6571         * modules/fopen-safer-tests (Files): Likewise.
6572         * modules/fopen-tests (Files): Likewise.
6573         * modules/fpending-tests (Files): Likewise.
6574         * modules/fprintf-posix-tests (Files): Likewise.
6575         * modules/fpurge-tests (Files): Likewise.
6576         * modules/freadable-tests (Files): Likewise.
6577         * modules/freadahead-tests (Files): Likewise.
6578         * modules/freading-tests (Files): Likewise.
6579         * modules/freadptr-tests (Files): Likewise.
6580         * modules/freadseek-tests (Files): Likewise.
6581         * modules/freopen-tests (Files): Likewise.
6582         * modules/frexp-nolibm-tests (Files): Likewise.
6583         * modules/frexp-tests (Files): Likewise.
6584         * modules/frexpl-nolibm-tests (Files): Likewise.
6585         * modules/frexpl-tests (Files): Likewise.
6586         * modules/fseek-tests (Files): Likewise.
6587         * modules/fseeko-tests (Files): Likewise.
6588         * modules/fstrcmp-tests (Files): Likewise.
6589         * modules/fsync-tests (Files): Likewise.
6590         * modules/ftell-tests (Files): Likewise.
6591         * modules/ftello-tests (Files): Likewise.
6592         * modules/func-tests (Files): Likewise.
6593         * modules/futimens-tests (Files): Likewise.
6594         * modules/fwritable-tests (Files): Likewise.
6595         * modules/fwriting-tests (Files): Likewise.
6596         * modules/getcwd-tests (Files): Likewise.
6597         * modules/getdate-tests (Files): Likewise.
6598         * modules/getdelim-tests (Files): Likewise.
6599         * modules/getdtablesize-tests (Files): Likewise.
6600         * modules/getgroups-tests (Files): Likewise.
6601         * modules/getline-tests (Files): Likewise.
6602         * modules/getndelim2-tests (Files): Likewise.
6603         * modules/glob-tests (Files): Likewise.
6604         * modules/hash-tests (Files): Likewise.
6605         * modules/i-ring-tests (Files): Likewise.
6606         * modules/iconv-tests (Files): Likewise.
6607         * modules/iconv_open-utf-tests (Files): Likewise.
6608         * modules/idpriv-drop-tests (Files): Likewise.
6609         * modules/idpriv-droptemp-tests (Files): Likewise.
6610         * modules/inet_ntop-tests (Files): Likewise.
6611         * modules/inet_pton-tests (Files): Likewise.
6612         * modules/isblank-tests (Files): Likewise.
6613         * modules/isfinite-tests (Files): Likewise.
6614         * modules/isinf-tests (Files): Likewise.
6615         * modules/isnan-tests (Files): Likewise.
6616         * modules/isnand-nolibm-tests (Files): Likewise.
6617         * modules/isnand-tests (Files): Likewise.
6618         * modules/isnanf-nolibm-tests (Files): Likewise.
6619         * modules/isnanf-tests (Files): Likewise.
6620         * modules/isnanl-nolibm-tests (Files): Likewise.
6621         * modules/isnanl-tests (Files): Likewise.
6622         * modules/lchown-tests (Files): Likewise.
6623         * modules/ldexpl-tests (Files): Likewise.
6624         * modules/link-tests (Files): Likewise.
6625         * modules/linkat-tests (Files): Likewise.
6626         * modules/linked-list-tests (Files): Likewise.
6627         * modules/linkedhash-list-tests (Files): Likewise.
6628         * modules/localename-tests (Files): Likewise.
6629         * modules/lseek-tests (Files): Likewise.
6630         * modules/lstat-tests (Files): Likewise.
6631         * modules/mbmemcasecmp-tests (Files): Likewise.
6632         * modules/mbmemcasecoll-tests (Files): Likewise.
6633         * modules/mbrtowc-tests (Files): Likewise.
6634         * modules/mbscasecmp-tests (Files): Likewise.
6635         * modules/mbscasestr-tests (Files): Likewise.
6636         * modules/mbschr-tests (Files): Likewise.
6637         * modules/mbscspn-tests (Files): Likewise.
6638         * modules/mbsinit-tests (Files): Likewise.
6639         * modules/mbsncasecmp-tests (Files): Likewise.
6640         * modules/mbsnrtowcs-tests (Files): Likewise.
6641         * modules/mbspbrk-tests (Files): Likewise.
6642         * modules/mbspcasecmp-tests (Files): Likewise.
6643         * modules/mbsrchr-tests (Files): Likewise.
6644         * modules/mbsrtowcs-tests (Files): Likewise.
6645         * modules/mbsspn-tests (Files): Likewise.
6646         * modules/mbsstr-tests (Files): Likewise.
6647         * modules/memchr-tests (Files): Likewise.
6648         * modules/memchr2-tests (Files): Likewise.
6649         * modules/memcmp-tests (Files): Likewise.
6650         * modules/memmem-tests (Files): Likewise.
6651         * modules/memrchr-tests (Files): Likewise.
6652         * modules/mkdir-tests (Files): Likewise.
6653         * modules/mkfifo-tests (Files): Likewise.
6654         * modules/mkfifoat-tests (Files): Likewise.
6655         * modules/mknod-tests (Files): Likewise.
6656         * modules/nanosleep-tests (Files): Likewise.
6657         * modules/nl_langinfo-tests (Files): Likewise.
6658         * modules/obstack-printf-tests (Files): Likewise.
6659         * modules/open-tests (Files): Likewise.
6660         * modules/openat-tests (Files): Likewise.
6661         * modules/pipe-filter-gi-tests (Files): Likewise.
6662         * modules/pipe-filter-ii-tests (Files): Likewise.
6663         * modules/pipe2-tests (Files): Likewise.
6664         * modules/popen-safer-tests (Files): Likewise.
6665         * modules/popen-tests (Files): Likewise.
6666         * modules/posixtm-tests (Files): Likewise.
6667         * modules/pread-tests (Files): Likewise.
6668         * modules/printf-frexp-tests (Files): Likewise.
6669         * modules/printf-frexpl-tests (Files): Likewise.
6670         * modules/printf-posix-tests (Files): Likewise.
6671         * modules/priv-set-tests (Files): Likewise.
6672         * modules/quotearg-tests (Files): Likewise.
6673         * modules/random_r-tests (Files): Likewise.
6674         * modules/rawmemchr-tests (Files): Likewise.
6675         * modules/rbtree-list-tests (Files): Likewise.
6676         * modules/rbtree-oset-tests (Files): Likewise.
6677         * modules/rbtreehash-list-tests (Files): Likewise.
6678         * modules/readlink-tests (Files): Likewise.
6679         * modules/remove-tests (Files): Likewise.
6680         * modules/rename-tests (Files): Likewise.
6681         * modules/renameat-tests (Files): Likewise.
6682         * modules/rmdir-tests (Files): Likewise.
6683         * modules/round-tests (Files): Likewise.
6684         * modules/roundf-tests (Files): Likewise.
6685         * modules/roundl-tests (Files): Likewise.
6686         * modules/safe-alloc-tests (Files): Likewise.
6687         * modules/setenv-tests (Files): Likewise.
6688         * modules/sigaction-tests (Files): Likewise.
6689         * modules/signbit-tests (Files): Likewise.
6690         * modules/sleep-tests (Files): Likewise.
6691         * modules/snprintf-posix-tests (Files): Likewise.
6692         * modules/snprintf-tests (Files): Likewise.
6693         * modules/sprintf-posix-tests (Files): Likewise.
6694         * modules/stat-tests (Files): Likewise.
6695         * modules/stat-time-tests (Files): Likewise.
6696         * modules/strcasestr-tests (Files): Likewise.
6697         * modules/strchrnul-tests (Files): Likewise.
6698         * modules/strerror-tests (Files): Likewise.
6699         * modules/striconv-tests (Files): Likewise.
6700         * modules/striconveh-tests (Files): Likewise.
6701         * modules/striconveha-tests (Files): Likewise.
6702         * modules/strsignal-tests (Files): Likewise.
6703         * modules/strstr-tests (Files): Likewise.
6704         * modules/strtod-tests (Files): Likewise.
6705         * modules/strverscmp-tests (Files): Likewise.
6706         * modules/symlink-tests (Files): Likewise.
6707         * modules/symlinkat-tests (Files): Likewise.
6708         * modules/trunc-tests (Files): Likewise.
6709         * modules/truncf-tests (Files): Likewise.
6710         * modules/truncl-tests (Files): Likewise.
6711         * modules/uname-tests (Files): Likewise.
6712         * modules/unicase/cased-tests (Files): Likewise.
6713         * modules/unicase/ignorable-tests (Files): Likewise.
6714         * modules/unicase/locale-language-tests (Files): Likewise.
6715         * modules/unicase/tolower-tests (Files): Likewise.
6716         * modules/unicase/totitle-tests (Files): Likewise.
6717         * modules/unicase/toupper-tests (Files): Likewise.
6718         * modules/unicase/u8-casecmp-tests (Files): Likewise.
6719         * modules/unicase/u8-casecoll-tests (Files): Likewise.
6720         * modules/unicase/u8-casefold-tests (Files): Likewise.
6721         * modules/unicase/u8-is-cased-tests (Files): Likewise.
6722         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
6723         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
6724         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
6725         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
6726         * modules/unicase/u8-tolower-tests (Files): Likewise.
6727         * modules/unicase/u8-totitle-tests (Files): Likewise.
6728         * modules/unicase/u8-toupper-tests (Files): Likewise.
6729         * modules/unicase/u16-casecmp-tests (Files): Likewise.
6730         * modules/unicase/u16-casecoll-tests (Files): Likewise.
6731         * modules/unicase/u16-casefold-tests (Files): Likewise.
6732         * modules/unicase/u16-is-cased-tests (Files): Likewise.
6733         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
6734         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
6735         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
6736         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
6737         * modules/unicase/u16-tolower-tests (Files): Likewise.
6738         * modules/unicase/u16-totitle-tests (Files): Likewise.
6739         * modules/unicase/u16-toupper-tests (Files): Likewise.
6740         * modules/unicase/u32-casecmp-tests (Files): Likewise.
6741         * modules/unicase/u32-casecoll-tests (Files): Likewise.
6742         * modules/unicase/u32-casefold-tests (Files): Likewise.
6743         * modules/unicase/u32-is-cased-tests (Files): Likewise.
6744         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
6745         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
6746         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
6747         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
6748         * modules/unicase/u32-tolower-tests (Files): Likewise.
6749         * modules/unicase/u32-totitle-tests (Files): Likewise.
6750         * modules/unicase/u32-toupper-tests (Files): Likewise.
6751         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
6752         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
6753         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
6754         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
6755         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
6756         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
6757         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
6758         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
6759         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
6760         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
6761         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
6762         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
6763         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
6764         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
6765         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
6766         * modules/unictype/bidicategory-name-tests (Files): Likewise.
6767         * modules/unictype/bidicategory-of-tests (Files): Likewise.
6768         * modules/unictype/bidicategory-test-tests (Files): Likewise.
6769         * modules/unictype/block-list-tests (Files): Likewise.
6770         * modules/unictype/block-of-tests (Files): Likewise.
6771         * modules/unictype/block-test-tests (Files): Likewise.
6772         * modules/unictype/category-C-tests (Files): Likewise.
6773         * modules/unictype/category-Cc-tests (Files): Likewise.
6774         * modules/unictype/category-Cf-tests (Files): Likewise.
6775         * modules/unictype/category-Cn-tests (Files): Likewise.
6776         * modules/unictype/category-Co-tests (Files): Likewise.
6777         * modules/unictype/category-Cs-tests (Files): Likewise.
6778         * modules/unictype/category-L-tests (Files): Likewise.
6779         * modules/unictype/category-Ll-tests (Files): Likewise.
6780         * modules/unictype/category-Lm-tests (Files): Likewise.
6781         * modules/unictype/category-Lo-tests (Files): Likewise.
6782         * modules/unictype/category-Lt-tests (Files): Likewise.
6783         * modules/unictype/category-Lu-tests (Files): Likewise.
6784         * modules/unictype/category-M-tests (Files): Likewise.
6785         * modules/unictype/category-Mc-tests (Files): Likewise.
6786         * modules/unictype/category-Me-tests (Files): Likewise.
6787         * modules/unictype/category-Mn-tests (Files): Likewise.
6788         * modules/unictype/category-N-tests (Files): Likewise.
6789         * modules/unictype/category-Nd-tests (Files): Likewise.
6790         * modules/unictype/category-Nl-tests (Files): Likewise.
6791         * modules/unictype/category-No-tests (Files): Likewise.
6792         * modules/unictype/category-P-tests (Files): Likewise.
6793         * modules/unictype/category-Pc-tests (Files): Likewise.
6794         * modules/unictype/category-Pd-tests (Files): Likewise.
6795         * modules/unictype/category-Pe-tests (Files): Likewise.
6796         * modules/unictype/category-Pf-tests (Files): Likewise.
6797         * modules/unictype/category-Pi-tests (Files): Likewise.
6798         * modules/unictype/category-Po-tests (Files): Likewise.
6799         * modules/unictype/category-Ps-tests (Files): Likewise.
6800         * modules/unictype/category-S-tests (Files): Likewise.
6801         * modules/unictype/category-Sc-tests (Files): Likewise.
6802         * modules/unictype/category-Sk-tests (Files): Likewise.
6803         * modules/unictype/category-Sm-tests (Files): Likewise.
6804         * modules/unictype/category-So-tests (Files): Likewise.
6805         * modules/unictype/category-Z-tests (Files): Likewise.
6806         * modules/unictype/category-Zl-tests (Files): Likewise.
6807         * modules/unictype/category-Zp-tests (Files): Likewise.
6808         * modules/unictype/category-Zs-tests (Files): Likewise.
6809         * modules/unictype/category-and-not-tests (Files): Likewise.
6810         * modules/unictype/category-and-tests (Files): Likewise.
6811         * modules/unictype/category-byname-tests (Files): Likewise.
6812         * modules/unictype/category-name-tests (Files): Likewise.
6813         * modules/unictype/category-none-tests (Files): Likewise.
6814         * modules/unictype/category-of-tests (Files): Likewise.
6815         * modules/unictype/category-or-tests (Files): Likewise.
6816         * modules/unictype/category-test-withtable-tests (Files): Likewise.
6817         * modules/unictype/combining-class-tests (Files): Likewise.
6818         * modules/unictype/ctype-alnum-tests (Files): Likewise.
6819         * modules/unictype/ctype-alpha-tests (Files): Likewise.
6820         * modules/unictype/ctype-blank-tests (Files): Likewise.
6821         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
6822         * modules/unictype/ctype-digit-tests (Files): Likewise.
6823         * modules/unictype/ctype-graph-tests (Files): Likewise.
6824         * modules/unictype/ctype-lower-tests (Files): Likewise.
6825         * modules/unictype/ctype-print-tests (Files): Likewise.
6826         * modules/unictype/ctype-punct-tests (Files): Likewise.
6827         * modules/unictype/ctype-space-tests (Files): Likewise.
6828         * modules/unictype/ctype-upper-tests (Files): Likewise.
6829         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
6830         * modules/unictype/decimal-digit-tests (Files): Likewise.
6831         * modules/unictype/digit-tests (Files): Likewise.
6832         * modules/unictype/mirror-tests (Files): Likewise.
6833         * modules/unictype/numeric-tests (Files): Likewise.
6834         * modules/unictype/property-alphabetic-tests (Files): Likewise.
6835         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
6836         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
6837         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
6838         Likewise.
6839         * modules/unictype/property-bidi-block-separator-tests (Files):
6840         Likewise.
6841         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
6842         Likewise.
6843         * modules/unictype/property-bidi-common-separator-tests (Files):
6844         Likewise.
6845         * modules/unictype/property-bidi-control-tests (Files): Likewise.
6846         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
6847         Likewise.
6848         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
6849         Likewise.
6850         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
6851         Likewise.
6852         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
6853         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
6854         Likewise.
6855         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
6856         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
6857         Likewise.
6858         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
6859         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
6860         * modules/unictype/property-bidi-segment-separator-tests (Files):
6861         Likewise.
6862         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
6863         * modules/unictype/property-byname-tests (Files): Likewise.
6864         * modules/unictype/property-combining-tests (Files): Likewise.
6865         * modules/unictype/property-composite-tests (Files): Likewise.
6866         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
6867         * modules/unictype/property-dash-tests (Files): Likewise.
6868         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
6869         * modules/unictype/property-default-ignorable-code-point-tests (Files):
6870         Likewise.
6871         * modules/unictype/property-deprecated-tests (Files): Likewise.
6872         * modules/unictype/property-diacritic-tests (Files): Likewise.
6873         * modules/unictype/property-extender-tests (Files): Likewise.
6874         * modules/unictype/property-format-control-tests (Files): Likewise.
6875         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
6876         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
6877         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
6878         * modules/unictype/property-hex-digit-tests (Files): Likewise.
6879         * modules/unictype/property-hyphen-tests (Files): Likewise.
6880         * modules/unictype/property-id-continue-tests (Files): Likewise.
6881         * modules/unictype/property-id-start-tests (Files): Likewise.
6882         * modules/unictype/property-ideographic-tests (Files): Likewise.
6883         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
6884         * modules/unictype/property-ids-trinary-operator-tests (Files):
6885         Likewise.
6886         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
6887         * modules/unictype/property-iso-control-tests (Files): Likewise.
6888         * modules/unictype/property-join-control-tests (Files): Likewise.
6889         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
6890         * modules/unictype/property-line-separator-tests (Files): Likewise.
6891         * modules/unictype/property-logical-order-exception-tests (Files):
6892         Likewise.
6893         * modules/unictype/property-lowercase-tests (Files): Likewise.
6894         * modules/unictype/property-math-tests (Files): Likewise.
6895         * modules/unictype/property-non-break-tests (Files): Likewise.
6896         * modules/unictype/property-not-a-character-tests (Files): Likewise.
6897         * modules/unictype/property-numeric-tests (Files): Likewise.
6898         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
6899         * modules/unictype/property-other-default-ignorable-code-point-tests
6900         (Files): Likewise.
6901         * modules/unictype/property-other-grapheme-extend-tests (Files):
6902         Likewise.
6903         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
6904         * modules/unictype/property-other-id-start-tests (Files): Likewise.
6905         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
6906         * modules/unictype/property-other-math-tests (Files): Likewise.
6907         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
6908         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
6909         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
6910         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
6911         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
6912         * modules/unictype/property-private-use-tests (Files): Likewise.
6913         * modules/unictype/property-punctuation-tests (Files): Likewise.
6914         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
6915         * modules/unictype/property-radical-tests (Files): Likewise.
6916         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
6917         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
6918         * modules/unictype/property-space-tests (Files): Likewise.
6919         * modules/unictype/property-terminal-punctuation-tests (Files):
6920         Likewise.
6921         * modules/unictype/property-test-tests (Files): Likewise.
6922         * modules/unictype/property-titlecase-tests (Files): Likewise.
6923         * modules/unictype/property-unassigned-code-value-tests (Files):
6924         Likewise.
6925         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
6926         * modules/unictype/property-uppercase-tests (Files): Likewise.
6927         * modules/unictype/property-variation-selector-tests (Files): Likewise.
6928         * modules/unictype/property-white-space-tests (Files): Likewise.
6929         * modules/unictype/property-xid-continue-tests (Files): Likewise.
6930         * modules/unictype/property-xid-start-tests (Files): Likewise.
6931         * modules/unictype/property-zero-width-tests (Files): Likewise.
6932         * modules/unictype/scripts-tests (Files): Likewise.
6933         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
6934         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
6935         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
6936         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
6937         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
6938         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
6939         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
6940         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
6941         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
6942         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
6943         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
6944         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
6945         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
6946         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
6947         * modules/uninorm/composition-tests (Files): Likewise.
6948         * modules/uninorm/decomposing-form-tests (Files): Likewise.
6949         * modules/uninorm/decomposition-tests (Files): Likewise.
6950         * modules/uninorm/filter-tests (Files): Likewise.
6951         * modules/uninorm/nfc-tests (Files): Likewise.
6952         * modules/uninorm/nfd-tests (Files): Likewise.
6953         * modules/uninorm/nfkc-tests (Files): Likewise.
6954         * modules/uninorm/nfkd-tests (Files): Likewise.
6955         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
6956         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
6957         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
6958         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
6959         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
6960         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
6961         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
6962         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
6963         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
6964         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
6965         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
6966         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
6967         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
6968         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
6969         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
6970         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
6971         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
6972         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
6973         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
6974         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
6975         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
6976         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
6977         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
6978         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
6979         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
6980         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
6981         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
6982         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
6983         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
6984         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
6985         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
6986         * modules/uniwidth/u8-width-tests (Files): Likewise.
6987         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
6988         * modules/uniwidth/u16-width-tests (Files): Likewise.
6989         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
6990         * modules/uniwidth/u32-width-tests (Files): Likewise.
6991         * modules/uniwidth/width-tests (Files): Likewise.
6992         * modules/unlink-tests (Files): Likewise.
6993         * modules/unsetenv-tests (Files): Likewise.
6994         * modules/usleep-tests (Files): Likewise.
6995         * modules/utimens-tests (Files): Likewise.
6996         * modules/utimensat-tests (Files): Likewise.
6997         * modules/vasnprintf-posix-tests (Files): Likewise.
6998         * modules/vasnprintf-tests (Files): Likewise.
6999         * modules/vasprintf-posix-tests (Files): Likewise.
7000         * modules/vasprintf-tests (Files): Likewise.
7001         * modules/vdprintf-posix-tests (Files): Likewise.
7002         * modules/vfprintf-posix-tests (Files): Likewise.
7003         * modules/vprintf-posix-tests (Files): Likewise.
7004         * modules/vsnprintf-posix-tests (Files): Likewise.
7005         * modules/vsnprintf-tests (Files): Likewise.
7006         * modules/vsprintf-posix-tests (Files): Likewise.
7007         * modules/wcrtomb-tests (Files): Likewise.
7008         * modules/wcsnrtombs-tests (Files): Likewise.
7009         * modules/wcsrtombs-tests (Files): Likewise.
7010         * modules/wctype-tests (Files): Likewise.
7011         * modules/wcwidth-tests (Files): Likewise.
7012         * modules/xmemdup0-tests (Files): Likewise.
7013         * modules/xprintf-posix-tests (Files): Likewise.
7014         * modules/xvasprintf-tests (Files): Likewise.
7015
7016 2009-12-24  Eric Blake  <ebb9@byu.net>
7017
7018         test-nanosleep: fix typo
7019         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
7020         patch.
7021         Reported by Bruno Haible.
7022
7023 2009-12-24  Bruno Haible  <bruno@clisp.org>
7024
7025         Reduce namespace pollution on glibc systems.
7026         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
7027         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
7028         systems.
7029         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
7030         <getopt.h> on glibc systems.
7031         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
7032         systems.
7033         * lib/fcntl.c: Include <unistd.h> here instead.
7034
7035 2009-12-24  Bruno Haible  <bruno@clisp.org>
7036
7037         * lib/stdlib.in.h (includes): Fix typo in today's commit.
7038
7039 2009-12-24  Eric Blake  <ebb9@byu.net>
7040
7041         tests: add signature checks
7042         * tests/signature.h (SIGNATURE_CHECK): New file.
7043         * modules/atexit-tests (Files): Use it.
7044         * modules/btowc-tests (Files): Likewise.
7045         * modules/canonicalize-lgpl-tests (Files): Likewise.
7046         * modules/ceilf-tests (Files): Likewise.
7047         * modules/ceill-tests (Files): Likewise.
7048         * modules/chown-tests (Files): Likewise.
7049         * modules/dprintf-posix-tests (Files): Likewise.
7050         * modules/dup2-tests (Files): Likewise.
7051         * modules/dup3-tests (Files): Likewise.
7052         * modules/duplocale-tests (Files): Likewise.
7053         * modules/fchdir-tests (Files): Likewise.
7054         * modules/fcntl-tests (Files): Likewise.
7055         * modules/fdopendir-tests (Files): Likewise.
7056         * modules/fflush-tests (Files): Likewise.
7057         * modules/flock-tests (Files): Likewise.
7058         * modules/floorf-tests (Files): Likewise.
7059         * modules/floorl-tests (Files): Likewise.
7060         * modules/fnmatch-tests (Files): Likewise.
7061         * modules/fopen-tests (Files): Likewise.
7062         * modules/fprintf-posix-tests (Files): Likewise.
7063         * modules/freopen-tests (Files): Likewise.
7064         * modules/frexp-nolibm-tests (Files): Likewise.
7065         * modules/frexp-tests (Files): Likewise.
7066         * modules/frexpl-nolibm-tests (Files): Likewise.
7067         * modules/frexpl-tests (Files): Likewise.
7068         * modules/fseek-tests (Files): Likewise.
7069         * modules/fseeko-tests (Files): Likewise.
7070         * modules/fsync-tests (Files): Likewise.
7071         * modules/ftell-tests (Files): Likewise.
7072         * modules/ftello-tests (Files): Likewise.
7073         * modules/futimens-tests (Files): Likewise.
7074         * modules/getaddrinfo-tests (Files): Likewise.
7075         * modules/getcwd-tests (Files): Likewise.
7076         * modules/getdelim-tests (Files): Likewise.
7077         * modules/getdtablesize-tests (Files): Likewise.
7078         * modules/getgroups-tests (Files): Likewise.
7079         * modules/gethostname-tests (Files): Likewise.
7080         * modules/getline-tests (Files): Likewise.
7081         * modules/getopt-posix-tests (Files): Likewise.
7082         * modules/gettimeofday-tests (Files): Likewise.
7083         * modules/glob-tests (Files): Likewise.
7084         * modules/iconv-tests (Files): Likewise.
7085         * modules/inet_ntop-tests (Files): Likewise.
7086         * modules/inet_pton-tests (Files): Likewise.
7087         * modules/isblank-tests (Files): Likewise.
7088         * modules/lchown-tests (Files): Likewise.
7089         * modules/ldexpl-tests (Files): Likewise.
7090         * modules/link-tests (Files): Likewise.
7091         * modules/linkat-tests (Files): Likewise.
7092         * modules/lseek-tests (Files): Likewise.
7093         * modules/lstat-tests (Files): Likewise.
7094         * modules/mbrtowc-tests (Files): Likewise.
7095         * modules/mbsinit-tests (Files): Likewise.
7096         * modules/mbsnrtowcs-tests (Files): Likewise.
7097         * modules/mbsrtowcs-tests (Files): Likewise.
7098         * modules/memchr-tests (Files): Likewise.
7099         * modules/memcmp-tests (Files): Likewise.
7100         * modules/memmem-tests (Files): Likewise.
7101         * modules/memrchr-tests (Files): Likewise.
7102         * modules/mkdir-tests (Files): Likewise.
7103         * modules/mkfifo-tests (Files): Likewise.
7104         * modules/mkfifoat-tests (Files): Likewise.
7105         * modules/mknod-tests (Files): Likewise.
7106         * modules/nanosleep-tests (Files): Likewise.
7107         * modules/nl_langinfo-tests (Files): Likewise.
7108         * modules/obstack-printf-tests (Files): Likewise.
7109         * modules/open-tests (Files): Likewise.
7110         * modules/openat-tests (Files): Likewise.
7111         * modules/perror-tests (Files): Likewise.
7112         * modules/pipe2-tests (Files): Likewise.
7113         * modules/poll-tests (Files): Likewise.
7114         * modules/popen-tests (Files): Likewise.
7115         * modules/posix_spawn-tests (Files): Likewise.
7116         * modules/posix_spawnp-tests (Files): Likewise.
7117         * modules/pread-tests (Files): Likewise.
7118         * modules/printf-posix-tests (Files): Likewise.
7119         * modules/pty-tests (Files): Likewise.
7120         * modules/random_r-tests (Files): Likewise.
7121         * modules/rawmemchr-tests (Files): Likewise.
7122         * modules/readlink-tests (Files): Likewise.
7123         * modules/remove-tests (Files): Likewise.
7124         * modules/rename-tests (Files): Likewise.
7125         * modules/renameat-tests (Files): Likewise.
7126         * modules/rmdir-tests (Files): Likewise.
7127         * modules/round-tests (Files): Likewise.
7128         * modules/roundf-tests (Files): Likewise.
7129         * modules/roundl-tests (Files): Likewise.
7130         * modules/select-tests (Files): Likewise.
7131         * modules/setenv-tests (Files): Likewise.
7132         * modules/sigaction-tests (Files): Likewise.
7133         * modules/sleep-tests (Files): Likewise.
7134         * modules/snprintf-posix-tests (Files): Likewise.
7135         * modules/snprintf-tests (Files): Likewise.
7136         * modules/sprintf-posix-tests (Files): Likewise.
7137         * modules/stat-tests (Files): Likewise.
7138         * modules/strcasestr-tests (Files): Likewise.
7139         * modules/strchrnul-tests (Files): Likewise.
7140         * modules/strerror-tests (Files): Likewise.
7141         * modules/strsignal-tests (Files): Likewise.
7142         * modules/strstr-tests (Files): Likewise.
7143         * modules/strtod-tests (Files): Likewise.
7144         * modules/strverscmp-tests (Files): Likewise.
7145         * modules/symlink-tests (Files): Likewise.
7146         * modules/symlinkat-tests (Files): Likewise.
7147         * modules/times-tests (Files): Likewise.
7148         * modules/trunc-tests (Files): Likewise.
7149         * modules/truncf-tests (Files): Likewise.
7150         * modules/truncl-tests (Files): Likewise.
7151         * modules/tsearch-tests (Files): Likewise.
7152         * modules/uname-tests (Files): Likewise.
7153         * modules/unlink-tests (Files): Likewise.
7154         * modules/unsetenv-tests (Files): Likewise.
7155         * modules/usleep-tests (Files): Likewise.
7156         * modules/utimensat-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/wcwidth-tests (Files): Likewise.
7168         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
7169         * tests/test-isinf.c (isinf): Likewise.
7170         * tests/test-isnan.c (isnan): Likewise.
7171         * tests/test-signbit.c (signbit): Likewise.
7172         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
7173         declaration, either as macro or with correct signature.
7174         (select): Ensure function under test is declared with correct
7175         signature in correct header.
7176         * tests/test-atexit.c (atexit): Likewise.
7177         * tests/test-btowc.c (btowc): Likewise.
7178         * tests/test-canonicalize-lgpl.c (realpath)
7179         (canonicalize_file_name): Likewise.
7180         * tests/test-ceilf1.c (ceilf): Likewise.
7181         * tests/test-ceill.c (ceill): Likewise.
7182         * tests/test-chown.c (chown): Likewise.
7183         * tests/test-dprintf-posix.c (dprintf): Likewise.
7184         * tests/test-dup2.c (dup2): Likewise.
7185         * tests/test-dup3.c (dup3): Likewise.
7186         * tests/test-duplocale.c (duplocale): Likewise.
7187         * tests/test-fchdir.c (fchdir): Likewise.
7188         * tests/test-fchownat.c (fchownat): Likewise.
7189         * tests/test-fcntl.c (fcntl): Likewise.
7190         * tests/test-fdopendir.c (fdopendir): Likewise.
7191         * tests/test-fflush.c (fflush): Likewise.
7192         * tests/test-flock.c (flock): Likewise.
7193         * tests/test-floorf1.c (floorf): Likewise.
7194         * tests/test-floorl.c (floorl): Likewise.
7195         * tests/test-fnmatch.c (fnmatch): Likewise.
7196         * tests/test-fopen.c (fopen): Likewise.
7197         * tests/test-fprintf-posix.c (fprintf): Likewise.
7198         * tests/test-freopen.c (freopen): Likewise.
7199         * tests/test-frexp.c (frexp): Likewise.
7200         * tests/test-frexpl.c (frexpl): Likewise.
7201         * tests/test-fseek.c (fseek): Likewise.
7202         * tests/test-fseeko.c (fseeko): Likewise.
7203         * tests/test-fstatat.c (fstatat): Likewise.
7204         * tests/test-fsync.c (fsync): Likewise.
7205         * tests/test-ftell.c (ftell): Likewise.
7206         * tests/test-ftello.c (ftello): Likewise.
7207         * tests/test-futimens.c (futimens): Likewise.
7208         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
7209         (gai_strerror): Likewise.
7210         * tests/test-getcwd.c (getcwd): Likewise.
7211         * tests/test-getdelim.c (getdelim): Likewise.
7212         * tests/test-getdtablesize.c (getdtablesize): Likewise.
7213         * tests/test-getgroups.c (getgroups): Likewise.
7214         * tests/test-gethostname.c (gethostname): Likewise.
7215         * tests/test-getline.c (getline): Likewise.
7216         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
7217         Likewise.
7218         * tests/test-gettimeofday.c (gettimeofday): Likewise.
7219         * tests/test-glob.c (glob, globfree): Likewise.
7220         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
7221         * tests/test-inet_ntop.c (inet_ntop): Likewise.
7222         * tests/test-inet_pton.c (inet_pton): Likewise.
7223         * tests/test-isblank.c (isblank): Likewise.
7224         * tests/test-lchown.c (lchown): Likewise.
7225         * tests/test-ldexpl.c (ldexpl): Likewise.
7226         * tests/test-link.c (link): Likewise.
7227         * tests/test-linkat.c (linkat): Likewise.
7228         * tests/test-lseek.c (lseek): Likewise.
7229         * tests/test-lstat.c (lstat): Likewise.
7230         * tests/test-mbrtowc.c (mbrtowc): Likewise.
7231         * tests/test-mbsinit.c (mbsinit): Likewise.
7232         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
7233         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
7234         * tests/test-memchr.c (memchr): Likewise.
7235         * tests/test-memcmp.c (memcmp): Likewise.
7236         * tests/test-memmem.c (memmem): Likewise.
7237         * tests/test-memrchr.c (memrchr): Likewise.
7238         * tests/test-mkdir.c (mkdir): Likewise.
7239         * tests/test-mkdirat.c (mkdirat): Likewise.
7240         * tests/test-mkfifo.c (mkfifo): Likewise.
7241         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
7242         * tests/test-mknod.c (mknod): Likewise.
7243         * tests/test-nanosleep.c (nanosleep): Likewise.
7244         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
7245         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
7246         Likewise.
7247         * tests/test-open.c (open): Likewise.
7248         * tests/test-openat.c (openat): Likewise.
7249         * tests/test-perror.c (perror): Likewise.
7250         * tests/test-pipe2.c (pipe2): Likewise.
7251         * tests/test-poll.c (poll): Likewise.
7252         * tests/test-popen.c (popen, pclose): Likewise.
7253         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
7254         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
7255         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
7256         (posix_spawn_file_actions_destroy)
7257         (posix_spawn_file_actions_addclose)
7258         (posix_spawn_file_actions_addopen)
7259         (posix_spawn_file_actions_adddup2): Likewise.
7260         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
7261         * tests/test-pread.c (pread): Likewise.
7262         * tests/test-printf-posix.c (printf): Likewise.
7263         * tests/test-pty.c (openpty, forkpty): Likewise.
7264         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
7265         (random_r): Likewise.
7266         * tests/test-rawmemchr.c (rawmemchr): Likewise.
7267         * tests/test-readlink.c (readlink): Likewise.
7268         * tests/test-remove.c (remove): Likewise.
7269         * tests/test-rename.c (rename): Likewise.
7270         * tests/test-renameat.c (renameat): Likewise.
7271         * tests/test-rmdir.c (rmdir): Likewise.
7272         * tests/test-round1.c (round): Likewise.
7273         * tests/test-roundf1.c (roundf): Likewise.
7274         * tests/test-roundl.c (roundl): Likewise.
7275         * tests/test-setenv.c (setenv): Likewise.
7276         * tests/test-sigaction.c (sigaction): Likewise.
7277         * tests/test-sleep.c (sleep): Likewise.
7278         * tests/test-snprintf.c (snprintf): Likewise.
7279         * tests/test-sprintf-posix.c (sprintf): Likewise.
7280         * tests/test-stat.c (stat): Likewise.
7281         * tests/test-stpncpy.c (stpncpy): Likewise.
7282         * tests/test-strcasestr.c (strcasestr): Likewise.
7283         * tests/test-strchrnul.c (strchrnul): Likewise.
7284         * tests/test-strerror.c (strerror): Likewise.
7285         * tests/test-strsignal.c (strsignal): Likewise.
7286         * tests/test-strstr.c (strstr): Likewise.
7287         * tests/test-strtod.c (strtod): Likewise.
7288         * tests/test-strverscmp.c (strverscmp): Likewise.
7289         * tests/test-symlink.c (symlink): Likewise.
7290         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
7291         * tests/test-times.c (times): Likewise.
7292         * tests/test-trunc1.c (trunc): Likewise.
7293         * tests/test-truncf1.c (truncf): Likewise.
7294         * tests/test-truncl.c (truncl): Likewise.
7295         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
7296         Likewise.
7297         * tests/test-uname.c (uname): Likewise.
7298         * tests/test-unlink.c (unlink): Likewise.
7299         * tests/test-unlinkat.c (unlinkat): Likewise.
7300         * tests/test-unsetenv.c (unsetenv): Likewise.
7301         * tests/test-usleep.c (usleep): Likewise.
7302         * tests/test-utimensat.c (utimensat): Likewise.
7303         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
7304         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
7305         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
7306         * tests/test-vprintf-posix.c (vprintf): Likewise.
7307         * tests/test-vsnprintf.c (vsnprintf): Likewise.
7308         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
7309         * tests/test-wcrtomb.c (wcrtomb): Likewise.
7310         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
7311         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
7312         * tests/test-wcwidth.c (wcwidth): Likewise.
7313
7314         build: pull in conditional headers during GNULIB_POSIXCHECK
7315         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
7316         definitions from any conditionally-included headers.
7317         * lib/stdlib.in.h (includes): Likewise.
7318         * lib/unistd.in.h (includes): Likewise.
7319
7320 2009-12-24  Bruno Haible  <bruno@clisp.org>
7321
7322         * tests/test-argv-iter.c: Include header file being tested immediately
7323         after config.h.
7324         * tests/test-base64.c: Likewise.
7325         * tests/test-flock.c: Likewise.
7326         * tests/test-fsync.c: Likewise.
7327         * tests/test-getdate.c: Likewise.
7328         * tests/test-getndelim2.c: Likewise.
7329         * tests/test-isfinite.c: Likewise.
7330         * tests/test-isinf.c: Likewise.
7331         * tests/test-strerror.c: Likewise.
7332         * tests/test-strsignal.c: Likewise.
7333
7334 2009-12-23  Eric Blake  <ebb9@byu.net>
7335
7336         unistd: work around cygwin bug
7337         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
7338         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
7339         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
7340
7341 2009-12-23  Bruno Haible  <bruno@clisp.org>
7342
7343         localename: More tests.
7344         * tests/test-localename.c (SIZEOF): New macro.
7345         (categories): New variable.
7346         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
7347         test_locale_name_default): Add test w.r.t. thread locale.
7348         (test_locale_name_thread): New function.
7349         (main): Invoke it.
7350
7351         localename: Make aware of thread locale.
7352         * lib/localename.h (gl_locale_name_thread): New declaration.
7353         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
7354         behaviour with respect to thread locale.
7355         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
7356         <langinfo.h>, glthread/lock.h.
7357         (SIZE_BITS): New macro.
7358         (string_hash): New function.
7359         (struct hash_node): New type.
7360         (HASH_TABLE_SIZE): New macro.
7361         (struniq_hash_table, struniq_lock): New variables.
7362         (struniq): New function.
7363         (gl_locale_name_thread): New function.
7364         (gl_locale_name): Invoke it.
7365         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
7366         * modules/localename (Depends-on): Add lock.
7367         Reported by Mike Gran <spk121@yahoo.com>.
7368
7369 2009-12-23  Eric Blake  <ebb9@byu.net>
7370
7371         va-args: new module
7372         * modules/va-args: New file.
7373         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
7374         * MODULES.html.sh (Core language properties): Mention it.
7375
7376         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
7377         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
7378         named alias for __attribute__((__unused__)).
7379         * lib/chown.c: Update client.
7380         * lib/fchmodat.c: Likewise.
7381         * lib/fts.c: Likewise.
7382         * lib/getdate.y: Likewise.
7383         * lib/getgroups.c: Likewise.
7384         * lib/getopt.c: Likewise.
7385         * lib/getugroups.c: Likewise.
7386         * lib/mkdir.c: Likewise.
7387         * lib/mkfifo.c: Likewise.
7388         * lib/mkfifoat.c: Likewise.
7389         * lib/mknod.c: Likewise.
7390         * lib/mknodat.c: Likewise.
7391         * lib/readlink.c: Likewise.
7392         * lib/se-context.in.h: Likewise.
7393         * lib/se-selinux.in.h: Likewise.
7394         * lib/sockets.c: Likewise.
7395         * lib/symlink.c: Likewise.
7396         * lib/symlinkat.c: Likewise.
7397         * lib/unicodeio.c: Likewise.
7398         * lib/unistr.h: Likewise.
7399         * tests/test-areadlink.c: Likewise.
7400         * tests/test-areadlinkat.c: Likewise.
7401         * tests/test-filenamecat.c: Likewise.
7402         * tests/test-fseeko.c: Likewise.
7403         * tests/test-ftello.c: Likewise.
7404         * tests/test-getdate.c: Likewise.
7405         * tests/test-getgroups.c: Likewise.
7406         * tests/test-gethostname.c: Likewise.
7407         * tests/test-quotearg.c: Likewise.
7408         * tests/test-version-etc.c: Likewise.
7409         * tests/test-xalloc-die.c: Likewise.
7410         * tests/test-xfprintf-posix.c: Likewise.
7411         * tests/test-xprintf-posix.c: Likewise.
7412         * tests/test-xvasprintf.c: Likewise.
7413
7414         tests: avoid compiler warnings
7415         * tests/test-fcntl.c (main): Delete unused parameters.
7416         * tests/test-freopen-safer.c (main): Likewise.
7417         * tests/test-xalloc-die.c (main): Mark unused parameters.
7418         * tests/test-fseeko.c (main): Likewise.
7419         * tests/test-ftello.c (main): Likewise.
7420         * tests/test-nanosleep.c (main): Avoid declaration warning.
7421         * tests/test-sleep.c (main): Likewise.
7422         * tests/test-unsetenv.c (main): Silence warning about string
7423         literal.
7424         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
7425
7426 2009-12-23  Bruno Haible  <bruno@clisp.org>
7427
7428         * tests/test-localename.c (test_locale_name): New function, extracted
7429         from main. Also test mixed situations.
7430         (test_locale_name_posix, test_locale_name_environ,
7431         test_locale_name_default): New functions.
7432         (main): Invoke them all.
7433         * modules/localename-tests (configure.ac): Test for newlocale.
7434
7435 2009-12-23  Bruno Haible  <bruno@clisp.org>
7436
7437         unistd: Ensure getcwd gets declared before being overridden.
7438         * lib/unistd.in.h: Conditionally include <io.h>.
7439
7440 2009-12-22  Bruno Haible  <bruno@clisp.org>
7441
7442         wchar: Diagnose broken combination of glibc and gcc versions and flags.
7443         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
7444         (gl_WCHAR_H): Invoke it.
7445         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
7446         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
7447         Reported by Karl Berry <karl@freefriends.org>.
7448
7449 2009-12-22  Eric Blake  <ebb9@byu.net>
7450
7451         math, unistd: avoid redundant includes
7452         * lib/math.in.h (isnan): No need to re-include <math.h>.
7453         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
7454
7455         getsubopt: work around cygwin bug
7456         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
7457         avoid conflicting with system getsubopt.
7458         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
7459         bug.
7460
7461         getopt: synchronize from glibc
7462         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
7463         parameter order.  Adjust all callers.
7464         (_getopt_internal_r, main): Adjust quoting in error messages.
7465         Drop considerations for outdated POSIX 1003.2 error message.
7466         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
7467         callers.
7468         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
7469
7470         test-getopt: test stderr behavior
7471         * modules/getopt-posix-tests (Depends-on): Add dup2.
7472         * tests/test-getopt.c (ASSERT): Avoid stderr.
7473         (main): Move stderr to a temporary file.
7474         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
7475         Instead, add parameter to inform caller if output occurred.
7476         (test_getopt): Adjust all existing tests to expect silence, and
7477         add new tests of leading ":".
7478         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
7479         glibc shortcomings with leading "-:" or "+:" in optstring.
7480         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
7481         Likewise.
7482         * doc/posix-functions/getopt.texi (getopt): Likewise.
7483
7484         test-getopt: enhance test
7485         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
7486         supports optind=0.
7487         * tests/test-getopt.c (OPTIND_MIN): Move...
7488         * tests/test-getopt.h (OPTIND_MIN): ...here.
7489         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
7490         Require that optind=0 works, since modern BSD supports it in
7491         addition to optreset, and since coreutils expects it.
7492         (test_getopt_long_only): New test.
7493         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
7494         glibc shortcomings with 'W;', and enforcement of optind=0.
7495         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
7496         Likewise.
7497
7498 2009-12-21  Bruno Haible  <bruno@clisp.org>
7499
7500         localename: Improvements for MacOS X and Cygwin.
7501         * lib/localename.h (gl_locale_name_environ): New declaration.
7502         * lib/localename.c (gl_locale_name_environ): New function, extracted from
7503         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
7504         (gl_locale_name_posix): Invoke it.
7505         (gl_locale_name_default): Add comments. Use Windows native API also on
7506         Cygwin.
7507
7508 2009-12-21  Bruno Haible  <bruno@clisp.org>
7509
7510         Update list of Win32 locale ids.
7511         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
7512         (LANG_SAMI): Renamed from LANG_SAAMI.
7513         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
7514         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
7515         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
7516         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
7517         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
7518         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
7519         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
7520         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
7521         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
7522         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
7523         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
7524         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
7525         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
7526         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
7527         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
7528         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
7529         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
7530         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
7531         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
7532         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
7533         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
7534         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
7535         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
7536         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
7537         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
7538         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
7539         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
7540         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
7541         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
7542         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
7543         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
7544         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
7545         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
7546         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
7547         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
7548         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
7549         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
7550         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
7551         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
7552         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
7553         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
7554         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
7555         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
7556         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
7557         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
7558         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
7559         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
7560         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
7561         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
7562         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
7563         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
7564         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
7565         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
7566         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
7567         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
7568         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
7569         Add more languages and countries for Sami, Sorbian. Add more countries
7570         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
7571         for Pashto. Change country for Syriac, Tswana.
7572
7573 2009-12-21  Eric Blake  <ebb9@byu.net>
7574
7575         test-utimens: avoid spurious failure
7576         * tests/test-chown.h (nap): Factor...
7577         * tests/nap.h: ...into new file.
7578         * tests/test-lchown.h (nap): Avoid duplication.
7579         * tests/test-utimens-common.h (nap): Use shared implementation,
7580         necessary on file systems with 1-second resolution.
7581         * modules/chown-tests (Files): Include new file.
7582         * modules/fdutimensat-tests (Files): Likewise.
7583         * modules/futimens-tests (Files): Likewise.
7584         * modules/lchown-tests (Files): Likewise.
7585         * modules/openat-tests (Files): Likewise.
7586         * modules/utimens-tests (Files): Likewise.
7587         * modules/utimensat-tests (Files): Likewise.
7588
7589 2009-12-19  Eric Blake  <ebb9@byu.net>
7590
7591         futimens, utimensat: work around Linux bug
7592         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
7593         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
7594         * lib/utimensat.c (rpl_utimensat): Work around it.
7595         * lib/futimens.c (rpl_futimens): Adjust comment.
7596
7597         utimens: work around Linux ctime bug
7598         * lib/utimens.c (detect_ctime_bug): New helper function.
7599         (update_timespec): Differentiate between workaround needed for
7600         this bug vs. what is needed for systems that lack utimensat.
7601         (fdutimens, lutimens): Work around bug.
7602
7603         utimens: check for ctime update
7604         * tests/test-utimens-common.h (check_ctime): Define.
7605         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
7606         * tests/test-futimens.h (test_futimens): Likewise.
7607         * tests/test-lutimens.h (test_lutimens): Likewise.
7608         * doc/posix-functions/futimens.texi (futimens): Document the bug.
7609         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
7610
7611 2009-12-19  Bruno Haible  <bruno@clisp.org>
7612
7613         dprintf-posix: Check against memory leak fixed on 2009-12-15.
7614         * tests/test-dprintf-posix2.sh: New file.
7615         * tests/test-dprintf-posix2.c: New file.
7616         * modules/dprintf-posix-tests (Files): Add them.
7617         (configure.ac): Check for getrlimit and setrlimit.
7618         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
7619
7620 2009-12-19  Bruno Haible  <bruno@clisp.org>
7621
7622         fprintf-posix: Check against memory leak fixed on 2009-12-15.
7623         * tests/test-fprintf-posix3.sh: New file.
7624         * tests/test-fprintf-posix3.c: New file.
7625         * modules/fprintf-posix-tests (Files): Add them.
7626         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
7627
7628 2009-12-19  Eric Blake  <ebb9@byu.net>
7629
7630         dirfd: fix prototype
7631         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
7632         * lib/dirfd.c (dirfd): Likewise.
7633
7634         canonicalize: reduce memory usage
7635         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
7636         allocation to size.
7637         Reported by Solar Designer <solar@openwall.com>.
7638
7639 2009-12-19  Bruno Haible  <bruno@clisp.org>
7640
7641         New module attribute 'Applicability'.
7642         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
7643         * gnulib-tool: New option --extract-applicability.
7644         (func_usage): Document it.
7645         (sed_extract_prog): Recognize it.
7646         (func_get_applicability): New function.
7647         (func_import): Generalize handling of 'link-warning' module.
7648         * modules/link-warning (Applicability): New section.
7649         * modules/arg-nonnull (Applicability): New section.
7650         Repoted by Simon Josefsson <simon@josefsson.org>.
7651
7652 2009-12-19  Bruno Haible  <bruno@clisp.org>
7653
7654         fflush: tweak
7655         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
7656         * lib/fseeko.c (rpl_fseeko): Likewise.
7657
7658 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
7659
7660         * lib/gl_list.h: Fix typo in comment.
7661
7662 2009-12-16  Eric Blake  <ebb9@byu.net>
7663
7664         fcntl: use to simplify other modules
7665         * modules/cloexec (Depends-on): Add fcntl.
7666         * modules/fchdir (Depends-on): Likewise.
7667         * modules/fd-safer-flag (Depends-on): Likewise.
7668         * modules/unistd-safer (Depends-on): Likewise.
7669         * modules/dup3 (configure.ac): Set module indicator.
7670         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
7671         missing.
7672         * lib/fchdir.c (_gl_register_dup): Fix comment.
7673         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
7674         * lib/dup-safer.c (dup_safer): Likewise.
7675         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
7676         * lib/dup3.c (dup3): Likewise.
7677         * tests/test-fchdir.c (main): Enhance test.
7678         Fixes a dup_cloexec bug reported by OndÅ™ej Vašík.
7679
7680         fcntl: port portions of fcntl to mingw
7681         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
7682         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
7683         replacement for mingw.
7684         * modules/fcntl (Description): Update.
7685         (Depends-on): Add dup2.
7686         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
7687         * modules/fcntl-h (Makefile.am): Substitute it.
7688         * lib/fcntl.in.h (fcntl): Update declaration.
7689         (F_DUPFD, F_GETFD): New macros, when needed.
7690         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
7691         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
7692         * tests/test-fcntl.c (check_flags, main): Enhance test for items
7693         we now guarantee.
7694
7695         fcntl: work around cygwin bug in F_DUPFD
7696         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
7697         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
7698         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
7699         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
7700         * doc/posix-functions/fcntl.texi (fcntl): Document it.
7701
7702         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
7703         * modules/fcntl (Files): List new files.
7704         (configure.ac): Run a test.
7705         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
7706         * lib/fcntl.c (rpl_fcntl): Likewise.
7707         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
7708         (gl_FCNTL_H): Always replace fcntl.h.
7709         * modules/fcntl-h (Makefile.am): Substitute witnesses.
7710         * lib/fcntl.in.h (fcntl): Declare replacement.
7711         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
7712         needed, plus a witness.
7713         * doc/posix-functions/fcntl.texi (fcntl): Document this.
7714         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
7715         * tests/test-fcntl.c: New file.
7716         * modules/fcntl-tests: Likewise.
7717
7718         binary-io: avoid potential compilation warning
7719         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
7720         directives.
7721
7722         fflush: avoid compilation error on NetBSD
7723         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
7724         between off_t and fpos_t, since the latter is sometimes a struct.
7725         * lib/fseeko.c (rpl_fseeko): Likewise.
7726         Reported by Alexander Nasonov <alnsn@yandex.ru>.
7727
7728 2009-12-15  Eric Blake  <ebb9@byu.net>
7729
7730         fcntl-h, stdio, sys_ioctl: fix declarations
7731         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
7732         function must not take arguments.
7733         * lib/sys_ioctl.in.h (ioctl): Likewise.
7734         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
7735         (open): Add a link warning.
7736
7737 2009-12-15  Jim Meyering  <meyering@redhat.com>
7738
7739         areadlink, areadlink-with-size: relax license to LGPLv2+
7740         * modules/areadlink (License): Relax to LGPLv2+.
7741         * modules/areadlink-with-size (License): Likewise.
7742
7743 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
7744             Bruno Haible  <bruno@clisp.org>
7745
7746         *printf: Fix memory leak.
7747         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
7748         * lib/vfprintf.c (vfprintf): Likewise.
7749         * lib/dprintf.c (dprintf): Likewise.
7750         * lib/vdprintf.c (vdprintf): Likewise.
7751
7752 2009-12-14  Eric Blake  <ebb9@byu.net>
7753
7754         accept4: adjust module dependencies
7755         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
7756
7757         utimens: one more try at avoiding compiler warning
7758         * lib/utimens.c (lutimens): Lower scope of result.
7759
7760 2009-12-13  Bruno Haible  <bruno@clisp.org>
7761
7762         Move the malloc checking from module 'list' to new module 'xlist'.
7763         * modules/xlist: New file.
7764         * lib/gl_xlist.h: New file.
7765         * lib/gl_xlist.c: New file.
7766         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
7767         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
7768         gl_list_add_last, gl_list_add_before, gl_list_add_after,
7769         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
7770         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
7771         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
7772         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
7773         gl_sortedlist_nx_add): New declarations.
7774         (struct gl_list_implementation): Rename and change methods accordingly.
7775         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
7776         (gl_list_nx_create): Renamed from gl_list_create.
7777         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
7778         (gl_list_nx_set_at): Renamed from gl_list_set_at.
7779         (gl_list_nx_add_first): Renamed from gl_list_add_first.
7780         (gl_list_nx_add_last): Renamed from gl_list_add_last.
7781         (gl_list_nx_add_before): Renamed from gl_list_add_before.
7782         (gl_list_nx_add_after): Renamed from gl_list_add_after.
7783         (gl_list_nx_add_at): Renamed from gl_list_add_at.
7784         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
7785         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
7786         gl_list_create_empty.
7787         (gl_list_nx_create): Renamed from gl_list_create.
7788         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
7789         (gl_list_nx_set_at): Renamed from gl_list_set_at.
7790         (gl_list_nx_add_first): Renamed from gl_list_add_first.
7791         (gl_list_nx_add_last): Renamed from gl_list_add_last.
7792         (gl_list_nx_add_before): Renamed from gl_list_add_before.
7793         (gl_list_nx_add_after): Renamed from gl_list_add_after.
7794         (gl_list_nx_add_at): Renamed from gl_list_add_at.
7795         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
7796         * lib/gl_array_list.c: Don't include xalloc.h.
7797         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
7798         NULL upon out-of-memory.
7799         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
7800         out-of-memory.
7801         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
7802         Change return type to 'int'.
7803         (gl_array_nx_set_at): Renamed from gl_array_set_at.
7804         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
7805         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
7806         upon out-of-memory.
7807         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
7808         upon out-of-memory.
7809         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
7810         upon out-of-memory.
7811         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
7812         upon out-of-memory.
7813         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
7814         out-of-memory.
7815         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
7816         Update.
7817         (gl_array_list_implementation): Update.
7818         * lib/gl_carray_list.c: Don't include xalloc.h.
7819         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
7820         Return NULL upon out-of-memory.
7821         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
7822         out-of-memory.
7823         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
7824         Change return type to 'int'.
7825         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
7826         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
7827         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
7828         upon out-of-memory.
7829         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
7830         upon out-of-memory.
7831         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
7832         out-of-memory.
7833         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
7834         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
7835         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
7836         Update.
7837         (gl_carray_list_implementation): Update.
7838         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
7839         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
7840         gl_linked_create_empty. Return NULL upon out-of-memory.
7841         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
7842         out-of-memory.
7843         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
7844         Change return type to 'int'. Return -1 upon out-of-memory.
7845         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
7846         out-of-memory.
7847         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
7848         upon out-of-memory.
7849         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
7850         upon out-of-memory.
7851         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
7852         NULL upon out-of-memory.
7853         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
7854         upon out-of-memory.
7855         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
7856         out-of-memory.
7857         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
7858         Update.
7859         * lib/gl_linked_list.c: Don't include xalloc.h.
7860         (gl_linked_list_implementation): Update.
7861         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
7862         (add_to_bucket): Change return type to 'int'.
7863         (gl_linkedhash_list_implementation): Update.
7864         * lib/gl_anytree_list1.h (free_subtree): New function.
7865         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
7866         gl_tree_create_empty. Return NULL upon out-of-memory.
7867         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
7868         Change return type to 'int'. Return -1 upon out-of-memory.
7869         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
7870         out-of-memory.
7871         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
7872         (gl_tree_remove_node): New function, moved here from
7873         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
7874         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
7875         Update.
7876         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
7877         malloc, not xmalloc. Return NULL upon out-of-memory.
7878         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
7879         out-of-memory.
7880         (gl_tree_remove_node_from_tree): New function, extracted from
7881         gl_tree_remove_node.
7882         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
7883         upon out-of-memory.
7884         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
7885         out-of-memory.
7886         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
7887         upon out-of-memory.
7888         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
7889         upon out-of-memory.
7890         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
7891         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
7892         not xmalloc. Return NULL upon out-of-memory.
7893         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
7894         out-of-memory.
7895         (gl_tree_remove_node_from_tree): New function, extracted from
7896         gl_tree_remove_node.
7897         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
7898         upon out-of-memory.
7899         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
7900         out-of-memory.
7901         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
7902         upon out-of-memory.
7903         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
7904         upon out-of-memory.
7905         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
7906         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
7907         gl_anytree_list1.h before gl_anyavltree_list2.h.
7908         (gl_avltree_list_implementation): Update.
7909         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
7910         gl_anytree_list1.h before gl_anyavltree_list2.h.
7911         (gl_rbtree_list_implementation): Update.
7912         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
7913         Change return type to 'int'. Return -1 upon out-of-memory. Use
7914         __builtin_expect.
7915         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
7916         (gl_avltreehash_list_implementation): Update.
7917         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
7918         (gl_rbtreehash_list_implementation): Update.
7919         * modules/array-list (Depends-on): Remove xalloc.
7920         * modules/carray-list (Depends-on): Likewise.
7921         * modules/linked-list (Depends-on): Likewise.
7922         * modules/linkedhash-list (Depends-on): Likewise.
7923         * modules/avltree-list (Depends-on): Likewise.
7924         * modules/rbtree-list (Depends-on): Likewise.
7925         * modules/avltreehash-list (Depends-on): Likewise.
7926         * modules/rbtreehash-list (Depends-on): Likewise.
7927
7928         * modules/xsublist: New file.
7929         * lib/gl_xsublist.h: New file.
7930         * lib/gl_xsublist.c: New file.
7931         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
7932         (gl_sublist_nx_create): New declaration.
7933         * lib/gl_sublist.c: Don't include xalloc.h.
7934         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
7935         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
7936         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
7937         Change return type to 'int'. Return -1 upon out-of-memory.
7938         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
7939         upon out-of-memory.
7940         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
7941         NULL upon out-of-memory.
7942         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
7943         upon out-of-memory.
7944         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
7945         NULL upon out-of-memory.
7946         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
7947         NULL upon out-of-memory.
7948         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
7949         upon out-of-memory.
7950         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
7951         (gl_sublist_list_implementation): Update.
7952         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
7953         upon out-of-memory.
7954         * modules/sublist (Depends-on): Remove xalloc.
7955
7956         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
7957         * tests/test-carray_list.c: Likewise.
7958         * tests/test-linked_list.c: Likewise.
7959         * tests/test-linkedhash_list.c: Likewise.
7960         * tests/test-avltree_list.c: Likewise.
7961         * tests/test-rbtree_list.c: Likewise.
7962         * tests/test-avltreehash_list.c: Likewise.
7963         * tests/test-rbtreehash_list.c: Likewise.
7964         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
7965         * modules/carray-list-tests (Makefile.am): Likewise.
7966         * modules/linked-list-tests (Makefile.am): Likewise.
7967         * modules/linkedhash-list-tests (Makefile.am): Likewise.
7968         * modules/avltree-list-tests (Makefile.am): Likewise.
7969         * modules/rbtree-list-tests (Makefile.am): Likewise.
7970         * modules/avltreehash-list-tests (Makefile.am): Likewise.
7971         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
7972
7973         * NEWS: Mention the changes.
7974
7975         * lib/clean-temp.c: Include gl_xlist.h.
7976         * modules/clean-temp (Depends-on): Add xlist.
7977
7978         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
7979         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
7980
7981         * tests/test-array_oset.c: Include gl_xlist.h.
7982         * modules/array-oset-tests (Depends-on): Add xlist.
7983
7984         Reported by José E. Marchesi <jemarch@gnu.org>.
7985
7986 2009-12-13  Bruno Haible  <bruno@clisp.org>
7987
7988         Move the malloc checking from module 'oset' to new module 'xoset'.
7989         * modules/xoset: New file.
7990         * lib/gl_xoset.h: New file.
7991         * lib/gl_xoset.c: New file.
7992         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
7993         declarations.
7994         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
7995         (struct gl_oset_implementation): Rename and change methods accordingly.
7996         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
7997         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
7998         'int'. Mark as __warn_unused_result__.
7999         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
8000         gl_oset_create_empty.
8001         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
8002         'int'.
8003         * lib/gl_array_oset.c: Don't include xalloc.h.
8004         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
8005         malloc, not xmalloc.
8006         (grow): Change return type to 'int'. Don't call xalloc_die.
8007         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
8008         to 'int'.
8009         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
8010         'int'.
8011         (gl_array_oset_implementation): Update.
8012         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
8013         gl_tree_create_empty.
8014         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
8015         'int'.
8016         * lib/gl_avltree_oset.c: Don't include xalloc.h.
8017         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
8018         xmalloc.
8019         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
8020         not xmalloc.
8021         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
8022         xmalloc.
8023         (gl_avltree_oset_implementation): Update.
8024         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
8025         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
8026         xmalloc.
8027         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
8028         not xmalloc.
8029         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
8030         xmalloc.
8031         (gl_rbtree_oset_implementation): Update.
8032         * modules/array-oset (Depends-on): Remove xalloc.
8033         * modules/avltree-oset (Depends-on): Likewise.
8034         * modules/rbtree-oset (Depends-on): Likewise.
8035         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
8036         * tests/test-avltree_oset.c: Likewise.
8037         * tests/test-rbtree_oset.c: Likewise.
8038         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
8039         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
8040         * modules/rbtree-oset-tests (Makefile.am): Likewise.
8041         * NEWS: Mention the change.
8042
8043 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
8044
8045         maint.mk: allow a project to override release-prep commands
8046         * top/maint.mk (alpha, beta, stable): Move release-preparatory
8047         commands into a new rule.
8048         (release-prep): New rule.
8049         (release-prep-hook): New overridable variable.
8050
8051 2009-12-13  Bruno Haible  <bruno@clisp.org>
8052
8053         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
8054
8055 2009-12-13  Jim Meyering  <meyering@redhat.com>
8056
8057         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
8058         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
8059
8060 2009-12-12  Bruno Haible  <bruno@clisp.org>
8061
8062         duplocale: Tweak.
8063         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
8064
8065 2009-12-12  Karl Berry  <karl@gnu.org>
8066
8067         * config/srclist.txt (strtoll.c): tab changes, no more sync.
8068
8069 2009-12-12  Bruno Haible  <bruno@clisp.org>
8070
8071         * m4/po.m4: Undo incorrect untabification.
8072
8073 2009-12-12  Bruno Haible  <bruno@clisp.org>
8074
8075         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
8076         * modules/c-strtod (Depends-on): Add locale.
8077         * modules/c-strtold (Depends-on): Likewise.
8078
8079 2009-12-12  Bruno Haible  <bruno@clisp.org>
8080
8081         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
8082
8083 2009-12-11  Eric Blake  <ebb9@byu.net>
8084
8085         setenv: relax requirement in light of POSIX ruling
8086         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
8087         not NULL.
8088         * tests/test-setenv.c (main): Relax test.
8089         * tests/test-unsetenv.c (main): Likewise.
8090         * doc/posix-functions/setenv.texi (setenv): Document this.
8091         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
8092
8093 2009-12-11  Bruno Haible  <bruno@clisp.org>
8094
8095         New module 'fd-safer-flag'.
8096         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
8097         * lib/dup-safer.c (dup_safer_flag): Remove function.
8098         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
8099         * lib/fd-safer.c (fd_safer_flag): Remove function.
8100         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
8101         * modules/cloexec (configure.ac): Drop indicator macro.
8102         * modules/fd-safer-flag: New file.
8103         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
8104         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
8105         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
8106
8107 2009-12-11  Bruno Haible  <bruno@clisp.org>
8108
8109         Tests for module 'nl_langinfo'.
8110         * modules/nl_langinfo-tests: New file.
8111         * tests/test-nl_langinfo.sh: New file.
8112         * tests/test-nl_langinfo.c: New file.
8113
8114         New module 'nl_langinfo'.
8115         * lib/nl_langinfo.c: New file.
8116         * m4/nl_langinfo.m4: New file.
8117         * modules/nl_langinfo: New file.
8118         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
8119
8120 2009-12-11  Bruno Haible  <bruno@clisp.org>
8121
8122         Tests for module 'langinfo'.
8123         * modules/langinfo-tests: New file.
8124         * tests/test-langinfo.c: New file.
8125
8126         New module 'langinfo'.
8127         * lib/langinfo.in.h: New file.
8128         * m4/langinfo_h.m4: New file.
8129         * modules/langinfo: New file.
8130         * doc/posix-headers/langinfo.texi: Mention the new module.
8131
8132 2009-12-11  Bruno Haible  <bruno@clisp.org>
8133
8134         * lib/config.charset: Untabify.
8135
8136 2009-12-11  Bruno Haible  <bruno@clisp.org>
8137
8138         * modules/unistd-safer (configure.ac): Drop indicator macro.
8139
8140 2009-12-11  Bruno Haible  <bruno@clisp.org>
8141
8142         Move pipe2-safer code to its own file.
8143         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
8144         * lib/pipe-safer.c (pipe2_safer): Remove function.
8145         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
8146         (Makefile.am): Add it to lib_SOURCES.
8147
8148 2009-12-10  Bruno Haible  <bruno@clisp.org>
8149
8150         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
8151
8152 2009-12-10  Bruno Haible  <bruno@clisp.org>
8153
8154         Declare which arguments expect non-NULL values, for GCC and clang.
8155         * build-aux/arg-nonnull.h: New file.
8156         * modules/arg-nonnull: New file.
8157         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
8158         (inet_ntop, inet_pton): Use it.
8159         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
8160         (closedir, dirfd, opendir, scandir, alphasort): Use it.
8161         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
8162         (open, openat): Use it.
8163         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
8164         (fnmatch): Use it.
8165         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
8166         (getopt, getopt_long, getopt_long_only): Use it.
8167         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
8168         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
8169         Use it.
8170         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
8171         (iconv_open): Use it.
8172         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
8173         (strtoimax, strtoumax): Use it.
8174         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
8175         (duplocale): Use it.
8176         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
8177         (frexp, frexpl): Use it.
8178         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
8179         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
8180         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
8181         (tsearch, tfind, tdelete, twalk): Use it.
8182         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
8183         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
8184         sigpending): Use it.
8185         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
8186         (posix_spawn, posix_spawnp, posix_spawnattr_init,
8187         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
8188         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
8189         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
8190         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
8191         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
8192         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
8193         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
8194         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
8195         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
8196         Use it.
8197         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
8198         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
8199         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
8200         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
8201         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
8202         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
8203         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
8204         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
8205         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
8206         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
8207         strtoull, unsetenv): Use it.
8208         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
8209         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
8210         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
8211         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
8212         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
8213         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
8214         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
8215         (strcasecmp, strncasecmp): Use it.
8216         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
8217         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
8218         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
8219         rpl_setsockopt): Use it.
8220         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
8221         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
8222         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
8223         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
8224         (gettimeofday): Use it.
8225         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
8226         (times): Use it.
8227         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
8228         (uname): Use it.
8229         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
8230         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
8231         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
8232         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
8233         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
8234         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
8235         unlinkat, write): Use it.
8236         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
8237         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
8238         * lib/argv-iter.h: Include arg-nonnull.h.
8239         (_ATTRIBUTE_NONNULL_): Remove macro.
8240         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
8241         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
8242         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
8243         optimization.
8244         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
8245         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
8246         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
8247         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
8248         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
8249         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
8250         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
8251         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
8252         * modules/arpa_inet (Depends-on): Add arg-nonnull.
8253         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
8254         * modules/dirent (Depends-on): Add arg-nonnull.
8255         (Makefile.am): Insert arg-nonnull.h into dirent.h.
8256         * modules/fcntl-h (Depends-on): Add arg-nonnull.
8257         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
8258         * modules/fnmatch (Depends-on): Add arg-nonnull.
8259         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
8260         * modules/getopt-posix (Depends-on): Add arg-nonnull.
8261         (Makefile.am): Insert arg-nonnull.h into getopt.h.
8262         * modules/glob (Depends-on): Add arg-nonnull.
8263         (Makefile.am): Insert arg-nonnull.h into glob.h.
8264         * modules/iconv_open (Depends-on): Add arg-nonnull.
8265         (Makefile.am): Insert arg-nonnull.h into iconv.h.
8266         * modules/inttypes (Depends-on): Add arg-nonnull.
8267         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
8268         * modules/locale (Depends-on): Add arg-nonnull.
8269         (Makefile.am): Insert arg-nonnull.h into locale.h.
8270         * modules/math (Depends-on): Add arg-nonnull.
8271         (Makefile.am): Insert arg-nonnull.h into math.h.
8272         * modules/netdb (Depends-on): Add arg-nonnull.
8273         (Makefile.am): Insert arg-nonnull.h into netdb.h.
8274         * modules/search (Depends-on): Add arg-nonnull.
8275         (Makefile.am): Insert arg-nonnull.h into search.h.
8276         * modules/signal (Depends-on): Add arg-nonnull.
8277         (Makefile.am): Insert arg-nonnull.h into signal.h.
8278         * modules/spawn (Depends-on): Add arg-nonnull.
8279         (Makefile.am): Insert arg-nonnull.h into spawn.h.
8280         * modules/stdio (Depends-on): Add arg-nonnull.
8281         (Makefile.am): Insert arg-nonnull.h into stdio.h.
8282         * modules/stdlib (Depends-on): Add arg-nonnull.
8283         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
8284         * modules/string (Depends-on): Add arg-nonnull.
8285         (Makefile.am): Insert arg-nonnull.h into string.h.
8286         * modules/strings (Depends-on): Add arg-nonnull.
8287         (Makefile.am): Insert arg-nonnull.h into strings.h.
8288         * modules/sys_socket (Depends-on): Add arg-nonnull.
8289         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
8290         * modules/sys_stat (Depends-on): Add arg-nonnull.
8291         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
8292         * modules/sys_time (Depends-on): Add arg-nonnull.
8293         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
8294         * modules/sys_times (Depends-on): Add arg-nonnull.
8295         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
8296         * modules/sys_utsname (Depends-on): Add arg-nonnull.
8297         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
8298         * modules/time (Depends-on): Add arg-nonnull.
8299         (Makefile.am): Insert arg-nonnull.h into time.h.
8300         * modules/unistd (Depends-on): Add arg-nonnull.
8301         (Makefile.am): Insert arg-nonnull.h into unistd.h.
8302         * modules/wchar (Depends-on): Add arg-nonnull.
8303         (Makefile.am): Insert arg-nonnull.h into wchar.h.
8304         * modules/argv-iter (Depends-on): Add arg-nonnull.
8305         * tests/test-canonicalize.c (null_ptr): New function.
8306         (main): Use it.
8307         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
8308         (main): Use it.
8309         * tests/test-memmem.c (null_ptr): New function.
8310         (main): Use it.
8311         Reported by Jim Meyering.
8312
8313 2009-12-10  Bruno Haible  <bruno@clisp.org>
8314
8315         Use spaces for indentation, not tabs.
8316         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
8317         * m4/*.m4: Untabify.
8318         * build-aux/*.h: Untabify.
8319         * tests/**/*.[hc]: Untabify.
8320         * README: New section "Indent with spaces, not TABs", based on
8321         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
8322         * NEWS: Mention the change.
8323
8324 2009-12-10  Bruno Haible  <bruno@clisp.org>
8325
8326         pty test: Fix link error.
8327         * modules/pty-tests (Makefile.am): Add the default LDADD value to
8328         test_pty_LDADD.
8329
8330 2009-12-07  Simon Josefsson  <simon@josefsson.org>
8331
8332         * modules/pty: New file.
8333         * modules/pty-tests: New file.
8334         * m4/pty.m4: New file.
8335         * tests/test-pty.c: New file.
8336         * doc/glibc-headers/pty.texi: Modified.
8337         * doc/glibc-functions/forkpty.texi: Modified.
8338         * doc/glibc-functions/openpty.texi: Modified.
8339
8340 2009-12-10  Bruno Haible  <bruno@clisp.org>
8341
8342         Avoid syntax error in C++ mode.
8343         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
8344
8345 2009-12-10  Bruno Haible  <bruno@clisp.org>
8346
8347         Use sed with option -e.
8348         * gnulib-tool (func_version, func_emit_copyright_notice,
8349         func_emit_initmacro_end, func_import, func_create_testdir): Pass
8350         option -e to sed.
8351         * modules/link-warning (Makefile.am): Likewise.
8352
8353 2009-12-10  Jim Meyering  <meyering@redhat.com>
8354
8355         mgetgroups: do not write bytes beyond end of malloc'd buffer
8356         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
8357         username, we call getgroups with a one-element-shorter buffer,
8358         but still told it the length was original, max_n_groups.
8359
8360 2009-12-09  Eric Blake  <ebb9@byu.net>
8361
8362         cloexec: relax license
8363         * modules/cloexec (Maintainer): Add myself.
8364         (License): Use LGPL, not GPL.
8365
8366         link-warning: optimize generation
8367         * modules/link-warning (Makefile.am): Reduce process usage.
8368
8369 2009-12-09  Bruno Haible  <bruno@clisp.org>
8370
8371         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
8372         workaround was added on 2009-11-17.
8373
8374 2009-12-09  Jim Meyering  <meyering@redhat.com>
8375             Bruno Haible  <bruno@clisp.org>
8376
8377         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
8378         * modules/link-warning (Makefile.am): Make the comment-removing sed
8379         command more robust in the face of bootstrap-prepended comment lines.
8380
8381 2009-12-09  Bruno Haible  <bruno@clisp.org>
8382
8383         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
8384         most one group.
8385
8386 2009-12-09  Simon Josefsson <simon@josefsson.org>
8387             Bruno Haible  <bruno@clisp.org>
8388
8389         * build-aux/link-warning.h: Add copyright notice.
8390         * modules/link-warning (Makefile.am): Generate link-warning.h from
8391         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
8392         * NEWS: Mention change in link-warning module.
8393         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
8394         * modules/dirent (Makefile.am): Add dependency to dirent.h.
8395         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
8396         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
8397         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
8398         * modules/math (Makefile.am): Add dependency to math.h.
8399         * modules/search (Makefile.am): Add dependency to search.h.
8400         * modules/signal (Makefile.am): Add dependency to signal.h.
8401         * modules/spawn (Makefile.am): Add dependency to spawn.h.
8402         * modules/stdio (Makefile.am): Add dependency to stdio.h.
8403         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
8404         * modules/string (Makefile.am): Add dependency to string.h.
8405         * modules/strings (Makefile.am): Add dependency to strings.h.
8406         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
8407         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
8408         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
8409         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
8410         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
8411         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
8412         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
8413         * modules/unistd (Makefile.am): Add dependency to unistd.h.
8414         * modules/wchar (Makefile.am): Add dependency to wchar.h.
8415
8416 2009-12-09  Bruno Haible  <bruno@clisp.org>
8417
8418         fchdir: Optimize away rpl_fstat when possible.
8419         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
8420         REPLACE_OPEN_DIRECTORY.
8421         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
8422
8423 2009-12-09  Bruno Haible  <bruno@clisp.org>
8424
8425         * lib/fchdir.c: Update comment.
8426
8427 2009-12-09  Bruno Haible  <bruno@clisp.org>
8428
8429         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
8430
8431 2009-12-08  Eric Blake  <ebb9@byu.net>
8432
8433         fchdir: avoid memory leak on re-registration.
8434         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
8435
8436 2009-12-08  Jim Meyering  <meyering@redhat.com>
8437
8438         init.sh: avoid Solaris 10 /bin/sh portability problem
8439         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
8440         sourced script:
8441           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
8442           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
8443           bar
8444         tests/init.sh relied on that, accepting a --set-path=DIR argument,
8445         and two tests used that idiom.
8446         * tests/init.sh: Update suggested usage comments.
8447         (path_prepend_): New function, to be used in place
8448         of the --src-path=DIR option.
8449         (setup_): Move PATH-prepending code into path_prepend_.
8450         * tests/test-pread.sh: Adapt to new usage.
8451         * tests/test-xalloc-die.sh: Likewise.
8452
8453 2009-12-08  Simon Josefsson  <simon@josefsson.org>
8454
8455         * doc/gnulib.texi (Glibc pty.h): Add.
8456         * doc/glibc-functions/forkpty.texi: Add.
8457         * doc/glibc-functions/openpty.texi: Add.
8458         Suggested by Bruno Haible.
8459
8460 2009-12-08  Eric Blake  <ebb9@byu.net>
8461
8462         fchdir: fix logic bugs
8463         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
8464         * tests/test-fchdir.c (main): Enhance test.
8465         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
8466         is in use.
8467
8468         dup2: fix logic bugs
8469         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
8470         REPLACE_DUP2 to decide when rpl_dup2 is needed.
8471         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
8472         exists.
8473         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
8474
8475 2009-12-07  Eric Blake  <ebb9@byu.net>
8476
8477         unlink: fix m4 detection
8478         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
8479
8480         unistd-safer: add unit test
8481         * modules/unistd-safer-tests: New file.
8482         * tests/test-dup-safer.c: Likewise.
8483         * tests/test-cloexec.c (setmode): Avoid compiler warning.
8484         * tests/test-dup2.c (setmode): Likewise.
8485         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
8486
8487         cloexec: preserve text vs. binary across dup_cloexec
8488         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
8489         mode.
8490         * modules/dup2-tests (Depends-on): Add binary-io.
8491         * modules/cloexec-tests (Depends-on): Likewise.
8492         * tests/test-dup2.c (setmode, is_mode): New helpers.
8493         (main): Add tests that translation mode is preserved.
8494         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
8495         Reported by Bruno Haible.
8496
8497         mgetgroups: reduce duplicate listings
8498         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
8499         resulting array.
8500         * tests/test-chown.h (test_chown): Simplify client.
8501         * tests/test-lchown.h (test_lchown): Likewise.
8502
8503 2009-12-06  Bruno Haible  <bruno@clisp.org>
8504
8505         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
8506         value.
8507
8508 2009-12-06  Bruno Haible  <bruno@clisp.org>
8509
8510         * lib/progname.c: Include stdio.h, stdlib.h.
8511         (set_program_name): Reject a NULL argument.
8512
8513 2009-12-05  Eric Blake  <ebb9@byu.net>
8514
8515         pipe2-safer: new module
8516         * modules/pipe2-safer: New file.
8517         * lib/unistd-safer.h (pipe2_safer): New prototype.
8518         * lib/unistd--.h (pipe2): New wrapper.
8519         * lib/pipe-safer.c (pipe2_safer): New function.
8520         * modules/pipe (Depends-on): Add pipe2-safer.
8521         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
8522
8523         stdlib-safer: preserve cloexec flag for mkostemp[s]
8524         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
8525         fd_safer_flag.
8526
8527         unistd-safer: allow preservation of cloexec status via flag
8528         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
8529         prototypes.
8530         * lib/dup-safer.c (dup_safer_flag): New function.
8531         * lib/fd-safer.c (fd_safer_flag): Likewise.
8532         * modules/cloexec (configure.ac): Set witness.
8533
8534         test-dup2: enhance test
8535         * modules/dup2-tests (Depends-on): Add cloexec.
8536         * tests/test-dup2.c (main): Enhance test.
8537
8538         cloexec: add dup_cloexec
8539         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
8540         header and comments.
8541         * lib/cloexec.c (set_cloexec_flag): Add comments.
8542         (dup_cloexec): New function, with mingw implementation borrowed
8543         from...
8544         * lib/w32spawn.h (dup_noinherit): ...here.
8545         * modules/execute (Depends-on): Add cloexec.
8546         * modules/pipe (Depends-on): Likewise.
8547         * modules/cloexec (Depends-on): Add dup2.
8548         * modules/cloexec-tests (Files): New file.
8549         * tests/test-cloexec.c: Likewise.
8550
8551         test-xalloc-die: fix test for mingw
8552         * modules/xalloc-die-tests (Files): Add tests/init.sh.
8553         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
8554         directory and .exe suffix off argv[0] output.
8555
8556         test-fseeko: fix test for mingw
8557         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
8558         than undefining fseek, so test will pass on mingw.
8559
8560 2009-12-05  Bruno Haible  <bruno@clisp.org>
8561
8562         * lib/progname.h (set_program_name): Clarify specification.
8563         * lib/progname.c (set_program_name): Likewise.
8564         Reported by Jim Meyering.
8565
8566 2009-12-05  Jim Meyering  <meyering@redhat.com>
8567
8568         maint.mk: backslash-escape parens in default regexp
8569         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
8570         backslash-escape the literal parentheses.
8571
8572         maint.mk: news-date-check: use grep -E
8573         * top/maint.mk (today): Define a Make variable, not a...
8574         (news-date-check): ...shell variable.
8575         (news-date-regexp): Use the Make variable.
8576         Use grep's -E option.  Change the failing diagnostic to mention
8577         the variable, $(news-date-regexp).
8578
8579 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
8580
8581         maintainer-makefile: allow customization of NEWS entry format
8582         * top/maint.mk (news-date-regexp): New overridable variable.
8583         (news-date-check): Use it.
8584
8585 2009-12-04  Eric Blake  <ebb9@byu.net>
8586
8587         mgetgroups: add xgetgroups, and avoid ENOSYS failures
8588         * lib/mgetgroups.h (xgetgroups): New prototype.
8589         * lib/mgetgroups.c (xgetgroups): New wrapper.
8590         (mgetgroups): Handle ENOSYS.
8591         * modules/mgetgroups (Depends-on): Add realloc.
8592         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
8593
8594         mgetgroups: avoid argument promotion issues with -1
8595         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
8596         for invalid gid_t.
8597         * tests/test-chown.h (getegid, test_chown): Likewise.
8598         * tests/test-lchown.h (getegid, test_lchown): Likewise.
8599
8600 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
8601
8602         exclude: Fix header file problems.
8603         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
8604
8605 2009-12-01  Jim Meyering  <meyering@redhat.com>
8606
8607         fts: fts_open: do not let an empty string cause immediate failure
8608         This is required in support of GNU rm, for which the command
8609         "rm A '' B" must process and remove both A and B, in spite of
8610         the empty string argument.
8611         * lib/fts.c (fts_open): Do not let the presence of an empty string
8612         cause fts_open to fail immediately.  Most fts-using tools must be
8613         able to process all arguments, in order, and can be expected to
8614         diagnose such arguments themselves.
8615
8616 2009-11-30  Eric Blake  <ebb9@byu.net>
8617
8618         utimens: fix compilation error
8619         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
8620         Declare variable at right scope.
8621
8622 2009-11-29  Jim Meyering  <meyering@redhat.com>
8623
8624         bootstrap: handle perl-5.11's changed --version output
8625         * build-aux/bootstrap (get_version): Handle perl separately,
8626         since perl-5.11's --version output is different.
8627
8628 2009-11-28  Jim Meyering  <meyering@redhat.com>
8629
8630         userspec: depend on the inttostr module, too
8631         * modules/userspec (Depends-on): Add inttostr.
8632
8633         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
8634         * lib/userspec.c (parse_with_separator): Do not accept a user ID
8635         number of MAXUID when it evaluates to (uid_t) -1.
8636         Likewise for group ID.  Reported by Matt McCutchen in
8637         <http://savannah.gnu.org/bugs/?28113>
8638
8639         userspec: reformat to use spaces, not TABs
8640         * lib/userspec.c: Expand TABs to spaces.
8641         Add Emacs' "indent-tabs-mode: nil" hint.
8642
8643 2009-11-27  Eric Blake  <ebb9@byu.net>
8644
8645         getopt-gnu: flush out another BSD bug
8646         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
8647         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
8648         flush out BSD bug.
8649         * tests/test-getopt.h (test_getopt): End lists with NULL.
8650         * tests/test-getopt_long.h (test_getopt_long): Likewise.
8651         (test_getopt_long_posix): Enhance test.
8652         * modules/getopt-posix-tests (Depends-on): Add stdbool.
8653         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
8654         getopt-gnu.
8655         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
8656         Likewise.
8657
8658 2009-11-27  Simon Josefsson  <simon@josefsson.org>
8659
8660         * modules/idpriv-droptemp-tests (Notice): Fix text.
8661
8662 2009-11-27  Jim Meyering  <meyering@redhat.com>
8663
8664         test-xalloc-die: avoid spurious failure due to libtool argv difference
8665         In a libtool-enabled project, this test would fail due to a difference
8666         in the emitted program name, e.g.,
8667         -test-xalloc-die: memory exhausted
8668         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
8669         Use program to avoid that.
8670         * modules/xalloc-die-tests (Depends-on): Add progname.
8671         * tests/test-xalloc-die.c: Include progname.h".
8672         (program_name): Remove decl.
8673         (main): Call set_program_name.
8674         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
8675
8676 2009-11-26  Richard Jones  <rjones@redhat.com>
8677
8678         w32sock: leave win32 error in place.
8679         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
8680
8681 2009-11-26  Eric Blake  <ebb9@byu.net>
8682
8683         init.sh: suggest to use skip_ and fail_ functions in comments
8684         * tests/init.sh: Add a sentence.
8685
8686 2009-11-25  Bruno Haible  <bruno@clisp.org>
8687
8688         init.sh: add documentation in comments
8689         * tests/init.sh: Add some developer and user documentation.
8690
8691 2009-11-26  Jim Meyering  <meyering@redhat.com>
8692
8693         init.sh: accommodate even those who specify bogus srcdir manually
8694         * tests/init.sh: Normally, srcdir is guaranteed by automake and
8695         configure-time tests to be sanitized, so that there is no need to
8696         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
8697         (with no double quotes) suffices.  However, since tests may be
8698         invoked manually, and since you may explicitly set srcdir to the
8699         name of a directory containing spaces, do quote its uses here.
8700         * tests/test-pread.sh: Likewise.
8701         Suggested by Bruno Haible.
8702
8703         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
8704         * tests/test-pread.sh: Write no data into the pipe, because
8705         test-pread actually reads none.  This avoids a diagnostic,
8706         "bash: echo: write error: Broken pipe", that arises in the unusual
8707         event something is ignoring SIGPIPE, and might be interpreted
8708         as some sort of failure.  Reported by Bruno Haible.
8709
8710 2009-11-25  Jim Meyering  <meyering@redhat.com>
8711
8712         test-pread: cover failure with ESPIPE and EINVAL
8713         * tests/test-pread.c (main): Test for failure, too.
8714         * tests/test-pread.sh: Invoke with stdin on a pipe.
8715         Suggested by Eric Blake.
8716
8717         pread: improvement and fix
8718         * modules/pread (Depends-on): Depend on lseek, for portability to
8719         e.g., mingw.  Suggested by Eric Blake.
8720         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
8721
8722         unistd.in.h: correct declaration of pread
8723         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
8724         Reported by Richard W.M. Jones.
8725
8726         test-pread.sh: distribute the test script
8727         * modules/pread-tests (Files): Include test-pread.sh.
8728
8729         test-pread.sh: clean up
8730         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
8731         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
8732         That is unnecessary, since it's always ".".
8733         Suggestion from Eric Blake.
8734
8735         test-pread.sh: make executable
8736         * tests/test-pread.sh: Set executable bit.
8737         Reported by Eric Blake.
8738
8739         correct typo in test-pread.sh
8740         * tests/test-pread.sh: Add #! line.
8741
8742         test pread
8743         * tests/test-pread.c: New file.
8744         * tests/test-pread.sh: Likewise.
8745         * modules/pread-tests: Likewise.
8746
8747         pread: new module
8748         * modules/pread: New file.
8749         * lib/unistd.in.h (pread): Define/declare.
8750         * lib/pread.c (pread): New file.
8751         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
8752         * modules/unistd (Makefile.am): Substitute witnesses.
8753         * doc/posix-functions/pread.texi (pread): Update.
8754         * MODULES.html.sh: Add pread.
8755
8756 2009-11-25  Jim Meyering  <meyering@redhat.com>
8757
8758         tests/init.sh: new file to be used via most *.sh tests
8759         * tests/init.sh: New file.
8760
8761 2009-11-25  Eric Blake  <ebb9@byu.net>
8762
8763         utimens: work around older Linux failure with symlinks
8764         * lib/utimens.c (lutimensat_works_really): New variable.
8765         (fdutimens, lutimens): Use it to manage kernels that support
8766         nanosecond times on files, but not on symlinks.
8767         Reported by OndÅ™ej Vašík.
8768
8769         utimes: fix configure grammar
8770         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
8771
8772 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
8773
8774         regex: Fix fastmap for multibyte character ranges.
8775         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
8776         characters when a multibyte character range is included.
8777
8778 2009-11-22  Andy Wingo  <wingo@pobox.com>
8779
8780         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
8781         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
8782
8783 2009-11-24  Bruno Haible  <bruno@clisp.org>
8784
8785         doc: Most *_l functions exist in MacOS X 10.5.
8786         * doc/posix-functions/duplocale.texi: Update platforms list.
8787         * doc/posix-functions/freelocale.texi: Likewise.
8788         * doc/posix-functions/newlocale.texi: Likewise.
8789         * doc/posix-functions/uselocale.texi: Likewise.
8790         * doc/posix-functions/isalnum_l.texi: Likewise.
8791         * doc/posix-functions/isalpha_l.texi: Likewise.
8792         * doc/posix-functions/isblank_l.texi: Likewise.
8793         * doc/posix-functions/iscntrl_l.texi: Likewise.
8794         * doc/posix-functions/isdigit_l.texi: Likewise.
8795         * doc/posix-functions/isgraph_l.texi: Likewise.
8796         * doc/posix-functions/islower_l.texi: Likewise.
8797         * doc/posix-functions/isprint_l.texi: Likewise.
8798         * doc/posix-functions/ispunct_l.texi: Likewise.
8799         * doc/posix-functions/isspace_l.texi: Likewise.
8800         * doc/posix-functions/isupper_l.texi: Likewise.
8801         * doc/posix-functions/iswalnum_l.texi: Likewise.
8802         * doc/posix-functions/iswalpha_l.texi: Likewise.
8803         * doc/posix-functions/iswblank_l.texi: Likewise.
8804         * doc/posix-functions/iswcntrl_l.texi: Likewise.
8805         * doc/posix-functions/iswctype_l.texi: Likewise.
8806         * doc/posix-functions/iswdigit_l.texi: Likewise.
8807         * doc/posix-functions/iswgraph_l.texi: Likewise.
8808         * doc/posix-functions/iswlower_l.texi: Likewise.
8809         * doc/posix-functions/iswprint_l.texi: Likewise.
8810         * doc/posix-functions/iswpunct_l.texi: Likewise.
8811         * doc/posix-functions/iswspace_l.texi: Likewise.
8812         * doc/posix-functions/iswupper_l.texi: Likewise.
8813         * doc/posix-functions/iswxdigit_l.texi: Likewise.
8814         * doc/posix-functions/isxdigit_l.texi: Likewise.
8815         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
8816         * doc/posix-functions/strcasecmp_l.texi: Likewise.
8817         * doc/posix-functions/strcoll_l.texi: Likewise.
8818         * doc/posix-functions/strfmon_l.texi: Likewise.
8819         * doc/posix-functions/strftime_l.texi: Likewise.
8820         * doc/posix-functions/strncasecmp_l.texi: Likewise.
8821         * doc/posix-functions/strxfrm_l.texi: Likewise.
8822         * doc/posix-functions/tolower_l.texi: Likewise.
8823         * doc/posix-functions/toupper_l.texi: Likewise.
8824         * doc/posix-functions/towctrans_l.texi: Likewise.
8825         * doc/posix-functions/towlower_l.texi: Likewise.
8826         * doc/posix-functions/towupper_l.texi: Likewise.
8827         * doc/posix-functions/wcscoll_l.texi: Likewise.
8828         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
8829         * doc/posix-functions/wctrans_l.texi: Likewise.
8830         * doc/posix-functions/wctype_l.texi: Likewise.
8831         * doc/glibc-functions/strptime_l.texi: Likewise.
8832         * doc/glibc-functions/strtod_l.texi: Likewise.
8833         * doc/glibc-functions/strtof_l.texi: Likewise.
8834         * doc/glibc-functions/strtol_l.texi: Likewise.
8835         * doc/glibc-functions/strtold_l.texi: Likewise.
8836         * doc/glibc-functions/strtoll_l.texi: Likewise.
8837         * doc/glibc-functions/strtoul_l.texi: Likewise.
8838         * doc/glibc-functions/strtoull_l.texi: Likewise.
8839         * doc/glibc-functions/wcsftime_l.texi: Likewise.
8840         * doc/glibc-functions/wcstod_l.texi: Likewise.
8841         * doc/glibc-functions/wcstof_l.texi: Likewise.
8842         * doc/glibc-functions/wcstol_l.texi: Likewise.
8843         * doc/glibc-functions/wcstold_l.texi: Likewise.
8844         * doc/glibc-functions/wcstoll_l.texi: Likewise.
8845         * doc/glibc-functions/wcstoul_l.texi: Likewise.
8846         * doc/glibc-functions/wcstoull_l.texi: Likewise.
8847
8848 2009-11-24  Bruno Haible  <bruno@clisp.org>
8849
8850         duplocale: Fix logic bug.
8851         * lib/duplocale.c: Don't include <langinfo.h>.
8852         (_NL_LOCALE_NAME): Remove macro.
8853         (rpl_duplocale): Use setlocale instead of nl_langinfo.
8854         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
8855
8856 2009-11-23  Jim Meyering  <meyering@redhat.com>
8857
8858         test-update-copyright: don't hard-code /usr/bin/perl
8859         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
8860         perl to print the current year.  Gilles Espinasse reported that
8861         the replaced use of perl was hard-coded as /usr/bin/perl.
8862
8863 2009-11-23  Bruno Haible  <bruno@clisp.org>
8864
8865         duplocale: Add support for glibc 2.3.x.
8866         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
8867
8868 2009-11-22  Bruno Haible  <bruno@clisp.org>
8869
8870         vasnprintf: Tiny optimization.
8871         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
8872         MacOS X.
8873
8874 2009-11-22  Bruno Haible  <bruno@clisp.org>
8875
8876         Tests for module 'duplocale'.
8877         * modules/duplocale-tests: New file.
8878         * tests/test-duplocale.c: New file.
8879
8880         New module 'duplocale'.
8881         * m4/duplocale.m4: New file.
8882         * lib/locale.in.h (duplocale): New declaration.
8883         * lib/duplocale.c: New file.
8884         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
8885         gl_LOCALE_H_DEFAULTS): New macros.
8886         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
8887         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
8888         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
8889         REPLACE_DUPLOCALE.
8890         * modules/duplocale: New file.
8891         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
8892
8893 2009-11-22  Bruno Haible  <bruno@clisp.org>
8894
8895         * modules/locale-tests (configure.ac): Test for newlocale function.
8896         * tests/test-locale.c: When the system has extended locale functions,
8897         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
8898
8899         locale: Make locale_t available when possible.
8900         * lib/locale.in.h: Include <xlocale.h> when it exists.
8901         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
8902         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
8903         * modules/locale (Depends-on): Add extensions.
8904         (Makefile.am): Also substitute HAVE_XLOCALE_H.
8905         * doc/posix-headers/locale.texi: Document the problem with locale_t.
8906
8907 2009-11-22  Bruno Haible  <bruno@clisp.org>
8908
8909         Add comments.
8910         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
8911         invocation.
8912         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
8913         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
8914         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
8915
8916 2009-11-22  Bruno Haible  <bruno@clisp.org>
8917
8918         error: account for the possibility of freopen (stdout).
8919         * lib/error.c: Include <unistd.h>.
8920         (flush_stdout): New function, extracted from error and error_at_line.
8921         Determine stdout's fd dynamically.
8922         (error, error_at_line): Invoke flush_stdout.
8923         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
8924         * modules/error (Depends-on): Add unistd.
8925
8926 2009-11-22  Bruno Haible  <bruno@clisp.org>
8927
8928         diffseq: Add comment.
8929         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
8930
8931 2009-11-22  Jim Meyering  <meyering@redhat.com>
8932
8933         c-stack: avoid defining an unused static function
8934         * lib/c-stack.c (find_stack_direction): Do not define this function
8935         when it will not be used.
8936
8937         diffseq: avoid spurious gcc warnings
8938         * lib/diffseq.h (IF_LINT2): Define.
8939         (compareseq): Use it to initialize two members of "part".
8940         This avoids two used-uninitialized warnings.
8941
8942 2009-11-21  Jim Meyering  <meyering@redhat.com>
8943
8944         c-stack: avoid "ignoring return value of `write'" warning
8945         * lib/c-stack.c: Include "ignore-value.h".
8946         (die): Explicitly ignore each write return value.
8947         * modules/c-stack (Depends-on): Add ignore-value.
8948
8949 2009-11-21  Bruno Haible  <bruno@clisp.org>
8950
8951         diffseq: reduce scope of variable 'best'.
8952         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
8953         variable, earlier used for two different purposes.
8954
8955 2009-11-21  Jim Meyering  <meyering@redhat.com>
8956
8957         diffseq: remove useless assignment to "best"
8958         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
8959         assignment.  At that point "best" is already guaranteed to be zero.
8960
8961 2009-11-20  Eric Blake  <ebb9@byu.net>
8962
8963         build: mention ftp redirector in release announcements
8964         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
8965         values that used to come from cfg.mk; mention FTP redirect URL.
8966         * build-aux/announce-gen: Mention the mirror list.
8967         Suggested by Karl Berry.
8968
8969         nanosleep: improve port to mingw
8970         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
8971         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
8972         LIB_NANOSLEEP, but only when needed.
8973         * modules/select (Link): Document LIBSOCKET.
8974         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
8975         enough.
8976
8977         nanosleep: work around cygwin bug
8978         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
8979         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
8980         bug.
8981         (getnow): Delete, not needed.
8982         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
8983         LIB_CLOCK_GETTIME.
8984         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
8985         clock-time, gettime.
8986         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
8987         bug.
8988         * modules/nanosleep-tests: New test.
8989         * tests/test-nanosleep.c: New file.
8990
8991         sleep: work around cygwin bug
8992         * lib/sleep.c (rpl_sleep): Work around the bug.
8993         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
8994         (gl_PREREQ_SLEEP): Delete unused macro.
8995         * modules/sleep (Depends-on): Add verify.
8996         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
8997         * modules/unistd (Makefile.am): Substitute witness.
8998         * lib/unistd.in.h (sleep): Update prototype.
8999         * doc/posix-functions/sleep.texi (sleep): Document the bug.
9000         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
9001         * modules/sleep-tests (Depends-on): Check for alarm.
9002
9003 2009-11-20  Jim Meyering  <meyering@redhat.com>
9004
9005         maint.mk: improve sc_prohibit_magic_number_exit
9006         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
9007         so it does not match uses like System.exit(1).
9008         Add comments showing how to correct all offenders.
9009
9010 2009-11-19  Eric Blake  <ebb9@byu.net>
9011
9012         xalloc-die-tests: add missing library
9013         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
9014
9015         test-xvasprintf: silence compiler warnings
9016         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
9017         empty string from gcc.
9018
9019 2009-11-19  Jim Meyering  <meyering@redhat.com>
9020
9021         xfreopen: new module, from coreutils
9022         * modules/xfreopen: New module.
9023         * lib/xfreopen.c: New file.
9024         * lib/xfreopen.h: New file.
9025         * MODULES.html.sh (File stream based Input/Output"): Add it.
9026
9027 2009-11-19  Eric Blake  <ebb9@byu.net>
9028
9029         manywarnings: depend on warnings
9030         * modules/manywarnings (Depends-on): Add warnings.
9031
9032         build: avoid compiler warnings
9033         * lib/select.c (rpl_select): Delete unused variable.
9034         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
9035
9036 2009-11-18  Eric Blake  <ebb9@byu.net>
9037
9038         tests: avoid false negative with --with-packager
9039         * tests/test-version-etc.sh: Discard packager information.
9040         * tests/test-argp-version-etc-1.sh: Likewise.
9041         Reported by Mike Frysinger.
9042
9043         utimens: fix regression on Solaris
9044         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
9045         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
9046         can only change fd timestamps via futimesat.  Instead, use an
9047         additional witness macro to avoid BSD bug.
9048         Reported by Jim Meyering.
9049
9050 2009-11-17  Eric Blake  <ebb9@byu.net>
9051
9052         usleep: use it to simplify tests
9053         * modules/stat-time-tests (Depends-on): Add usleep.
9054         (configure.ac): Drop usleep check.
9055         * modules/chown-tests (Depends-on, configure.ac): Likewise.
9056         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
9057         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
9058         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
9059         * modules/openat-tests (Depends-on, configure.ac): Likewise.
9060         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
9061         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
9062         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
9063         Likewise.
9064         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
9065         * tests/test-lchown.h (nap): Likewise.
9066         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
9067         * tests/test-stat-time.c (nap): Likewise.
9068         * tests/test-utimens-common.h (nap): Update comments.
9069
9070         usleep: new module
9071         * modules/usleep: New file.
9072         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
9073         * lib/usleep.c (usleep): Likewise.
9074         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
9075         * modules/unistd (Makefile.am): Substitute witnesses.
9076         * lib/unistd.in.h (usleep): Add declaration.
9077         * doc/pastposix-functions/usleep.texi (usleep): Document this.
9078         * MODULES.html.sh (Date and time): Likewise.
9079         * modules/usleep-tests (Depends-on): New test.
9080         * tests/test-usleep.c: New file.
9081
9082         chown: work around OpenBSD bug
9083         * lib/chown.c (rpl_chown): Work around the bug.
9084         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
9085         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
9086         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
9087         * modules/chown (Depends-on): Add stdbool.
9088         * modules/lchown (Depends-on): Likewise.
9089         * doc/posix-functions/chown.texi (chown): Document the bug.
9090         * doc/posix-functions/lchown.texi (lchown): Likewise.
9091         * tests/test-lchown.h (test_chown): Relax test.
9092
9093         mkstemp: avoid conflict with C++ keyword template
9094         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
9095         * lib/mkostemp.c (mkostemp): Likewise.
9096         * lib/mkostemps.c (mkostemps): Likewise.
9097         * lib/mkstemp.c (mkstemp): Likewise.
9098         * lib/mkstemps.c (mkstemps): Likewise.
9099
9100         xalloc-die-tests: optimize
9101         * tests/test-xalloc-die.sh: Reduce number of processes.
9102
9103 2009-11-17  Simon Josefsson  <simon@josefsson.org>
9104
9105         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
9106         patch from ludo@gnu.org (Ludovic Courtès).
9107
9108 2009-11-17  Jim Meyering  <meyering@redhat.com>
9109
9110         version-etc: use proper license string
9111         * modules/version-etc (License): Use LGPL, not LGPLv3+.
9112         * modules/version-etc-fsf: Likewise.
9113
9114 2009-11-17  Simon Josefsson  <simon@josefsson.org>
9115
9116         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
9117         printed to stdout.  Deal with EOL differences.
9118
9119 2009-11-17  Eric Blake  <ebb9@byu.net>
9120
9121         unsetenv: work around Solaris bug
9122         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
9123         * lib/unsetenv.c (rpl_unsetenv): Work around it.
9124         Reported by Jim Meyering.
9125
9126         vasnprintf: avoid compiler warnings
9127         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
9128         variables.
9129         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
9130
9131 2009-11-17  Simon Josefsson  <simon@josefsson.org>
9132
9133         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
9134         settings since xalloc-die is no longer the self test,
9135         xalloc-die.sh is.
9136
9137 2009-11-17  Jim Meyering  <meyering@redhat.com>
9138
9139         test-xalloc-die.sh: make the code agree with the commit log
9140         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
9141         at the end, just in case you happen to have a test-xalloc-die
9142         program in some other PATH directory.
9143
9144         test-xalloc-die.sh: fix a portability bug
9145         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
9146         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
9147         Otherwise, argv[0] (as often seen in diagnostics) would be too
9148         system-dependent, sometimes with, and sometimes without the leading "./".
9149
9150         version-etc-fsf: relax license to LGPLv3+
9151         * modules/version-etc-fsf (License): Relax license.
9152
9153 2009-11-16  Eric Blake  <ebb9@byu.net>
9154
9155         xalloc-die-tests: avoid printing null pointer
9156         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
9157         shell script.
9158         * tests/test-xalloc-die.c (program_name): Declare.
9159         * tests/test-xalloc-die.sh (tmpfiles): New file.
9160
9161         setenv, unsetenv: work around various bugs
9162         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
9163         (setenv) [HAVE_SETENV]: Work around bugs.
9164         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
9165         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
9166         for bugs.
9167         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
9168         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
9169         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
9170         * modules/stdlib (Makefile.am): Update substitutions.
9171         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
9172         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
9173         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
9174         * modules/setenv-tests: New test.
9175         * modules/unsetenv-tests: Likewise.
9176         * tests/test-setenv.c: New file.
9177         * tests/test-unsetenv.c: Likewise.
9178
9179 2009-11-16  Jim Meyering  <meyering@redhat.com>
9180
9181         version-etc: relax license to LGPLv3+
9182         * modules/version-etc (License): Relax license.
9183
9184         better AC_REQUIRE expanded-before-required-warning avoidance
9185         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
9186         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
9187         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
9188         which is no longer needed.
9189
9190 2009-11-16  Eric Blake  <ebb9@byu.net>
9191
9192         test-freading: clean up temporary file
9193         * tests/test-freading.c (main): Remove file on success, and use
9194         ASSERT more liberally.
9195         Reported by Jim Meyering.
9196
9197 2009-11-16  Jim Meyering  <meyering@redhat.com>
9198
9199         avoid new AC_REQUIRE expanded-before-required warnings
9200         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
9201         merely using it.
9202         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
9203         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
9204
9205 2009-11-15  Simon Josefsson  <simon@josefsson.org>
9206
9207         * tests/test-xalloc-die.c: New file.
9208         * modules/xalloc-die-tests: New file.
9209         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
9210         XFAIL_TESTS so it can be appended by modules.
9211
9212 2009-11-15  Simon Josefsson  <simon@josefsson.org>
9213
9214         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
9215         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
9216
9217 2009-11-14  Eric Blake  <ebb9@byu.net>
9218
9219         fnmatch: avoid compiler warning
9220         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
9221         to silence compiler warning about mismatch signedness in ?:.
9222         Reported by Robert Millan.
9223
9224         intprops: add double-inclusion guard
9225         * lib/intprops.h: Allow idempotent includes.
9226         Suggested by Bruce Korb.
9227
9228         openat: detect Solaris fchownat bug
9229         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
9230         penalizing glibc chownat when only lchownat is broken.
9231         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
9232         trailing slash bugs.
9233         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
9234         * modules/openat-tests (Files): Include more files.
9235         (Depends-on): Add mgetgroups, sleep, stat-time.
9236         (configure.ac): Add additional checks.
9237         (Makefile.am): Build new test.
9238         * tests/test-fchownat.c: New file.
9239
9240         lchown: detect Solaris and FreeBSD bug
9241         * lib/lchown.c (rpl_lchown): Work around bug.
9242         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
9243         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9244         * modules/unistd (Makefile.am): Populate it.
9245         * lib/unistd.in.h (lchown): Update declaration.
9246         * doc/posix-functions/lchown.texi (lchown): Document the bug.
9247         * modules/lchown-tests: New file.
9248         * tests/test-lchown.h (test_lchown): Likewise.
9249         * tests/test-lchown.c (main): Likewise.
9250
9251         chown: detect Solaris and FreeBSD bug
9252         * lib/chown.c (rpl_chown): Work around bug.
9253         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
9254         (gl_PREREQ_CHOWN): Delete.
9255         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
9256         * modules/unistd (Makefile.am): Populate it.
9257         * lib/unistd.in.h (chown): Update declaration.
9258         * lib/lchown.c (chown): Update client.
9259         * modules/lchown (Depends-on): Add lstat.
9260         * doc/posix-functions/chown.texi (chown): Document the bug.
9261         * doc/posix-functions/getgroups.texi (getgroups): Document
9262         getgroups pitfall.
9263         * modules/chown-tests: New file.
9264         * tests/test-chown.h (test_chown): Likewise.
9265         * tests/test-chown.c (main): Likewise.
9266
9267 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
9268
9269         gnulib-tool: correctly detect absence of m4 directories
9270         * gnulib-tool: Avoid extra newline on data passed to wc -l.
9271
9272 2009-11-14  Jim Meyering  <meyering@redhat.com>
9273
9274         maint.mk: Prohibit inclusion of "xalloc.h" without use.
9275         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
9276
9277 2009-11-14  John W. Eaton  <jwe@gnu.org>
9278
9279         strftime.h: wrap funtion declaration in extern "C" block
9280         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
9281
9282 2009-11-13  Eric Blake  <ebb9@byu.net>
9283
9284         getgroups: avoid compiler warning
9285         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
9286
9287         getgroups: work around FreeBSD bug
9288         * lib/getgroups.c (rpl_getgroups): Work around the bug.
9289         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
9290         * doc/posix-functions/getgroups.texi (getgroups): Document it.
9291         * tests/test-getgroups.c (main): Fix buffer overrun.
9292
9293         getgroups: avoid compilation failure
9294         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
9295         * modules/getgroups (Depends-on): Add stdint.
9296
9297 2009-11-13  Jim Meyering  <meyering@redhat.com>
9298
9299         test-getgroups: avoid compilation failure
9300         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
9301
9302 2009-11-13  Eric Blake  <ebb9@byu.net>
9303
9304         mgetgroups: new module, taken from coreutils
9305         * modules/mgetgroups: New file.
9306         * lib/mgetgroups.h: Likewise.
9307         * lib/mgetgroups.c (mgetgroups): Likewise.
9308         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
9309         * MODULES.html.sh (Users and groups): Mention it.
9310
9311         getgroups: don't expose GETGROUPS_T to user
9312         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
9313         an element at a time if GETGROUPS_T is wrong size.
9314         * lib/getugroups.h (getugroups): Change signature.
9315         * lib/unistd.in.h (getgroups): Likewise.
9316         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
9317         signature needs fixing.
9318         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
9319         AC_TYPE_GETGROUPS.
9320         * modules/group-member (Depends-on): Add getgroups.
9321         * lib/group-member.c (group_info, get_group_info): Use gid_t.
9322         (group_member): Rely on getgroups replacement.
9323         * lib/getugroups.c (getugroups): Use gid_t.
9324         * tests/test-getgroups.c (main): Likewise.
9325         * NEWS: Mention the signature change.
9326         * doc/posix-functions/getgroups.texi (getgroups): Mention the
9327         problem with signature.
9328         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
9329         GETGROUPS_T is still useful for setgroups.
9330
9331         getgroups, getugroups: provide stubs for mingw
9332         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
9333         * lib/getugroups.c (getugroups): Likewise.
9334         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
9335         function.  Modernize replacement scheme.
9336         (gl_PREREQ_GETGROUPS): Delete.
9337         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
9338         * modules/getgroups (configure.ac): Declare witness.
9339         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
9340         * modules/unistd (Depends-on): Substitute witness.
9341         * lib/unistd.in.h (getgroups): Declare replacement.
9342
9343         getgroups: avoid calling exit
9344         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
9345         drop xalloc.
9346         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
9347         dependencies.
9348         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
9349         exiting, in the rare case of malloc failure.
9350
9351         getgroups: fix logic error
9352         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
9353         has more than 20 groups.
9354         * modules/getgroups-tests: New test.
9355         * tests/test-getgroups.c: New file.
9356
9357 2009-11-13  Simon Josefsson  <simon@josefsson.org>
9358
9359         * tests/test-base64.c: Improve.
9360
9361 2009-11-13  Simon Josefsson  <simon@josefsson.org>
9362
9363         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
9364         Blake <ebb9@byu.net>.
9365
9366 2009-11-13  Simon Josefsson  <simon@josefsson.org>
9367
9368         * tests/test-xvasprintf.c: Add %s%s related checks.
9369
9370 2009-11-12  Eric Blake  <ebb9@byu.net>
9371
9372         version-etc: match standards.texi style
9373         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
9374         and use <> only for URLs.
9375
9376 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
9377
9378         fts: do not fail on a submount during traversal
9379         * lib/fts.c (fts_build): Read the stat info again after opening
9380         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
9381         Original report at http://bugzilla.redhat.com/501848.
9382
9383 2009-11-12  Jim Meyering  <meyering@redhat.com>
9384
9385         bootstrap: sync from coreutils
9386         * build-aux/bootstrap (bootstrap_epilogue): New function.
9387         Use git_modules_config in one more place.  This make bootstrap's
9388         --gnulib-srcdir option more useful for testing.
9389
9390         bootstrap: generalize autoheader check
9391         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
9392         AC_CONFIG_HEADERS.
9393
9394 2009-11-11  Eric Blake  <ebb9@byu.net>
9395
9396         mkfifoat: use new modules for Solaris and BSD bugs
9397         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
9398         * lib/mkfifoat.c (mknodat): Split...
9399         * lib/mknodat.c (mknodat): ...into new file.
9400         * modules/mkfifoat (Files): Ship new file.
9401         (Depends-on): Add mkfifo, mknod.
9402         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
9403         (Depends-on): Add symlink.
9404         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
9405         redundant with test_mkfifo.h.
9406         (do_mkfifoat, do_mknodat): New helpers.
9407
9408         mknod: new module
9409         * modules/mknod: New file.
9410         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
9411         * lib/mknod.c (mknod): Likewise.
9412         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
9413         defaults.
9414         * modules/sys_stat (Makefile.am): Substitute them.
9415         * lib/sys_stat.in.h (mknod): Declare replacement.
9416         * MODULES.html.sh (Support for systems lacking POSIX:2008):
9417         Document it.
9418         * doc/posix-functions/mknod.texi (mknod): Likewise.
9419         * modules/mknod-tests: New test.
9420         * tests/test-mknod.c: Likewise.
9421
9422         mkfifo: new module
9423         * modules/mkfifo: New file.
9424         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
9425         * lib/mkfifo.c (mkfifo): Likewise.
9426         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
9427         defaults.
9428         * modules/sys_stat (Makefile.am): Substitute them.
9429         * lib/sys_stat.in.h (mkfifo): Declare replacement.
9430         * MODULES.html.sh (Support for systems lacking POSIX:2008):
9431         Document it.
9432         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
9433         * modules/mkfifo-tests: New test.
9434         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
9435         from test-mkfifoat.c.
9436         * tests/test-mkfifo.c: New file.
9437
9438         readlink: detect FreeBSD bug
9439         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
9440         slash on symlink.
9441         * doc/posix-functions/readlink.texi (readlink): Document the bug.
9442         * tests/test-readlink.h (test_readlink): Enhance test.
9443
9444         symlink: detect FreeBSD bug
9445         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
9446         slash on symlink.
9447         * doc/posix-functions/symlink.texi (symlink): Document the bug.
9448         * tests/test-symlink.h (test_symlink): Enhance test.
9449
9450 2009-11-10  Eric Blake  <ebb9@byu.net>
9451
9452         link: detect FreeBSD bug
9453         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
9454         symlink.
9455         * doc/posix-functions/link.texi (link): Document the bug.
9456         * tests/test-link.h (test_link): Enhance test.
9457         * tests/test-linkat.c (main): Update caller.
9458
9459         unlink, remove: detect FreeBSD bug
9460         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
9461         slash on symlink.
9462         * doc/posix-functions/unlink.texi (unlink): Document the bug.
9463         * doc/posix-functions/remove.texi (remove): Likewise.
9464         * tests/test-unlink.h (test_unlink): Enhance test.
9465         * tests/test-remove.c (main): Likewise.
9466
9467 2009-11-09  Eric Blake  <ebb9@byu.net>
9468
9469         rename: detect FreeBSD bug
9470         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
9471         slash on symlink.
9472         * modules/renameat-tests (Depends-on): Add filenamecat.
9473         * tests/test-rename.h (test_rename): Allow one more errno.
9474         * tests/test-renameat.c (main): Likewise.
9475         * doc/posix-functions/rename.texi (rename): Document the bug.
9476
9477         open: detect FreeBSD bug
9478         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
9479         symlink.
9480         * doc/posix-functions/open.texi (open): Document the bug.
9481         * doc/posix-functions/utimes.texi (utimes): Likewise.
9482         * tests/test-open.h (test_open): Add parameters, and test symlink
9483         handling.
9484         * tests/test-open.c (main): Adjust caller.
9485         * tests/test-fcntl-safer.c (main): Likewise.
9486         * modules/open-tests (Depends-on): Add stdbool, symlink.
9487         * modules/fcntl-safer-tests (Depends-on): Likewise.
9488         * tests/test-openat.c (main): Add test-open tests.
9489
9490         stat: detect FreeBSD bug
9491         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
9492         symlink.
9493         * doc/posix-functions/stat.texi (stat): Document the bug.
9494         * tests/test-stat.h (test_stat_func): Add argument.
9495         * tests/test-stat.c (main): Adjust caller.
9496         * tests/test-fstatat.c (main): Likewise.
9497         * modules/stat-tests (Depends-on): Add stdbool, symlink.
9498         Reported by Jim Meyering.
9499
9500 2009-11-09  James Youngman  <jay@gnu.org>
9501
9502         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
9503         * lib/strftime.c: Correct placement of #include "ignore-value.h".
9504
9505 2009-11-08  Jim Meyering  <meyering@redhat.com>
9506
9507         utimens: remove invalid futimesat call
9508         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
9509         It used the file descriptor of the target file as the DIR_FD
9510         parameter and NULL as the file name.  That caused failure with
9511         errno == EFAULT on FreeBSD-8.0-rc2
9512
9513 2009-11-07  Eric Blake  <ebb9@byu.net>
9514
9515         fflush, freadseek: use fseeko, not fseek
9516         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
9517         (clear_ungetc_buffer): Avoid potential problems on large files.
9518         * lib/freadseek.c (freadseek): Likewise.
9519         * modules/freadseek (Depends-on): Add fseeko.
9520         * modules/fseek (configure.ac): Set a witness.
9521         * tests/test-fflush.c (main): Use fseeko.
9522         * tests/test-fpurge.c (fseek): Disable link warning.
9523         * tests/test-freadable.c (fseek): Likewise.
9524         * tests/test-freading.c (fseek): Likewise.
9525         * tests/test-fseeko.c (fseek): Likewise.
9526         * tests/test-ftell.c (fseek): Likewise.
9527         * tests/test-ftello.c (fseek): Likewise.
9528         * tests/test-fwritable.c (fseek): Likewise.
9529         * tests/test-fwriting.c (fseek): Likewise.
9530
9531 2009-11-06  Simon Josefsson  <simon@josefsson.org>
9532
9533         * modules/memchr (Depends-on): Drop getpagesize dependency.
9534
9535 2009-11-06  Simon Josefsson  <simon@josefsson.org>
9536
9537         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
9538         Reported by Ludovic Courtès.
9539         * build-aux/pmccabe2html: Improve example usage.
9540         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
9541
9542 2009-11-06  Jim Meyering  <meyering@redhat.com>
9543
9544         do-release-commit-and-tag: New module.
9545         Automate the release-commit and tag process.
9546         * build-aux/do-release-commit-and-tag: New script, from coreutils.
9547         * modules/do-release-commit-and-tag: New file.
9548         * MODULES.html.sh (Support for maintaining and releasing): Add it.
9549
9550 2009-11-06  Simon Josefsson  <simon@josefsson.org>
9551
9552         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
9553         because test-select.c uses inet_pton.
9554
9555 2009-11-06  Simon Josefsson  <simon@josefsson.org>
9556
9557         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
9558         GETADDRINFO_LIB.  Bump serial number.
9559         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
9560         Suggested by Eric Blake <ebb9@byu.net>.
9561
9562 2009-11-05  Eric Blake  <ebb9@byu.net>
9563
9564         strtod: detect darwin bug
9565         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
9566         Reported by Leo Davis.
9567
9568         freopen-safer: new module
9569         * modules/freopen-safer: New module.
9570         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
9571         * lib/freopen-safer.c (freopen_safer): New file.
9572         * lib/stdio-safer.h (freopen_safer): New declaration.
9573         * lib/stdio--.h (freopen): New override.
9574         * MODULES.html.sh (File stream based Input/Output): Mention it.
9575         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
9576         freopen-safer module.
9577         * doc/posix-functions/stderr.texi (stderr): Likewise.
9578         * doc/posix-functions/stdin.texi (stdin): Likewise.
9579         * doc/posix-functions/stdout.texi (stdout): Likewise.
9580         * modules/freopen-safer-tests: New test.
9581         * tests/test-reopen-safer.c: New file.
9582
9583 2009-11-05  Jim Meyering  <meyering@redhat.com>
9584
9585         maint.mk: Prohibit inclusion of "close-stream.h" without use.
9586         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
9587
9588 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9589
9590         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
9591
9592 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9593
9594         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
9595
9596 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9597
9598         Fix link error.
9599         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
9600         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
9601
9602 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9603
9604         * tests/test-func.c: Also test value of __func__.
9605
9606 2009-11-05  Simon Josefsson  <simon@josefsson.org>
9607
9608         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
9609         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
9610
9611 2009-11-05  Bruno Haible  <bruno@clisp.org>
9612
9613         Fix link error.
9614         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
9615         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
9616         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
9617
9618 2009-11-05  Bruno Haible  <bruno@clisp.org>
9619
9620         Tests for module 'inet_pton'.
9621         * modules/inet_pton-tests: New file.
9622         * tests/test-inet_pton.c: New file.
9623
9624 2009-11-05  Bruno Haible  <bruno@clisp.org>
9625
9626         Tests for module 'inet_ntop'.
9627         * modules/inet_ntop-tests: New file.
9628         * tests/test-inet_ntop.c: New file.
9629
9630 2009-11-04  Eric Blake  <ebb9@byu.net>
9631
9632         stdlib-safer: wrap all mkstemp variants
9633         * modules/mkostemp (configure.ac): Set witness.
9634         * modules/mkostemps (configure.ac): Likewise.
9635         * modules/mkstemps (configure.ac): Likewise.
9636         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
9637         (mkstemps_safer): Wrap more functions.
9638         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
9639         wrapping.
9640         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
9641         (mkstemps_safer): Implement the wrappers.
9642
9643         mkstemps, mkostemps: new modules
9644         * modules/mkostemps: New module.
9645         * modules/mkstemps: Likewise.
9646         * lib/mkostemps.c (mkostemps): New file.
9647         * lib/mkstemps.c (mkstemps): Likewise.
9648         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
9649         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
9650         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
9651         * modules/stdlib (Makefile.am): Substitute them.
9652         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
9653         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
9654         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
9655         * doc/gnulib.texi (Glibc stdlib.h): Include them.
9656         * MODULES.html.sh (File system functions): Mention them.
9657
9658         tempname: resync from glibc
9659         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
9660         same values for __GT_FILE as glibc.  Abort even when assertions
9661         are disabled.
9662         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
9663         match its value otherwise.  Allow idempotent inclusion.
9664         * lib/mkdtemp.c (mkdtemp): Adjust caller.
9665         * lib/mkostemp.c (mkostemp): Likewise.
9666         * lib/mkstemp.c (mkstemp): Likewise.
9667         * lib/tmpfile.c (tmpfile): Likewise.
9668         * NEWS: Document this.
9669
9670         utimens: fix use of futimens on older Linux
9671         * lib/utimens.c (fdutimens): Use updated, rather than original,
9672         timespec to avoid bug in older Linux kernel.
9673         Reported by Simon Josefsson.
9674
9675 2009-11-04  Bruno Haible  <bruno@clisp.org>
9676
9677         Make num_processors more flexible and consistent.
9678         * lib/nproc.h (enum nproc_query): New type.
9679         (num_processors): Add a 'query' argument.
9680         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
9681         (num_processors): Add a 'query' argument. Test the value of the
9682         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
9683         mingw, count the number of CPUs available for the current process.
9684         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
9685         Check for sched_getaffinity and sched_getaffinity_np.
9686         * modules/nproc (Depends-on): Add c-ctype, extensions.
9687         * NEWS: Mention the change.
9688
9689 2009-11-03  Bruno Haible  <bruno@clisp.org>
9690
9691         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
9692
9693 2009-11-03  Jim Meyering  <meyering@redhat.com>
9694
9695         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
9696         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
9697         if it is defined.
9698
9699 2009-11-02  Eric Blake  <ebb9@byu.net>
9700
9701         mktime, timegm: share common declaration
9702         * lib/mktime-internal.h: New file.
9703         * lib/mktime.c: Use it rather than open-coding a declaration.
9704         * lib/timegm.c: Likewise.
9705         * modules/mktime (Files): Ship it.
9706         * modules/timegm (Files): Likewise.
9707         Suggested by Bruno Haible.
9708
9709         test-update-copyright: update test to match script changes
9710         * tests/test-update-copyright.sh: Avoid hard-coding perl
9711         location.  Don't update *.bak created by earlier runs.
9712
9713 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
9714             Simon Josefsson  <simon@josefsson.org>
9715             Bruno Haible  <bruno@clisp.org>
9716
9717         Fix link error on Solaris 8.
9718         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
9719         also in libnsl. Define also INET_PTON_LIB.
9720         * modules/inet_pton (Link): New section.
9721
9722 2009-11-02  Simon Josefsson  <simon@josefsson.org>
9723             Bruno Haible  <bruno@clisp.org>
9724
9725         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
9726         * modules/inet_ntop (Link): New section.
9727         Reported by Boyan Kasarov <bkasarov@gmail.com>.
9728
9729 2009-11-02  Eric Blake  <ebb9@byu.net>
9730
9731         maint: avoid compiler warnings in m4 macros
9732         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
9733         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
9734
9735 2009-11-02  Simon Josefsson  <simon@josefsson.org>
9736
9737         * m4/pmccabe2html.m4: Remove file.
9738         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
9739         function.  Change maintainer.
9740         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
9741         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
9742         Courtès).
9743
9744 2009-10-31  Eric Blake  <ebb9@byu.net>
9745
9746         fseeko: fix m4 regression
9747         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
9748         regression from 2009-10-27.
9749         Reported by Ralf Wildenhues.
9750
9751 2009-10-31  Jim Meyering  <meyering@redhat.com>
9752
9753         inttostr: aesthetics and improved (compile-time) safety
9754         Define inttype_is_signed rather than inttype_is_unsigned,
9755         since the sole use is via "#if inttype_is_signed".
9756         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
9757         inttype_is_unsigned.
9758         * lib/offtostr.c (inttype_is_signed): Likewise.
9759         * lib/uinttostr.c (inttype_is_signed): Likewise.
9760         * lib/umaxtostr.c (inttype_is_signed): Likewise.
9761         * lib/inttostr.c (inttostr): Use verify to cross-check the
9762         inttype_is_signed value and the signedness of the actual type.
9763         * modules/inttostr (Depends-on): Add verify.
9764
9765 2009-10-30  Eric Blake  <ebb9@byu.net>
9766
9767         build: avoid compiler warnings
9768         * lib/fchmodat.c (lchmod): Mark unused variables.
9769         * lib/getopt.c (_getopt_initialize): Likewise.
9770         * lib/mktime.c (__mktime_internal): Provide prototype.
9771         * lib/inttostr.c (inttostr): Avoid compiler warning even with
9772         older gcc that do not understand #pragma GCC diagnostic.
9773         * lib/uinttostr.c (inttype_is_unsigned): Define.
9774         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
9775
9776 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
9777
9778         stat: fix compilation on AIX
9779         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
9780         only see struct stat64.
9781
9782 2009-10-30  Eric Blake  <ebb9@byu.net>
9783
9784         exclude: make more robust
9785         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
9786         rather than masking a coding bug.
9787         Suggested by Bruno Haible.
9788
9789 2009-10-30  Jim Meyering  <meyering@redhat.com>
9790
9791         perl scripts: remove #!/usr/bin/perl in favor of more portable...
9792         Rather than putting #!/usr/bin/perl on the first line,
9793         start with a variant of what's recommended by "man perlrun" that
9794         invokes the first "perl" program from your shell's search path.
9795         * build-aux/gitlog-to-changelog: Replace #!... as above.
9796         Add a "Local Variables" perl mode setting.
9797         Prompted by a patch from Ludovic Courtès.
9798         Improved by Eric Blake.
9799         * build-aux/useless-if-before-free: Likewise.
9800         * build-aux/announce-gen: Likewise.
9801         * build-aux/update-copyright: Likewise.
9802
9803 2009-10-29  Eric Blake  <ebb9@byu.net>
9804
9805         filenamecat-lgpl: adjust clients
9806         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
9807         filenamecat.
9808         * modules/renameat (Depends-on): Likewise.
9809
9810         filenamecat: split into filenamecat-lgpl
9811         * modules/filenamecat-lgpl: New module.
9812         * modules/filenamecat (Files): Move library-safe files into
9813         filenamecat-lgpl.
9814         (Depends-on): Add filenamecat-lgpl.
9815         (configure.ac): Declare witness.
9816         * lib/filenamecat.h (file_name_concat): Only declare when using
9817         GPL module.
9818         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
9819         Move...
9820         * lib/filenamecat-lgpl.c: ...into new file.
9821         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
9822         (gl_FILE_NAME_CONCAT): Use it.
9823         * MODULES.html.sh (File system functions): Mention new module.
9824
9825         argp: avoid memory leak
9826         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
9827         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
9828         base_name, since the latter malloc()s and can call exit().
9829         Leak introduced 2006-07-03.
9830
9831         dirname-lgpl: adjust clients that don't need full dirname
9832         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
9833         * modules/filenamecat (Depends-on): Likewise.
9834         * modules/linkat (Depends-on): Likewise.
9835         * modules/mkancesdirs (Depends-on): Likewise.
9836         * modules/mkdir (Depends-on): Likewise.
9837         * modules/openat (Depends-on): Likewise.
9838         * modules/savewd (Depends-on): Likewise.
9839         * modules/rename (Depends-on): Likewise.
9840         (License): Relax license.
9841         * modules/mkdir-tests (Depends-on): Drop progname.
9842         (Makefile.am): Delete unneeded LDADD.
9843         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
9844
9845         dirname: split into dirname-lgpl
9846         * modules/dirname-lgpl: New module.
9847         * modules/dirname (Files): Move library-safe files into
9848         dirname-lgpl.
9849         (Depends-on): Add dirname-lgpl.
9850         (configure.ac): Declare witness.
9851         * modules/double-slash-root (License): Relax license.
9852         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
9853         module.
9854         * lib/dirname.c (dir_len, mdir_name): Move...
9855         * lib/dirname-lgpl.c: ...into new file.
9856         * lib/basename.c (last_component, base_len): Move...
9857         * lib/basename-lgpl.c: ...into new file.
9858         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
9859         (gl_DIRNAME): Use it.
9860         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
9861         Mention new module.
9862         * modules/dirname-tests (Depends-on): Add progname.
9863         * tests/test-dirname.c (program_name): Delete.
9864
9865         mkdir: make safe for libraries
9866         * modules/mkdir (Depends-on): Drop xalloc.
9867         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
9868         exit.
9869
9870         tests: avoid some compiler warnings
9871         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
9872         literals.
9873         * tests/test-memchr.c (main): Avoid type mismatch.
9874         * tests/test-arpa_inet.c (main): Avoid unused parameters.
9875         * tests/test-base64.c (main): Likewise.
9876         * tests/test-getdelim.c (main): Likewise.
9877         * tests/test-gethostname.c (main): Likewise.
9878         * tests/test-getline.c (main): Likewise.
9879         * tests/test-netinet_in.c (main): Likewise.
9880         * tests/test-select.c (open_server_socket, main): Likewise.
9881         * tests/test-select-stdin.c (main): Likewise.
9882         * tests/test-sockets.c (main): Likewise.
9883         * tests/test-strsignal.c (main): Likewise.
9884         * tests/test-sys_select.c (main): Likewise.
9885         * tests/test-sys_socket.c (main): Likewise.
9886         * tests/test-u64.c (main): Likewise.
9887         * tests/test-xfprintf-posix.c (main): Likewise.
9888         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
9889
9890         sockets: avoid compiler warning
9891         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
9892
9893         maint: detect usage(1) and other suspicious exits
9894         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
9895
9896 2009-10-29  Jim Meyering  <meyering@redhat.com>
9897
9898         timespec: long-to-int truncation could make timespec_cmp malfunction
9899         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
9900         a multiple of 2^32 nanoseconds as no difference.
9901
9902 2009-10-28  Jim Meyering  <meyering@redhat.com>
9903
9904         fprintftime: wrap macro code argument in "do {...} while(0)"
9905         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
9906         cpy macro must be a statement that can be followed by a semicolon.
9907         Now that the else clause contains a comment and is hence longer
9908         than one line, I require curly braces.  That in turn requires
9909         that we wrap this code block in the standard do...while(0).
9910
9911         fprintftime: remove stray semicolon from previous change
9912         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
9913
9914         fprintftime: avoid a warning about ignored fwrite return value
9915         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
9916         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
9917         that is unsafe.
9918         * modules/fprintftime (Depends-on): Add ignore-value.
9919
9920         exclude: avoid an unwarranted warning
9921         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
9922
9923 2009-10-27  Eric Blake  <ebb9@byu.net>
9924
9925         fseek: avoid compilation failure when fflush is replaced
9926         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
9927         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
9928         module is in use.
9929         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
9930         module is not in use; since REPLACE_FSEEK worked otherwise.
9931         (GNULIB_FTELLO): Likewise for ftell.
9932         Reported by Ian Beckwith and others.
9933
9934 2009-10-27  Bruno Haible  <bruno@clisp.org>
9935
9936         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
9937         Reported by Jim Meyering.
9938
9939 2009-10-27  Jim Meyering  <jim@meyering.net>
9940             Bruno Haible  <bruno@clisp.org>
9941
9942         Avoid warning despite dropping the return value of fwrite.
9943         * lib/unicodeio.c: Include ignore-value.h.
9944         (fwrite_success_callback): Explicitly ignore fwrite's return value.
9945         * modules/unicodeio (Depends-on): Add ignore-value.
9946
9947 2009-10-26  Eric Blake  <ebb9@byu.net>
9948
9949         areadlinkat: fix fallback path
9950         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
9951         pointer and zero.
9952
9953 2009-10-22  Pádraig Brady  <P@draigBrady.com>
9954
9955         Use a better IO block size for modern systems
9956         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
9957         * lib/md2.c: Likewise.
9958         * lib/md4.c: Likewise.
9959         * lib/md5.c: Likewise.
9960         * lib/sha1.c: Likewise.
9961         * lib/sha256.c: Likewise.
9962         * lib/sha512.c: Likewise.
9963
9964 2009-10-22  Eric Blake  <ebb9@byu.net>
9965
9966         tests: avoid several compiler warnings
9967         * tests/test-getcwd.c (main): Avoid buffer underflow.
9968         * tests/test-getdate.c (main): String literals are not safe with
9969         putenv, so use setenv.  Declare unused argument.
9970         * modules/getdate-tests (Depends-on): Add setenv.
9971         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
9972         problems with string literals in char *.
9973         * tests/test-hash.c (main): Avoid shadowing declaration.
9974         (insert_new): Treat string literals as char const *.
9975         * tests/test-getopt.h (test_getopt): Likewise.
9976         (getopt_loop): Alter types to minimize casting elsewhere.
9977         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
9978         (test_getopt_long_posix): Likewise.
9979         (do_getopt_long): Add wrapper to minimize casting.
9980         * tests/test-atexit.c (clear_temp_file): Use void.
9981         * tests/test-areadlink-with-size.c (main): Declare unused
9982         arguments.
9983         * tests/test-areadlink.c (main): Likewise.
9984         * tests/test-areadlinkat-with-size.c (main): Likewise.
9985         * tests/test-areadlinkat.c (main): Likewise.
9986         * tests/test-canonicalize-lgpl.c (main): Likewise.
9987         * tests/test-canonicalize.c (main): Likewise.
9988         * tests/test-dirent-safer.c (main): Likewise.
9989         * tests/test-dirname.c (main): Likewise.
9990         * tests/test-dup2.c (main): Likewise.
9991         * tests/test-fchdir.c (main): Likewise.
9992         * tests/test-fcntl-h.c (main): Likewise.
9993         * tests/test-fcntl-safer.c (main): Likewise.
9994         * tests/test-fdopendir.c (main): Likewise.
9995         * tests/test-fdutimensat.c (main): Likewise.
9996         * tests/test-fflush.c (main): Likewise.
9997         * tests/test-filenamecat.c (main): Likewise.
9998         * tests/test-filevercmp.c (main): Likewise.
9999         * tests/test-fopen-safer.c (main): Likewise.
10000         * tests/test-fopen.c (main): Likewise.
10001         * tests/test-fpending.c (main): Likewise.
10002         * tests/test-fpurge.c (main): Likewise.
10003         * tests/test-freading.c (main): Likewise.
10004         * tests/test-fstatat.c (main): Likewise.
10005         * tests/test-fsync.c (main): Likewise.
10006         * tests/test-futimens.c (main): Likewise.
10007         * tests/test-getndelim2.c (main): Likewise.
10008         * tests/test-gettimeofday.c (main): Likewise.
10009         * tests/test-getopt.c (main): Likewise.
10010         * tests/test-i-ring.c (main): Likewise.
10011         * tests/test-inttypes.c (main): Likewise.
10012         * tests/test-link.c (main): Likewise.
10013         * tests/test-lstat.c (main): Likewise.
10014         * tests/test-math.c (main): Likewise.
10015         * tests/test-md5.c (main): Likewise.
10016         * tests/test-memchr2.c (main): Likewise.
10017         * tests/test-memrchr.c (main): Likewise.
10018         * tests/test-mkdir.c (main): Likewise.
10019         * tests/test-mkdirat.c (main): Likewise.
10020         * tests/test-mkfifoat.c (main): Likewise.
10021         * tests/test-open.c (main): Likewise.
10022         * tests/test-openat-safer.c (main): Likewise.
10023         * tests/test-openat.c (main): Likewise.
10024         * tests/test-quotearg.c (main): Likewise.
10025         * tests/test-rawmemchr.c (main): Likewise.
10026         * tests/test-readlink.c (main): Likewise.
10027         * tests/test-remove.c (main): Likewise.
10028         * tests/test-rename.c (main): Likewise.
10029         * tests/test-renameat.c (main): Likewise.
10030         * tests/test-rmdir.c (main): Likewise.
10031         * tests/test-sha1.c (main): Likewise.
10032         * tests/test-signal.c (main): Likewise.
10033         * tests/test-sigaction.c (main): Likewise.
10034         * tests/test-stat.c (main): Likewise.
10035         * tests/test-stat-time.c (main): Likewise.
10036         * tests/test-stddef.c (main): Likewise.
10037         * tests/test-stdint.c (main): Likewise.
10038         * tests/test-stdio.c (main): Likewise.
10039         * tests/test-stdlib.c (main): Likewise.
10040         * tests/test-strchrnul.c (main): Likewise.
10041         * tests/test-strerror.c (main): Likewise.
10042         * tests/test-string.c (main): Likewise.
10043         * tests/test-strtod.c (main): Likewise.
10044         * tests/test-strverscmp.c (main): Likewise.
10045         * tests/test-symlink.c (main): Likewise.
10046         * tests/test-symlinkat.c (main): Likewise.
10047         * tests/test-sys_stat.c (main): Likewise.
10048         * tests/test-sys_time.c (main): Likewise.
10049         * tests/test-time.c (main): Likewise.
10050         * tests/test-unistd.c (main): Likewise.
10051         * tests/test-unlink.c (main): Likewise.
10052         * tests/test-unlinkat.c (main): Likewise.
10053         * tests/test-utimens.c (main): Likewise.
10054         * tests/test-utimensat.c (main): Likewise.
10055         * tests/test-version-etc.c (main): Likewise.
10056         * tests/test-wchar.c (main): Likewise.
10057         * tests/test-wctype.c (main): Likewise.
10058         * tests/test-xprintf-posix.c (main): Likewise.
10059         * tests/test-posixtm.c (main): Likewise.
10060         (STREQ): Delete unused macro.
10061         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
10062         shadowed variables.
10063         * tests/test-memchr.c (main): Likewise.
10064
10065 2009-10-21  Eric Blake  <ebb9@byu.net>
10066
10067         areadlinkat: avoid failure on older glibc
10068         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
10069         rather than mis-comparing 0 against FUNC_RESULT of char*.
10070
10071 2009-10-21  Bruno Haible  <bruno@clisp.org>
10072
10073         * modules/stpncpy (License): Relicense under LGPLv2+.
10074         Reported by David Lutterkort <lutter@redhat.com>.
10075
10076 2009-10-20  Eric Blake  <ebb9@byu.net>
10077
10078         utimensat: work around Solaris 9 bug
10079         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
10080         has trailing slash bugs.
10081         * tests/test-lutimens.h (test_lutimens): Enhance test.
10082         * tests/test-utimens.h (test_utimens): Likewise.
10083         * doc/posix-functions/utime.texi (utime): Enhance documentation.
10084         * doc/posix-functions/utimes.texi (utimes): Likewise.
10085         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
10086         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
10087         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
10088         * doc/posix-functions/futimens.texi (futimens): Likewise.
10089
10090         fdutimensat: new module
10091         * modules/fdutimensat: New file.
10092         * lib/fdutimensat.c (fdutimensat): Likewise.
10093         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
10094         * MODULES.html.sh (File system functions): Mention module.
10095         * modules/fdutimensat-tests: New test.
10096         * tests/test-fdutimensat.c: Likewise.
10097
10098         doc: regenerate INSTALL
10099         * doc/INSTALL: Reflect recent autoconf update.
10100         * doc/INSTALL.ISO: Likewise.
10101         * doc/INSTALL.UTF-8: Likewise.
10102
10103 2009-10-20  Pádraig Brady  <P@draigBrady.com>
10104
10105         acl: warn if ACL support is not detected
10106         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
10107
10108 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
10109
10110         * lib/nproc.h: Add extern "C" block for C++.
10111
10112 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
10113             Bruno Haible  <bruno@clisp.org>
10114
10115         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
10116         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
10117         * doc/posix-functions/isalpha.texi: Likewise.
10118         * doc/posix-functions/isblank.texi: Likewise.
10119         * doc/posix-functions/iscntrl.texi: Likewise.
10120         * doc/posix-functions/isdigit.texi: Likewise.
10121         * doc/posix-functions/isgraph.texi: Likewise.
10122         * doc/posix-functions/islower.texi: Likewise.
10123         * doc/posix-functions/isprint.texi: Likewise.
10124         * doc/posix-functions/ispunct.texi: Likewise.
10125         * doc/posix-functions/isspace.texi: Likewise.
10126         * doc/posix-functions/isupper.texi: Likewise.
10127         * doc/posix-functions/isxdigit.texi: Likewise.
10128
10129 2009-10-18  Bruno Haible  <bruno@clisp.org>
10130
10131         Tests for module 'isblank'.
10132         * modules/isblank-tests: New file.
10133         * tests/test-isblank.c: New file.
10134
10135         New module 'isblank'.
10136         * lib/isblank.c: New file.
10137         * m4/isblank.m4: New file.
10138         * modules/isblank: New file.
10139         * doc/posix-functions/isblank.texi: Mention the new module.
10140
10141 2009-10-18  Bruno Haible  <bruno@clisp.org>
10142
10143         New module 'ctype'.
10144         * lib/ctype.in.h: New file.
10145         * m4/ctype.m4: New file.
10146         * modules/ctype: New file.
10147         * doc/posix-headers/ctype.texi: Mention the new module.
10148
10149 2009-10-18  Jim Meyering  <meyering@redhat.com>
10150
10151         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
10152         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
10153         right after its initialization, rather than farther down.
10154         Keeping these in close proximity makes it easier to ensure
10155         that each such variable is initialized.  E.g.,
10156
10157             LIB_CLOCK_GETTIME=
10158             AC_SUBST([LIB_CLOCK_GETTIME])
10159
10160         This change also increments these serial numbers.
10161         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
10162         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
10163         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
10164
10165 2009-10-18  Bruno Haible  <bruno@clisp.org>
10166
10167         Don't let environment variables perturb build.
10168         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
10169         (gl_PREREQ_GETHRXTIME): ... not here.
10170
10171 2009-10-18  Bruno Haible  <bruno@clisp.org>
10172
10173         Avoid symlink attack in localcharset module.
10174         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
10175         (O_NOFOLLOW): Define fallback.
10176         (get_charset_aliases): Don't open the file if it is a symbolic link.
10177         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
10178         gl_FCNTL_H.
10179         (gl_FCNTL_H): Require it.
10180         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
10181         * modules/localcharset (Files): Add m4/fcntl_h.m4.
10182         Reported by Fergal Glynn <fglynn@veracode.com>.
10183
10184 2009-10-18  Bruno Haible  <bruno@clisp.org>
10185
10186         Implement nproc for mingw.
10187         * lib/nproc.c: Include <windows.h>
10188         (num_processors): On native Windows platforms, try GetSystemInfo.
10189
10190 2009-10-18  Bruno Haible  <bruno@clisp.org>
10191
10192         Implement nproc for IRIX.
10193         * lib/nproc.c: Include <sys/sysmp.h>.
10194         (num_processors): On IRIX systems, try sysmp.
10195         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
10196
10197 2009-10-18  Bruno Haible  <bruno@clisp.org>
10198
10199         Implement nproc for HP-UX.
10200         * lib/nproc.c: Include <sys/pstat.h>
10201         (num_processors): On HP-UX systems, try pstat_getdynamic.
10202         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
10203         pstat_getdynamic.
10204
10205 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
10206             Bruno Haible  <bruno@clisp.org>
10207
10208         Implement nproc for NetBSD, OpenBSD.
10209         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
10210         (ARRAY_SIZE): New macro.
10211         (num_processors): On BSD systems, try sysctl of HW_NCPU.
10212         * m4/nproc.m4: New file.
10213         * modules/nproc (Files): Add m4/nproc.m4.
10214         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
10215         (Makefile.am): Instead, augment lib_SOURCES.
10216
10217 2009-10-18  Bruno Haible  <bruno@clisp.org>
10218
10219         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
10220         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
10221         sys/param.h.
10222
10223 2009-10-16  Eric Blake  <ebb9@byu.net>
10224
10225         utimensat: new module
10226         * modules/utimensat: New file.
10227         * lib/utimensat.c (utimensat): Likewise.
10228         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
10229         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
10230         so we can work around Linux bugs.
10231         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10232         * modules/sys_stat (Makefile.am): Substitute them.
10233         * lib/sys_stat.in.h (utimensat): Declare it.
10234         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10235         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
10236         * modules/utimensat-tests: New test.
10237         * tests/test-utimensat.c: Likewise.
10238
10239         utimens: let lutimens work on non-symlinks
10240         * lib/utimens.c (lutimens): Fall back to utimens rather than
10241         failing with ENOSYS, when file is not a symlink.
10242         (utimens): Reduce redirection.
10243         * tests/test-lutimens.h (test_lutimens): Update test to cover
10244         non-symlinks.
10245         * tests/test-utimens.h (test_utimens): Update test to cover
10246         symlinks.
10247         * tests/test-utimens.c (main): Update caller.
10248
10249         utimens: cache whether utimensat syscall works
10250         * lib/utimens.c (utimensat_works_really): New cache variable.
10251         (fdutimens, lutimens): Use it to avoid failing syscall.
10252
10253         test-stat-time, test-utimens: improve portability
10254         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
10255         ext4 on alpha, and for cygwin.
10256         * tests/test-utimens-common.h: New file.
10257         (nap): Factor delays into single function.
10258         * tests/test-lutimens.h (test_lutimens): Use new header.
10259         * tests/test-futimens.h (test_futimens): Likewise.
10260         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
10261         timestamps to occur from same machine, as was done previously for
10262         test_utimens.
10263         * modules/utimens-tests (Files): Ship new file.
10264         * modules/futimens-tests (Files): Likewise.
10265         Reported in part by Jim Meyering.
10266
10267         sys_stat: sort replacement declarations
10268         * lib/sys_stat.in.h: Sort declarations.
10269         * lib/futimens.c (futimens): Fix typo.
10270
10271 2009-10-15  Jim Meyering  <meyering@redhat.com>
10272
10273         don't let environment settings perturb build
10274         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
10275         could cause a configure-time and/or build-time malfunction.
10276         Typically, a configure-time function-in-library test is performed
10277         via code like this:
10278
10279           LIB_VAR=
10280           AC_SUBST([LIB_VAR])
10281           prefix_saved_LIBS=$LIBS
10282             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
10283                        [test "$ac_cv_search_FUNC" = "none required" ||
10284                         LIB_VAR=$ac_cv_search_FUNC])
10285           LIBS=$prefix_saved_LIBS
10286
10287         However, in each of the files affected by this change, the LIB_VAR=
10288         initialization was omitted.  Thus, when set in the environment, its
10289         value would propagate into generated Makefiles when FUNC is not found
10290         in LIB_NAME.
10291         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
10292         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
10293         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
10294
10295 2009-10-14  Eric Blake  <ebb9@byu.net>
10296
10297         fchdir: avoid infinite recursion in mingw
10298         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
10299         recursing.
10300
10301         test-stat-time: port to mingw
10302         * tests/test-stat-time.c (force_unlink): Return a value.
10303         (test_ctime) [W32]: Fix compilation error.
10304         (nap): Don't call usleep with too large an argument.  Use
10305         force_unlink.
10306         * doc/pastposix-functions/usleep.texi (usleep): Document the
10307         portability issue.
10308
10309 2009-10-13  Jim Meyering  <meyering@redhat.com>
10310
10311         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
10312         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
10313         * modules/pipe-filter-ii: Likewise.
10314         * modules/sys_socket-tests: Likewise.
10315         * modules/tsearch-tests: Likewise.
10316         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
10317         (check): Depend on it.
10318
10319 2009-10-12  Eric Blake  <ebb9@byu.net>
10320
10321         utimens-tests: port to NFS file systems
10322         * tests/test-utimens.h (test_utimens): Refactor utimecmp
10323         comparisons to avoid spurious failures from timestamp drift
10324         between NFS machines.
10325
10326 2009-10-12  Eric Blake  <ebb9@byu.net>
10327
10328         stat-time-tests: minor cleanups
10329         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
10330         * tests/test-stat-time.c (nap): Separate assignment from call.
10331         Suggested by Paolo Bonzini and Bruno Haible.
10332
10333         sys_stat: guarantee struct timespec
10334         * lib/sys_stat.in.h (includes): Always include <time.h>
10335         * modules/sys_stat (Depends-on): Add time.
10336         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
10337         mode_t permission values.
10338         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
10339         get at subsecond timestamps.
10340
10341 2009-10-10  Eric Blake  <ebb9@byu.net>
10342
10343         futimens: new module
10344         * modules/futimens: New file.
10345         * lib/futimens.c (futimens): Likewise.
10346         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
10347         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
10348         we can work around Linux bugs.
10349         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
10350         * modules/sys_stat (Makefile.am): Substitute them.
10351         * lib/sys_stat.in.h (futimens): Declare it.
10352         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10353         * doc/posix-functions/futimens.texi (futimens): Likewise.
10354         * modules/futimens-tests: New test.
10355         * tests/test-futimens.c: Likewise.
10356
10357         utimens: introduce fdutimens
10358         * lib/utimens.h (fdutimens): New prototype.
10359         * lib/utimens.c (gl_futimens): Move guts...
10360         (fdutimens): ...to new interface.
10361         * tests/test-utimens.c (do_fdutimens): Use it.
10362
10363         utimens: add UTIME_NOW and UTIME_OMIT support
10364         * lib/utimens.c (validate_timespec, update_timespec): New helper
10365         functions.
10366         (gl_futimens, lutimens): Use them.
10367         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
10368         stdbool, sys_stat.
10369         (Link): Mention resulting library dependency.
10370         * modules/utimecmp (Link): Likewise.
10371         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
10372         (Makefile.am): Pick up library dependency.
10373         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
10374         definition.
10375         * tests/test-sys_stat.c: Test the definitions.
10376         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
10377         * NEWS: Document library dependency.
10378
10379         utimecmp: support symlink timestamps
10380         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
10381         hashing when possible.  Use pathconf when available.
10382         (SYSCALL_RESOLUTION): Recognize tighter resolution.
10383         * modules/utimecmp (Depends-on): Add lstat.
10384
10385         utimens: add lutimens interface
10386         * lib/utimens.c (lutimens): New function.
10387         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
10388         * lib/utimens.h (lutimens): Declare new interface.
10389         * tests/test-utimens.c (main): Enhance test.
10390         * tests/test-lutimens.h (test_lutimens): New file.
10391         * modules/utimens-tests (Files): Distribute it.
10392         (Depends-on): Add symlink.
10393         (configure.ac): Check for usleep.
10394
10395         utimens: validate futimens usage
10396         * lib/utimens.c (gl_futimens): Require valid fd up front, using
10397         fewer syscalls on failure later on.  Avoid compiler warning on
10398         mingw.
10399         * modules/utimens (Depends-on): Add dup2.
10400
10401         utimens: add test
10402         * modules/utimens-tests: New test.
10403         * tests/test-utimens.h: New file.
10404         * tests/test-futimens.h: Likewise.
10405         * tests/test-utimens.c: Likewise.
10406
10407         doc: mention timestamp portability issues
10408         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
10409         instead.
10410         * doc/posix-functions/utime.texi (utime): Likewise.
10411         * doc/posix-functions/utimes.texi (utimes): Likewise.
10412         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
10413         instead.
10414         * doc/posix-functions/futimens.texi (futimens): Mention utimens
10415         module.
10416         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
10417         Mention weakness with symlink timestamps.
10418         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
10419         to utimensat/futimens instead.
10420         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
10421
10422         test-dup2: enhance test
10423         * tests/test-dup2.c (main): Also check AT_FDCWD.
10424
10425         test-stat-time: avoid more spurious failures
10426         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
10427         xfs; and avoid race if the two timestamps cross quantization edge.
10428
10429         relocatable: prefer 'file system' over 'filesystem'
10430         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
10431         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
10432         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
10433         * doc/relocatable.texi (Enabling Relocatability): Likewise.
10434         * lib/relocatable.c (compute_curr_prefix): Likewise.
10435
10436 2009-10-10  Jim Meyering  <meyering@redhat.com>
10437
10438         stat-time-tests: check for the usleep function
10439         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
10440
10441 2009-10-10  Bruno Haible  <bruno@clisp.org>
10442
10443         * modules/xnanosleep: Put the Link section after the Include section.
10444
10445 2009-10-09  Eric Blake  <ebb9@byu.net>
10446
10447         dup2: work around FreeBSD 6.1 bug
10448         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
10449         * doc/posix-functions/dup2.texi (dup2): Document it.
10450         Reported by Nelson H. F. Beebe and Jim Meyering.
10451
10452         test-stat-time: port to buggy NFS clients
10453         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
10454         (test_ctime): Also skip test if mtime and ctime are skewed.
10455
10456         maint: prefer 'file system' over 'filesystem'
10457         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
10458         * doc/posix-functions/lstat.texi (lstat): Likewise.
10459         * lib/file-has-acl.c (file_has_acl): Likewise.
10460         * lib/fwriteerror.c [TEST]: Likewise.
10461         * tests/test-areadlink.h (test_areadlink): Likewise.
10462         * tests/test-areadlinkat-with-size.c (main): Likewise.
10463         * tests/test-areadlinkat.c (main): Likewise.
10464         * tests/test-canonicalize-lgpl.c (main): Likewise.
10465         * tests/test-canonicalize.c (main): Likewise.
10466         * tests/test-fstatat.c (main): Likewise.
10467         * tests/test-linkat.c (main): Likewise.
10468         * tests/test-lstat.h (test_lstat_func): Likewise.
10469         * tests/test-mkdir.h (test_mkdir): Likewise.
10470         * tests/test-readlink.h (test_readlink): Likewise.
10471         * tests/test-remove.c (main): Likewise.
10472         * tests/test-rename.h (test_rename): Likewise.
10473         * tests/test-renameat.c (main): Likewise.
10474         * tests/test-rmdir.h (test_rmdir_func): Likewise.
10475         * tests/test-symlink.h (test_symlink): Likewise.
10476         * tests/test-symlinkat.c (main): Likewise.
10477         * tests/test-unlink.h (test_unlink_func): Likewise.
10478         * tests/test-unlinkat.c (main): Likewise.
10479
10480         maint: make realtime library usage explicit
10481         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
10482         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
10483         * modules/settime (Link): Likewise.
10484         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
10485
10486         test-stat-time: speed up execution
10487         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
10488         warning on mingw.
10489         (nap): New helper function.
10490         (prepare_test): Use it to reduce sleep time.
10491         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
10492         execution.
10493         * modules/stat-time-tests (configure.ac): Check for usleep.
10494
10495 2009-10-09  Jim Meyering  <meyering@redhat.com>
10496
10497         selinux-h: always use getfilecon wrappers
10498         * lib/getfilecon.c: New file.
10499         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
10500         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
10501         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
10502         (fgetfilecon): Provide a stub.
10503         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
10504         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
10505         file unconditionally.
10506         When <selinux/selinux.h> is found, arrange to use wrappers.
10507         * modules/selinux-h (Files): Add getfilecon.c.
10508         (Makefile.am): Substitute include-next-related bits
10509         into the now-always-generated selinux/selinux.h file.
10510         * doc/glibc-functions/lgetfilecon.texi: New file.
10511         * doc/glibc-functions/fgetfilecon.texi: New file.
10512         * doc/glibc-functions/getfilecon.texi: New file.
10513         * doc/glibc-functions/getfilecon-desc.texi: New file.
10514         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
10515         which to pull in the new files.
10516         * MODULES.html.sh (Misc): Add selinux-h.
10517
10518 2009-10-08  Jim Meyering  <meyering@redhat.com>
10519
10520         unistd: fix comment typo
10521         * lib/unistd.in.h (euidaccess): Fix a comment typo.
10522
10523 2009-10-08  Eric Blake  <ebb9@byu.net>
10524
10525         areadlink: use SIZE_MAX consistently
10526         * modules/areadlink (Depends-on): Add stdint.
10527         * modules/areadlink-with-size (Depends-on): Likewise.
10528         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
10529         gives NULL; drop sys/types, since unistd gives size_t; and add
10530         stdint for SIZE_MAX.
10531         (SIZE_MAX): Rely on headers.
10532         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
10533         and add stdint.
10534         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
10535         (SIZE_MAX): Likewise.
10536         (INITIAL_BUF_SIZE): Turn into enum.
10537         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
10538
10539 2009-10-08  Jim Meyering  <meyering@redhat.com>
10540
10541         areadlinkat: avoid compilation failure
10542         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
10543         Fix typo in comment.
10544
10545 2009-10-07  Eric Blake  <ebb9@byu.net>
10546
10547         areadlinkat-with-size: new module
10548         * modules/areadlinkat-with-size: New module.
10549         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
10550         * lib/areadlink.h (areadlinkat): Declare it.
10551         * MODULES.html.sh (File system functions): Mention it.
10552         * modules/areadlinkat-with-size-tests: New test.
10553         * tests/test-areadlinkat-with-size.c: New file.
10554
10555         xreadlinkat: new module
10556         * modules/xreadlinkat: New module.
10557         * lib/xreadlinkat.c (xreadlinkat): New file.
10558         * lib/xreadlink.h (xreadlinkat): Declare it.
10559         * MODULES.html.sh (File system functions): Mention it.
10560
10561         areadlinkat: new module
10562         * lib/at-func.c (FUNC_FAIL): New define.
10563         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
10564         * modules/areadlinkat: New module.
10565         * lib/linkat.c (areadlinkat): Move...
10566         * lib/areadlinkat.c (areadlinkat): ...to new file.
10567         * lib/areadlink.h (areadlinkat): Declare it.
10568         * modules/linkat (Depends-on): Add areadlinkat.
10569         * MODULES.html.sh (File system functions): Mention it.
10570         * modules/areadlinkat-tests: New test.
10571         * tests/test-areadlinkat.c: New file.
10572
10573         areadlink, areadlink-with-size: add tests
10574         * modules/areadlink-tests: New test.
10575         * modules/areadlink-with-size-tests: Likewise.
10576         * tests/test-areadlink.h: New file.
10577         * tests/test-areadlink.c: Likewise.
10578         * tests/test-areadlink-with-size.c: Likewise.
10579
10580         maint: minor cleanups
10581         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
10582         _UNUSED_PARAMETER_ instead.
10583         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
10584         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
10585         * modules/linkat-tests (Files): Distribute test-link.h.
10586
10587         openat, utimens: whitespace cleanup
10588         * lib/openat.c: Prefer space throughout, rather than mix of 8
10589         spaces vs. tabs.
10590         * lib/at-func.c: Likewise.
10591         * lib/utimens.c: Likewise.
10592
10593         openat: avoid using wrong fd
10594         * lib/openat.c (openat_permissive): Reject user's fd if saving the
10595         working directory chooses same fd.
10596         * lib/at-func.c (AT_FUNC_NAME): Likewise.
10597
10598         mkdir, mkdirat: fix cygwin 1.5.x bug
10599         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
10600         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
10601         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
10602         bug.
10603         (gl_PREREQ_MKDIR): Delete unused macro.
10604         * modules/mkdir (Files): Track file rename.
10605         (configure.ac): Update macro name.
10606         * modules/openat (Depends-on): Add mkdir.
10607         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
10608
10609         mkdir, mkdirat: add tests
10610         * modules/mkdir-tests: New test.
10611         * tests/test-mkdir.h: New file.
10612         * tests/test-mkdir.c: Likewise.
10613         * tests/test-mkdirat.c: Likewise.
10614         * modules/openat-tests (Files): Add new files.
10615         (Makefile.am): Run new test.
10616
10617 2009-10-06  Eric Blake  <ebb9@byu.net>
10618
10619         doc: tweak *at function documentation
10620         * doc/posix-functions/faccessat.texi (faccessat): Mention
10621         known issue with replacement.
10622         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
10623         * doc/posix-functions/linkat.texi (linkat): Likewise.
10624         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
10625         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
10626         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
10627         * doc/posix-functions/renameat.texi (renameat): Likewise.
10628         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
10629
10630         openat: fix GNU/Hurd bug in unlinkat
10631         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
10632         broken.
10633         * doc/posix-functions/unlink.texi (unlink): Document this.
10634         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
10635
10636         fdopendir: fix GNU/Hurd bug
10637         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
10638         allowing non-directory fds.
10639         * lib/fdopendir.c (rpl_fdopendir): Work around it.
10640         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
10641         * modules/dirent (Makefile.am): Substitute it.
10642         * lib/dirent.in.h (fdopendir): Declare replacement.
10643         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
10644         * tests/test-fdopendir.c (main): Test something other than
10645         /dev/null, since on Hurd that behaves like a directory.
10646
10647         test-symlink: port to GNU/Hurd
10648         * tests/test-symlink.h (test_symlink): Relax expected errno.
10649
10650         doc: tweak more cygwin information
10651         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
10652         now compatible with glibc.
10653         * doc/posix-functions/getopt.texi (getopt): Likewise.
10654
10655         getopt-gnu: add another test
10656         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
10657         guarantee behavior relied on by m4.
10658         * tests/test-getopt.c (main): Use it.
10659         * modules/getopt-posix-tests (Depends-on): Add setenv.
10660         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
10661
10662         getopt: fix compilation on darwin
10663         * lib/getopt.in.h (includes): Leave breadcrumbs during system
10664         include.
10665         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
10666         Reported by Ludovic Courtès.
10667
10668 2009-10-06  Bruno Haible  <bruno@clisp.org>
10669
10670         * modules/size_max (Description): Discourage its use.
10671         Reported by Simon Josefsson.
10672
10673 2009-10-06  Jim Meyering  <meyering@redhat.com>
10674
10675         linkat: avoid compilation failure
10676         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
10677
10678 2009-10-05  Eric Blake  <ebb9@byu.net>
10679
10680         linkat: support Linux 2.6.17
10681         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
10682         linkat on Linux, but allow cache variable override.
10683         * lib/linkat.c (rpl_linkat): Define override.
10684         * modules/linkat (Depends-on): Add symlinkat.
10685         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
10686         * modules/unistd (Makefile.am): Substitute it.
10687         * lib/unistd.in.h (linkat): Declare replacement.
10688         Reported by Pádraig Brady.
10689
10690         quotearg: port test to systems with C.UTF-8 locale
10691         * tests/test-quotearg.c (struct result_strings): Add another
10692         member, differentiating between C.ASCII and C.UTF-8 handling.
10693         (compare_strings): Add parameter.
10694         (main): Adjust all callers.
10695
10696         getopt: avoid clash with FreeBSD _getopt_internal
10697         * lib/getopt.in.h (_getopt_internal): Override the name.
10698         * lib/getopt_int.h (includes): Pick up any overrides.
10699         Reported by Reuben Thomas.
10700
10701         hash: allow C89 compilation
10702         * lib/hash.c (check_tuning): Move declaration before statement.
10703         Reported by Reuben Thomas.
10704
10705 2009-10-05  Karl Berry  <karl@gnu.org>
10706
10707         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
10708
10709 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
10710             Bruno Haible  <bruno@clisp.org>
10711
10712         * lib/uname.c (uname): Use a table-driven algorithm to compute
10713         Windows NT versions.
10714
10715 2009-10-04  Bruno Haible  <bruno@clisp.org>
10716
10717         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
10718         program_invocation_short_name.
10719         * modules/progname (configure.ac): Test for presence of
10720         program_invocation_short_name.
10721         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
10722
10723 2009-10-04  Bruno Haible  <bruno@clisp.org>
10724
10725         * lib/progname.c (set_program_name): Fix comment.
10726         Reported by Jim Meyering.
10727
10728 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
10729             Bruno Haible  <bruno@clisp.org>
10730
10731         * lib/uname.c: Include <string.h>.
10732         (uname): Do only one call to GetVersionEx in the common case.
10733
10734 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
10735             Bruno Haible  <bruno@clisp.org>
10736
10737         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
10738         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
10739         (uname): Add support for Windows CE and various non-x86 CPU types.
10740
10741 2009-10-03  Bruno Haible  <bruno@clisp.org>
10742
10743         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
10744         invocation to tests/configure.ac.
10745         Reported by Ian Beckwith <ianb@erislabs.net>.
10746
10747 2009-10-02  Eric Blake  <ebb9@byu.net>
10748
10749         fchdir: avoid compiler warning
10750         * lib/fchdir.c (canonicalize_file_name)
10751         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
10752
10753         test-open: support mingw errno values
10754         * tests/test-open.h (test_open): Relax test.
10755         * tests/test-fopen.h (test_fopen): Likewise.
10756         * tests/test-openat-safer.c (main): Likewise.
10757
10758         open: fix opening directory on mingw
10759         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
10760
10761         test-open: on GNU/Hurd, /dev/null is a directory
10762         * tests/test-fopen.h (main): Rename...
10763         (test_fopen): ...to this.  Use a guaranteed non-directory when
10764         confirming open behavior on trailing slash.
10765         * tests/test-openat-safer.c (main): Likewise.
10766         * tests/test-open.h (main): Likewise....
10767         (test_open): ...to this.
10768         * tests/test-fopen.c (main): Adjust caller.
10769         * tests/test-fopen-safer.c (main): Likewise.
10770         * tests/test-open.c (main): Likewise.
10771         * tests/test-fcntl-safer.c (main): Likewise.
10772         Reported by Samuel Thibault.
10773
10774         rename, fchdir: don't ignore chdir failure
10775         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
10776         * lib/rename.c (rpl_rename) [W32]: Likewise.
10777         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
10778         an empty destination directory if source cannot be renamed,
10779         although there is still possibility for failure.
10780         * doc/posix-functions/rename.texi (rename): Document the race.
10781         Reported by Jim Meyering.
10782
10783         maint: cleanup whitespace in recent commits
10784         * lib/rename.c (rpl_rename): Remove tabs.
10785         * tests/test-link.h (test_link): Likewise.
10786         * lib/fchdir.c (get_name): Likewise.
10787         Reported by Jim Meyering.
10788
10789 2009-10-02  Ben Pfaff  <blp@gnu.org>
10790
10791         relocatable-prog-wrapper: Add missing dependency on
10792         double-slash-root.
10793         * modules/relocatable-prog-wrapper: Add dependency.
10794         Reported by Ian Beckwith <ianb@erislabs.net>.
10795
10796 2009-10-02  Eric Blake  <ebb9@byu.net>
10797
10798         renameat: fix Solaris bugs
10799         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
10800         needed fixing.
10801         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
10802         * modules/stdio (Makefile.am): Substitute it.
10803         * lib/stdio.in.h (renameat): Declare replacement.
10804         * lib/renameat.c (rpl_renameat): Implement fix.
10805
10806         renameat: new module
10807         * modules/renameat: New file.
10808         * lib/renameat.c (renameat): Likewise.
10809         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
10810         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
10811         * modules/stdio (Makefile.am): Substitute them.
10812         * lib/stdio.in.h (renameat): Declare it.
10813         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
10814         * doc/posix-functions/renameat.texi (renameat): Likewise.
10815         * modules/renameat-tests: New test.
10816         * tests/test-renameat.c: Likewise.
10817
10818         rename: fix mingw bugs
10819         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
10820         directory overwrite bugs.
10821
10822         rename: fix another cygwin 1.5 bug
10823         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
10824         checks.
10825         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
10826         unnecessary cygwin workarounds.  Also work around bug with moving
10827         full directory onto an empty one.
10828         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
10829
10830         rename-dest-slash: merge into rename module
10831         * modules/rename-dest-slash (Status): Mark obsolete.
10832         (Depends-on): Add rename.
10833         (Files): Let rename do it all.
10834         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
10835         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
10836         * m4/rename-dest-slash.m4: ...so this file can be deleted.
10837         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
10838         * lib/rename.c (rpl_rename): Update comments.
10839
10840         rename: fix cygwin 1.5.x bugs
10841         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
10842         * lib/rename.c (rpl_rename): Work around them.
10843         * modules/rename (Depends-on): Add same-inode.
10844
10845         rename: fix Solaris 10 bug
10846         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
10847         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
10848         was the only bug.
10849
10850         rename: fix Solaris 9 bug
10851         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
10852         on non-directory.  Avoid calling exit.
10853         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
10854         strdup.
10855         * modules/rename-tests (Depends-on): Drop lstat.
10856         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
10857         (gl_PREREQ_RENAME): Delete unused macro.
10858
10859         rename-dest-slash: fix NetBSD bug
10860         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
10861         links.
10862         * modules/rename-dest-slash (Depends-on): Add same-inode.
10863
10864         rename-tests: new test, exposes several platform bugs
10865         * modules/rename-tests: New file.
10866         * tests/test-rename.h: Likewise.
10867         * tests/test-rename.c: Likewise.
10868         * doc/posix-functions/rename.texi (rename): Improve documentation,
10869         including bugs that will eventually be fixed in gnulib.
10870
10871 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
10872
10873         * lib/uname.c: Include <stdlib.h>
10874         (uname): Assume version info is available.
10875
10876 2009-10-02  Jim Meyering  <meyering@redhat.com>
10877
10878         gnu-web-doc-update: correct --help output
10879         * build-aux/gnu-web-doc-update: Make --help output relevant.
10880
10881         gnu-web-doc-update: add standard options
10882         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
10883
10884         gnu-web-doc-update: New module.
10885         Use this script to automatically update the on-line web documentation
10886         for your GNU project at http://www.gnu.org/software/$pkg/manual/
10887         * modules/gnu-web-doc-update: New file, from coreutils.
10888         * build-aux/gnu-web-doc-update: New script.
10889
10890 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
10891
10892         link: LoadLibrary is not needed.
10893         * lib/link.c: Use GetModuleHandle.
10894
10895 2009-10-01  Eric Blake  <ebb9@byu.net>
10896
10897         getopt: bump serial number
10898         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
10899         change.
10900
10901         tests: tighten link, rmdir, and remove tests
10902         * tests/test-link.h (includes): No need to use <config.h> here.
10903         Clean up if directory hard link was created, otherwise test for
10904         trailing '.'.
10905         * tests/test-linkat.c (main): Simplify.
10906         * tests/test-remove.c (main): Enhance test for trailing '.'.
10907         * tests/test-rmdir.h (test_rmdir_func): Likewise.
10908
10909 2009-10-01  Jim Meyering  <meyering@redhat.com>
10910
10911         maint.mk: requiring "make major" was annoying, for a "minor" release.
10912         What is intended is "stable", to contrast with alpha and beta,
10913         so require "make stable", not "make major".
10914         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
10915         (get_tool_versions): Likewise.
10916         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
10917
10918 2009-09-30  Ben Pfaff  <blp@gnu.org>
10919
10920         Fix broken build of replacement for Windows tmpfile().
10921         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
10922         flags argument added along with the 'mkostemp' module.
10923
10924 2009-09-28  Bruno Haible  <bruno@clisp.org>
10925
10926         Avoid identifier clash with POSIX function 'remove' defined as a macro.
10927         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
10928         to 'remove_elt'.
10929         (gl_list_remove): Update.
10930         * lib/gl_list.c (gl_list_remove): Update.
10931         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
10932         to 'remove_elt'.
10933         (gl_oset_remove): Update.
10934         * lib/gl_list.c (gl_oset_remove): Update.
10935         Reported by Eric Blake.
10936
10937 2009-09-28  Eric Blake  <ebb9@byu.net>
10938
10939         doc: mention yet more cygwin 1.7 status
10940         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
10941         cygwin.
10942         * doc/glibc-functions/execvpe.texi (execvpe): New file.
10943         * doc/gnulib.texi (Glibc unistd.h): Mention it.
10944
10945         argp: fix test failure
10946         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
10947         that are not upper-case.  Pass correct range to tolower.
10948
10949 2009-09-27  Jim Meyering  <meyering@redhat.com>
10950
10951         test-yesno: work around sparc-dash here-document infelicity
10952         Without this change, the literal \177 byte in a here document
10953         would make dash 0.5.5.1-3 access uninitialized memory.
10954         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
10955         Instead, use a marker, "@", and filter through tr to create the desired
10956         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
10957
10958 2009-09-27  Bruno Haible  <bruno@clisp.org>
10959
10960         Disable untested support for new flavours of ACLs on AIX.
10961         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
10962         progress.
10963         * lib/set-mode-acl.c (qset_acl): Likewise.
10964
10965 2008-12-07  Bruno Haible  <bruno@clisp.org>
10966
10967         Add support for new flavours of ACLs on AIX. (Untested.)
10968         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
10969         (file_has_acl): Add support for newer AIX.
10970         * lib/set-mode-acl.c (qset_acl): Likewise.
10971         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
10972         Rainer Tammer <tammer@tammer.net>.
10973
10974 2009-09-26  Eric Blake  <ebb9@byu.net>
10975
10976         argp: fix compilation of getopt
10977         * lib/getopt.in.h (includes): Use different guard than glibc.
10978         Reported by Sergey Poznyakoff.
10979
10980         doc: mention more cygwin 1.7 status
10981         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
10982         bug.
10983         * doc/posix-functions/execl.texi (execl): Likewise.
10984         * doc/posix-functions/execle.texi (execle): Likewise.
10985         * doc/posix-functions/execlp.texi (execlp): Likewise.
10986         * doc/posix-functions/execv.texi (execv): Likewise.
10987         * doc/posix-functions/execve.texi (execve): Likewise.
10988         * doc/posix-functions/execvp.texi (execvp): Likewise.
10989         * doc/glibc-functions/canonicalize_file_name.texi
10990         (canonicalize_file_name): Cygwin 1.7 now provides this.
10991         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
10992         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
10993         on AT_SYMLINK_NOFOLLOW.
10994
10995 2009-09-24  Eric Blake  <ebb9@byu.net>
10996
10997         test-linkat: make test more robust
10998         * tests/test-linkat.c (main): Avoid collision with EEXIST.
10999
11000         getopt: fix inclusion guards for cygwin
11001         * modules/getopt-posix (Depends-on): Add include-next.
11002         (Makefile.am): Substitute more items in replacement header.
11003         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
11004         <getopt.h>.
11005         * lib/getopt.in.h (includes): Use split inclusion guard, and
11006         prefer <getopt.h> over include <unistd.h> when one is present.
11007         (option): Also override name of 'struct option'.
11008
11009         same-inode: revert prior change; it is not yet ready
11010         * NEWS: Undo mention of this change.
11011         * lib/same-inode.h (same-inode.h): Undo tri-state change.
11012         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
11013         * lib/cycle-check.c (cycle_check): Likewise.
11014         * lib/same.c (same_name): Likewise.
11015         * lib/at-func2.c (at_func2): Likewise.
11016
11017 2009-09-23  Eric Blake  <ebb9@byu.net>
11018
11019         linkat: new module
11020         * modules/linkat: New file.
11021         * lib/at-func2.c (at_func2): Likewise.
11022         * lib/linkat.c (linkat): Likewise.
11023         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
11024         * lib/openat-priv.h (at_func2): Add declaration.
11025         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
11026         * modules/unistd (Makefile.am): Substitute them.
11027         * lib/unistd.in.h (linkat): Declare it.
11028         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
11029         * doc/posix-functions/linkat.texi (linkat): Likewise.
11030         * doc/posix-functions/link.texi (link): Tweak wording.
11031         * tests/test-link.c (main): Move guts...
11032         * tests/test-link.h (test_link): ...into new file.
11033         * modules/linkat-tests: New test.
11034         * tests/test-linkat.c: Likewise.
11035         * modules/link-tests (Files): Ship new file.
11036         (Depends-on): Add stdbool.
11037
11038         dirname: add library-safe mdir_name
11039         * lib/dirname.h (mdir_name): New prototype.
11040         * lib/dirname.c (dir_name): Move guts...
11041         (mdir_name): ...to new function that avoids xalloc_die.
11042
11043         fchdir: another mingw fix
11044         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
11045         * lib/fchdir.c (get_name): New helper method; skips canonicalize
11046         on mingw (where it has not yet been ported), and make it optional
11047         elsewhere.
11048         (_gl_register_fd): Use it.
11049
11050         same-inode: make SAME_INODE tri-state, to port to mingw
11051         * NEWS: Mention this change.
11052         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
11053         st_ino always being 0.
11054         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
11055         * lib/cycle-check.c (cycle_check): Likewise.
11056         * lib/same.c (same_name): Likewise.
11057
11058         lstat: avoid mingw compilation error
11059         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
11060         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
11061         lstat ourselves.
11062         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
11063         was adequate.
11064         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
11065         the checks for lstat.
11066         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
11067
11068         link: fix test failure on Solaris 9
11069         * lib/link.c (rpl_link): Don't assume link will catch bogus
11070         trailing slash on source.
11071
11072         test-symlinkat: enhance test
11073         * tests/test-readlink.c (main): Move guts...
11074         * tests/test-readlink.h (test_readlink): ...into new file.
11075         * tests/test-symlink.c (main): Move guts...
11076         * tests/test-symlink.h (test_symlink): ...into new file.
11077         * tests/test-symlinkat.c (main): Use new files for further
11078         coverage.
11079         (do_symlink, do_readlink): New helper functions.
11080         * modules/symlink-tests (Files): Ship new file.
11081         (Depends-on): Add stdbool.
11082         * modules/readlink-tests (Files): Ship new file.
11083         (Depends-on): Add stdbool.
11084         * modules/symlinkat-tests (Files): Use new files.
11085
11086 2009-09-23  Eric Blake  <ebb9@byu.net>
11087
11088         readlink: document portability issue with symlink length
11089         * doc/posix-functions/lstat.texi (lstat): Mention that some file
11090         systems have bogus st_size on symlinks, and mention the
11091         areadlink-with-size module.
11092         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
11093         * doc/posix-functions/readlink.texi (readlink): Mention the
11094         areadlink module, and ERANGE failure.
11095         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
11096         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
11097
11098         readlink: fix Solaris 9 bug with trailing slash
11099         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
11100         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
11101         * doc/posix-functions/readlink.texi (readlink): Document this.
11102         * modules/readlink-tests: New test.
11103         * tests/test-readlink.c: Likewise.
11104
11105         readlink: fix cygwin 1.5.x bug with return type
11106         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
11107         * lib/unistd.in.h (readlink): Use ssize_t.
11108         * lib/readlink.c (readlink): Likewise.
11109         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
11110         * modules/unistd (Makefile.am): Substitute it.
11111         * lib/unistd.in.h (readlink): Declare replacement.
11112         * doc/posix-functions/readlink.texi (readlink): Document this.
11113
11114         symlink: use throughout gnulib
11115         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
11116         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
11117         symlink is not used.
11118         * modules/symlinkat (Depends-on): Add symlink.
11119         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
11120         * modules/canonicalize-tests (Depends-on): Likewise.
11121         * modules/lstat-tests (Depends-on): Likewise.
11122         * modules/openat-tests (Depends-on): Likewise.
11123         * modules/remove-tests (Depends-on): Likewise.
11124         * modules/rmdir-tests (Depends-on): Likewise.
11125         * modules/unlink-tests (Depends-on): Likewise.
11126         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
11127         * tests/test-canonicalize.c (symlink): Likewise.
11128         * tests/test-fstatat.c (symlink): Likewise.
11129         * tests/test-lstat.c (symlink): Likewise.
11130         * tests/test-remove.c (symlink): Likewise.
11131         * tests/test-rmdir.c (symlink): Likewise.
11132         * tests/test-unlink.c (symlink): Likewise.
11133         * tests/test-unlinkat.c (symlink): Likewise.
11134
11135         symlink: new module, for Solaris 9 bug
11136         * modules/symlink: New file.
11137         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
11138         * lib/symlink.c: Likewise.
11139         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
11140         * modules/unistd (Makefile.am): Substitute them.
11141         * lib/unistd.in.h (symlink): Declare replacement.
11142         * MODULES.html.sh (File system functions): Mention it.
11143         * doc/posix-functions/symlink.texi (symlink): Likewise.
11144         * modules/symlink-tests: New test.
11145         * tests/test-symlink.c: Likewise.
11146
11147 2009-09-23  Bruno Haible  <bruno@clisp.org>
11148
11149         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
11150         when needed.
11151         Test case: gnulib-tool --import --with-tests atexit inttypes.
11152         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
11153
11154 2009-09-23  Bruno Haible  <bruno@clisp.org>
11155
11156         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
11157         subcommand, not in a subshell.
11158
11159 2009-09-22  Eric Blake  <ebb9@byu.net>
11160
11161         unistd: sort replacement declarations
11162         * lib/unistd.in.h: Sort declarations.
11163
11164         open, openat: minor optimization
11165         * lib/open.c (open): If open succeeded, len is non-zero.
11166         * lib/openat.c (rpl_openat): Likewise.
11167
11168         link-follow: ensure correct result
11169         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
11170         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
11171         distinguish between possible failures.
11172
11173 2009-09-21  Eric Blake  <ebb9@byu.net>
11174
11175         fts: avoid compiler warning
11176         * lib/fts.c (dirent_inode_sort_may_be_useful)
11177         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
11178
11179 2009-09-19  Bruno Haible  <bruno@clisp.org>
11180
11181         * lib/progreloc.c (canonicalize_file_name): New declaration.
11182
11183 2009-09-19  Eric Blake  <ebb9@byu.net>
11184
11185         link: fix quoting
11186         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
11187
11188         openat: fix openat bugs on Solaris 9
11189         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
11190         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
11191         * modules/openat (Depends-on): Add open.
11192         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
11193         * modules/fcntl-h (Makefile.am): Substitute it.
11194         * lib/fcntl.in.h (openat): Declare replacement.
11195         * doc/posix-functions/openat.texi (openat): Document this.
11196
11197         openat: move fstatat and unlinkat into correct files
11198         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
11199         compiled.
11200         * lib/openat.c (fstatat, unlinkat): Move...
11201         * lib/fstatat.c (fstatat): ...into correct files.
11202         * lib/unlinkat.c (unlinkat): Likewise.
11203
11204         openat: fix unlinkat bugs on Solaris 9
11205         * lib/unlinkat.c (unlinkat): New file.
11206         * modules/openat (Depends-on): Add unlink.
11207         (Files): Distribute it.
11208         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
11209         trailing slash behavior is broken.
11210         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
11211         * modules/unistd (Makefile.am): Substitute it.
11212         * lib/unistd.in.h (unlinkat): Declare replacement.
11213         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
11214
11215         openat: fix fstatat bugs on Solaris 9
11216         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
11217         stat.
11218         * doc/posix-functions/fstatat.texi (fstatat): Document this.
11219
11220         test-unlinkat: enhance test, to expose Solaris 9 bug
11221         * tests/test-unlink.c (main): Factor guts...
11222         * tests/test-unlink.h (test_rmdir_func): ...into new file.
11223         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
11224         * tests/test-rmdir.c (main): Adjust caller.
11225         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
11226         (unlinker): New helper function.
11227         (rmdirat): Enhance check.
11228         * modules/rmdir-tests (Depends-on): Add stdbool.
11229         * modules/unlink-tests (Depends-on): Likewise.
11230         (Files): Add test-unlink.h.
11231         * modules/openat-tests (Files): Likewise.
11232         (Depends-on): Add unlinkdir.
11233
11234         test-fstatat: new test, to expose Solaris 9 bugs
11235         * tests/test-stat.c (main): Factor guts...
11236         * tests/test-stat.h (test_stat_func): ...into new file.
11237         * tests/test-lstat.c (main): Factor guts...
11238         * tests/test-lstat.h (test_lstat_func): ...into new file.
11239         * tests/test-fstatat.c: New file.
11240         * modules/stat-tests (Files): Add test-stat.h.
11241         * modules/lstat-tests (Files): Add test-lstat.h.
11242         (Depends-on): Add stdbool.
11243         * modules/openat-tests (Depends-on): Add pathmax.
11244         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
11245         (Makefile.am): Run new test.
11246
11247         remove: new module, for mingw and Solaris 9 bugs
11248         * modules/remove: New file.
11249         * lib/remove.c: Likewise.
11250         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
11251         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
11252         * modules/stdio (Makefile.am): Use them.
11253         * lib/stdio.in.h (remove): Declare replacement.
11254         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
11255         * doc/posix-functions/remove.texi (remove): Likewise.
11256         * modules/remove-tests: New test.
11257         * tests/test-remove.c: Likewise.
11258
11259         unlink: new module, for Solaris 9 bug
11260         * modules/unlink: New file.
11261         * lib/unlink.c: Likewise.
11262         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
11263         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
11264         * modules/unistd (Makefile.am): Use them.
11265         * lib/unistd.in.h (stat): Declare replacement.
11266         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
11267         * doc/posix-functions/unlink.texi (unlink): Likewise.
11268         * modules/unlink-tests: New test.
11269         * tests/test-unlink.c: Likewise.
11270
11271         lstat: fix Solaris 9 bug
11272         * lib/lstat.c (lstat): Also check for trailing slash on
11273         non-symlink, non-directories.  Use stat module to simplify logic.
11274         * doc/posix-functions/lstat.texi (lstat): Document it.
11275         * modules/lstat-tests (Depends-on): Add errno, same-inode.
11276         (configure.ac): Check for symlink.
11277         * tests/test-lstat.c (main): Add more tests.
11278
11279         stat: add as dependency to other modules
11280         * modules/chown (Depends-on): Add stat.
11281         * modules/euidaccess (Depends-on): Likewise.
11282         * modules/fchdir (Depends-on): Likewise.
11283         * modules/isdir (Depends-on): Likewise.
11284         * modules/link (Depends-on): Likewise.
11285         * modules/lstat (Depends-on): Likewise.
11286         * modules/mkdir-p (Depends-on): Likewise.
11287         * modules/modechange (Depends-on): Likewise.
11288         * modules/open (Depends-on): Likewise.
11289         * modules/readlink (Depends-on): Likewise.
11290         * modules/same (Depends-on): Likewise.
11291
11292         stat: fix Solaris 9 bug
11293         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
11294         slash.
11295         * lib/stat.c (rpl_stat): Work around it.
11296         * doc/posix-functions/stat.texi (stat): Update documentation.
11297
11298         stat: new module, for mingw bug
11299         * modules/stat: New file.
11300         * lib/stat.c: Likewise.
11301         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
11302         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
11303         * modules/sys_stat (Makefile.am): Use them.
11304         * lib/sys_stat.in.h (stat): Declare replacement.
11305         * lib/openat.c (fstatat): Deal with lstat and stat being function
11306         macros.
11307         * modules/openat (Depends-on): Add inline.
11308         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
11309         * doc/posix-functions/stat.texi (stat): Likewise.
11310         * modules/stat-tests: New test.
11311         * tests/test-stat.c: Likewise.
11312
11313 2009-09-19  Jim Meyering  <meyering@redhat.com>
11314
11315         syntax-check: detect unnecessary inclusion of canonicalize.h
11316         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
11317
11318 2009-09-19  Eric Blake  <ebb9@byu.net>
11319
11320         canonicalize-lgpl: adjust clients to use correct header
11321         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
11322         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
11323         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
11324         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
11325         * lib/progreloc.c (includes): Likewise.
11326
11327 2009-09-19  Jim Meyering  <meyering@redhat.com>
11328
11329         test-posixtm.c: correct a comment
11330         * tests/test-posixtm.c: Correct first-line comment.
11331         Spotted by Eric Blake.
11332
11333 2009-09-16  Jim Meyering  <meyering@redhat.com>
11334
11335         posixtm-tests: make T const-correct; add a test case
11336         * tests/test-posixtm.c (T): Declare const.
11337         Add a test for -(2^31+1).
11338         Remove useless can-succeed-only-in-2002 test.
11339
11340         posixtm-tests: adjust the sole failing test
11341         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
11342         expected output matches what mktime now produces.  Cross-checked via
11343         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
11344
11345         posixtm: move #ifdef'd tests into a new module
11346         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
11347         * tests/test-posixtm.c: ... this new file.
11348         * modules/posixtm-tests: New module.
11349
11350 2009-09-19  Eric Blake  <ebb9@byu.net>
11351
11352         openat: simplify use of at-func.c
11353         * lib/at-func.c (includes): Include prerequisites here, to
11354         simplify requirements on client files.
11355         * lib/openat-priv.h: Add double-inclusion guard.
11356         * lib/faccessat.c (includes): Simplify.
11357         * lib/fchmodat.c (includes): Likewise.
11358         * lib/fchownat.c (includes): Likewise.
11359         * lib/mkdirat.c (includes): Likewise.
11360         * lib/mkfifoat.c (includes): Likewise.
11361         * lib/symlinkat.c (includes): Likewise.
11362
11363         openat: allow return of fd 0
11364         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
11365         * modules/save-cwd (Depends-on): Replace fcntl-safer with
11366         unistd-safer.
11367         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
11368         <fcntl.h>; this module does not leak fds.
11369         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
11370         must be allowed to return 0, leaving openat_safer to add the
11371         safety.
11372         (openat_permissive): Avoid writing to just-opened fd 2 if
11373         restoring the current directory fails.
11374         * lib/openat-die.c (openat_restore_fail): Add comment.
11375         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
11376         (save_cwd): Guarantee safe fd, but without use of open_safer.
11377         * tests/test-openat.c: New test.
11378         * modules/openat-tests (Files, Makefile.am): Distribute and build
11379         new file.
11380
11381         relocatable-prog-wrapper: fix build
11382         * modules/relocatable-prog-wrapper (Files): Update name of
11383         canonicalize m4 file, broken on 2009-09-17.
11384         Reported by emad hajjar <aleppos@hotmail.com>.
11385
11386 2009-09-19  Bruno Haible  <bruno@clisp.org>
11387
11388         * lib/safe-alloc.h: Use the standard header with GPL copyright.
11389         * lib/safe-alloc.c: Likewise.
11390         Reported by Ian Beckwith <ianb@erislabs.net>.
11391
11392 2009-09-18  Bruno Haible  <bruno@clisp.org>
11393
11394         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
11395         Reported by <erobles@sensacd.com.mx>.
11396
11397 2009-09-17  Eric Blake  <ebb9@byu.net>
11398
11399         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
11400         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
11401         slashes when checking if last component is missing.
11402         * tests/test-canonicalize.c (main): Test this.
11403
11404         canonicalize, canonicalize-lgpl: honor // if distinct from /
11405         * modules/canonicalize (Files): Add double-slash-root.m4.
11406         * modules/canonicalize-lgpl (Files): Likewise.
11407         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
11408         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
11409         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
11410         fallback definition.
11411         (canonicalize_filename_mode): Use it to protect //.
11412         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
11413         (__realpath): Likewise.
11414         * tests/test-canonicalize.c (main): Test this.
11415         * tests/test-canonicalize-lgpl.c (main): Likewise.
11416         * modules/canonicalize-tests (Depends-on): Add same-inode.
11417         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
11418
11419         canonicalize-lgpl: fix glibc bug with trailing slash
11420         * m4/canonicalize-lgpl.m4: Move contents...
11421         * m4/canonicalize.m4: ...here.
11422         (gl_CANONICALIZE_LGPL): Factor realpath check...
11423         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
11424         glibc 2.3.5 bug, fixed 2005-04-27.
11425         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
11426         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
11427         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
11428         * modules/canonicalize-lgpl (Files): Manage file rename.
11429         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
11430         * modules/stdlib (Makefile.am): Substitute witness.
11431         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
11432         is needed.
11433         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
11434         replacement is required.
11435         * lib/canonicalize.c (canonicalize_file_name): Likewise.
11436         * doc/glibc-functions/canonicalize_file_name.texi
11437         (canonicalize_file_name): Document this.
11438         * doc/posix-functions/realpath.texi (realpath): Likewise.
11439
11440         canonicalize-lgpl: reject non-directory with trailing slash
11441         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
11442         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
11443         catches failures in glibc 2.3.5.
11444         * tests/test-canonicalize.c (main): Likewise.
11445
11446         canonicalize-lgpl: use native realpath if it works
11447         * lib/canonicalize-lgpl.c (realpath): Guard with
11448         FUNC_REALPATH_WORKS.
11449         * lib/stdlib.in.h (realpath): Make declaration optional based on
11450         HAVE_REALPATH.
11451         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
11452         native realpath works.
11453         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
11454         * modules/stdlib (Makefile.am): Substitute witness.
11455
11456         canonicalize, canonicalize-lgpl: use <stdlib.h>
11457         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
11458         (Include): Mention <stdlib.h>.
11459         (configure.ac): Mention functions we provide.
11460         * modules/canonicalize (configure.ac): Likewise.
11461         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
11462         realpath if canonicalize_file_name is missing.
11463         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
11464         * modules/stdlib (Makefile.am): Substitute witnesses.
11465         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
11466         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
11467         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
11468         * NEWS: Document this.
11469         * doc/glibc-functions/canonicalize_file_name.texi
11470         (canonicalize_file_name): Likewise.
11471         * doc/posix-functions/realpath.texi (realpath): Likewise.
11472         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
11473
11474         test-canonicalize: consolidate into single C program
11475         * tests/test-canonicalize.sh: Delete; move setup into...
11476         * tests/test-canonicalize.c (main): ...the program, making it
11477         easier to run in debugger.  Add some tests.
11478         * modules/canonicalize-tests (Files): Remove unused file.
11479         (Depends-on): Add progname.
11480         (configure.ac, Makefile.am): Simplify.
11481
11482         test-canonicalize-lgpl: consolidate into single C program
11483         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
11484         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
11485         easier to run in debugger.  Add some tests.
11486         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
11487         (configure.ac, Makefile.am): Simplify.
11488
11489         canonicalize: avoid resolvepath
11490         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
11491         unnecessary checks.
11492         * lib/canonicalize.c (includes): Simplify.
11493         (canonicalize_file_name): Drop resolvepath implementation.
11494         * modules/canonicalize (Depends-on): Drop filenamecat.
11495
11496         canonicalize: don't lose errno
11497         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
11498         over calls to free.
11499
11500         canonicalize: simplify errno handling
11501         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
11502         assignment.
11503
11504         canonicalize, canonicalize-lgpl: update module dependencies
11505         * modules/canonicalize (Depends-on): Add extensions, lstat,
11506         pathmax, stdlib.
11507         (Files): Drop pathmax.h.
11508         (configure.ac): Adjust macro name.
11509         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
11510         lstat, stdlib, sys_stat.
11511         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
11512         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
11513         extensions.
11514         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
11515         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
11516         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
11517         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
11518         declaration, if available.
11519         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
11520         we can rely on the readlink module.
11521         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
11522         (includes): Use <unistd.h> unconditionally.
11523
11524 2009-09-17  Eric Blake  <ebb9@byu.net>
11525
11526         maint: make Include sections of modules consistent
11527         * modules/alloca: Use only header name; no need to list #include.
11528         * modules/alloca-opt: Likewise.
11529         * modules/arpa_inet: Likewise.
11530         * modules/canon-host: Likewise.
11531         * modules/configmake: Likewise.
11532         * modules/dirent: Likewise.
11533         * modules/eealloc: Likewise.
11534         * modules/environ: Likewise.
11535         * modules/fchdir: Likewise.
11536         * modules/fcntl: Likewise.
11537         * modules/fcntl-h: Likewise.
11538         * modules/gethrxtime: Likewise.
11539         * modules/gettime: Likewise.
11540         * modules/ignore-value: Likewise.
11541         * modules/inet_ntop: Likewise.
11542         * modules/inet_pton: Likewise.
11543         * modules/inttypes: Likewise.
11544         * modules/isnand-nolibm: Likewise.
11545         * modules/isnanf-nolibm: Likewise.
11546         * modules/mbchar: Likewise.
11547         * modules/mbfile: Likewise.
11548         * modules/mbiter: Likewise.
11549         * modules/mbuiter: Likewise.
11550         * modules/netdb: Likewise.
11551         * modules/netinet_in: Likewise.
11552         * modules/nproc: Likewise.
11553         * modules/pagealign_alloc: Likewise.
11554         * modules/poll: Likewise.
11555         * modules/printf-frexp: Likewise.
11556         * modules/pthread: Likewise.
11557         * modules/putenv: Likewise.
11558         * modules/random_r: Likewise.
11559         * modules/relocatable-prog: Likewise.
11560         * modules/search: Likewise.
11561         * modules/select: Likewise.
11562         * modules/selinux-h: Likewise.
11563         * modules/settime: Likewise.
11564         * modules/signal: Likewise.
11565         * modules/size_max: Likewise.
11566         * modules/socklen: Likewise.
11567         * modules/ssize_t: Likewise.
11568         * modules/stdarg: Likewise.
11569         * modules/stdbool: Likewise.
11570         * modules/stddef: Likewise.
11571         * modules/stdint: Likewise.
11572         * modules/stdio: Likewise.
11573         * modules/stdlib: Likewise.
11574         * modules/string: Likewise.
11575         * modules/strings: Likewise.
11576         * modules/sys_file: Likewise.
11577         * modules/sys_ioctl: Likewise.
11578         * modules/sys_select: Likewise.
11579         * modules/sys_socket: Likewise.
11580         * modules/sys_stat: Likewise.
11581         * modules/sys_time: Likewise.
11582         * modules/sys_times: Likewise.
11583         * modules/sys_utsname: Likewise.
11584         * modules/sys_wait: Likewise.
11585         * modules/sysexits: Likewise.
11586         * modules/time: Likewise.
11587         * modules/times: Likewise.
11588         * modules/tmpfile: Likewise.
11589         * modules/trim: Likewise.
11590         * modules/unistd: Likewise.
11591         * modules/wchar: Likewise.
11592         * modules/wctype: Likewise.
11593
11594 2009-09-17  Bruno Haible  <bruno@clisp.org>
11595
11596         Make getdate.y compile on QNX and NetBSD 5 / i386.
11597         * m4/getdate.m4 (gl_GETDATE): Conditionally define
11598         TIME_T_FITS_IN_LONG_INT.
11599         * lib/getdate.y (long_time_t): New type.
11600         (relative_time): Change type of 'seconds' field to long_time_t.
11601         (get_date): Update types of local variables. Check against overflow
11602         during conversion from long_time_t to time_t.
11603         Reported by Matt Kraai <kraai@ftbfs.org>
11604         and Hasso Tepper <hasso@netbsd.org>.
11605
11606 2009-09-17  Bruno Haible  <bruno@clisp.org>
11607
11608         * modules/COPYING: Update copyright years.
11609         * modules/README: Likeiwse.
11610         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
11611         Reported by Ian Beckwith <ianb@erislabs.net>.
11612
11613 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
11614
11615         * users.txt: Update references for gnuit package.
11616
11617 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
11618
11619         * m4/getdelim.m4: Fix typo in copyright line.
11620
11621 2009-09-17  Bruno Haible  <bruno@clisp.org>
11622
11623         * lib/atoll.c: Use the standard header with GPL copyright.
11624         * lib/argz.in.h: Likewise.
11625         * lib/glob.c: Likewise.
11626         * lib/glob-libc.h: Likewise.
11627         * lib/random_r.c: Likewise.
11628         * lib/siglist.h: Likewise.
11629         * lib/strsignal.c: Likewise.
11630         Reported by Ian Beckwith <ianb@erislabs.net>.
11631
11632 2009-09-17  Eric Blake  <ebb9@byu.net>
11633
11634         rmdir: ensure correct dependency order
11635         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
11636
11637 2009-09-17  Bruno Haible  <bruno@clisp.org>
11638
11639         Disable assertion that fails on NetBSD 5 / i386.
11640         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
11641         Reported by Sam Steingold <sds@gnu.org>
11642         and Hasso Tepper <hasso@netbsd.org>.
11643
11644 2009-09-16  Eric Blake  <ebb9@byu.net>
11645
11646         unlinkdir: port to mingw
11647         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
11648         on which no one can unlink a directory.
11649
11650         stdlib: sort witness names
11651         * modules/stdlib (Makefile.am): Sort replacements.
11652         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
11653         * lib/stdlib.in.h: Likewise.
11654
11655         parse-duration-tests: avoid link failure
11656         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
11657         LIBINTL.
11658         Reported by Tom G. Christensen.
11659
11660         openat-tests: ensure unlinkat behaves like rmdir
11661         * tests/test-rmdir.c (main): Factor guts...
11662         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
11663         * modules/rmdir-tests (Files): Ship new file.
11664         * modules/openat-tests: New test.
11665         * tests/test-unlinkat.c: Likewise.
11666
11667         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
11668         * modules/rmdir-errno (Status, Notice): Now obsolete.
11669
11670         rmdir: work around cygwin 1.5.x and mingw bugs
11671         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
11672         * lib/rmdir.c (rmdir): Work around it.
11673         * modules/rmdir (Status, Notice): No longer obsolete.
11674         (Files): Add dos.m4.
11675         (Depends-on): Add unistd.
11676         (configure.ac): Set witnesses.
11677         (License): Relax to LGPLv2+.
11678         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
11679         * modules/unistd (Makefile.am): Substitute witnesses.
11680         * lib/unistd.in.h (rmdir): Declare replacement.
11681         * doc/posix-functions/rmdir.texi (rmdir): Document this.
11682         * modules/rmdir-tests: New tests.
11683         * tests/test-rmdir.c: Likewise.
11684
11685 2009-09-15  Eric Blake  <ebb9@byu.net>
11686
11687         fchdir: improve use of replacement functions
11688         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
11689         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
11690         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
11691         REPLACE_CLOSEDIR.
11692         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
11693         * modules/sys_stat (Makefile.am): Substitute correct witness.
11694         * modules/dirent (Makefile.am): Likewise.
11695         * modules/unistd (Makefile.am): Likewise.
11696         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
11697         * lib/unistd.in.h (dup): Likewise.
11698         * lib/sys_stat.in.h (fstat): Likewise.
11699
11700         maint: ignore gnulib-tool temp files
11701         * .gitignore: Ignore files created during gnulib-tool --test.
11702
11703 2009-09-13  Jim Meyering  <meyering@redhat.com>
11704
11705         posixtm: don't reject a time that specify "60" as the number of seconds
11706         * lib/posixtm.c (posixtime): The code to reject invalid dates
11707         would also reject a time specified with the .60 suffix.
11708         But POSIX allows that, in order to accommodate leap seconds.
11709         So don't reject it.
11710         (main): Adjust tests accordingly.
11711         * modules/posixtm (Depends-on): Add stpcpy.
11712
11713 2009-09-11  Jim Meyering  <meyering@redhat.com>
11714
11715         announce-gen: include [$release_type] in emitted Subject:
11716         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
11717         e.g., [stable] in the emitted Subject: line.
11718
11719 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11720
11721         Remove obsolete macros from several modules.
11722         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
11723         obsolete Autoconf macros with their modern counterparts.
11724         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
11725         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
11726         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
11727         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
11728         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
11729         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
11730         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
11731         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
11732         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
11733         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
11734         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
11735         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
11736         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
11737         * m4/sockets.m4 (gl_SOCKETS): Likewise.
11738         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
11739         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
11740         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
11741         * m4/time_r.m4 (gl_TIME_R): Likewise.
11742         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
11743         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
11744         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
11745
11746         Fix copyright header in build-aux scripts.
11747         * build-aux/git-version-gen: Fix copyright header to match GPLv3
11748         recommendation.
11749         * build-aux/ncftpput-ftp: Likewise.
11750         * build-aux/update-copyright: Likewise.
11751
11752 2009-09-09  Eric Blake  <ebb9@byu.net>
11753
11754         test-link: allow Linux choice of errno
11755         * tests/test-link.c (main): Relax test for alternate error.
11756
11757         strndup: fix improper m4 caching
11758         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
11759         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
11760         (gl_PREREQ_STRNDUP): Delete.
11761         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
11762         * modules/string (Makefile.am): Substitute it.
11763         * lib/string.in.h (strndup): Modernize prototype.
11764
11765         getcwd: port to mingw
11766         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
11767         different from the POSIX assumptions made throughout the getcwd
11768         module; fortunately, the mingw getcwd does not need replacement.
11769         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
11770         * modules/getcwd-tests: New test.
11771         * tests/test-getcwd.c: Likewise.
11772
11773         link: fix platform bugs
11774         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
11775         * lib/link.c (link): Work around them.  Fix related mingw bug.
11776         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
11777         * modules/unistd (Makefile.am): Substitute it.
11778         * lib/unistd.in.h (link): Declare replacement.
11779         * doc/posix-functions/link.texi (link): Document this.
11780         * modules/link (Depends-on): Add strdup-posix, sys_stat.
11781
11782         test-link: consolidate into single C program, test more cases
11783         * tests/test-link.sh: Delete.
11784         * tests/test-link.c: Test more error conditions.  Exposes bugs on
11785         at least Cygwin and Solaris.
11786         * modules/link-tests (Files): Remove unused file.
11787         (Depends-on): Add errno, sys_stat.
11788         (Makefile.am): Simplify.
11789
11790 2009-09-08  Bruno Haible  <bruno@clisp.org>
11791
11792         Work around towlower, towupper bug on mingw.
11793         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
11794         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
11795         * doc/posix-functions/towlower.texi: Mention the mingw bug.
11796         * doc/posix-functions/towupper.texi: Likewise.
11797         Reported by Eric Blake.
11798
11799 2009-09-08  Jim Meyering  <meyering@redhat.com>
11800
11801         build: don't try to run autoheader if we don't use it
11802         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
11803         is not used in configure.ac.
11804
11805 2009-09-08  Eric Blake  <ebb9@byu.net>
11806
11807         euidaccess: fix compilation error
11808         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
11809
11810         rawmemchr: relax license
11811         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
11812         okay.
11813         Reported by Jim Meyering.
11814
11815         mkfifoat: new module
11816         * modules/mkfifoat: New file.
11817         * lib/mkfifoat.c: Likewise.
11818         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
11819         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
11820         * modules/sys_stat (Makefile.am): Use them.
11821         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
11822         * MODULES.html.sh (File system functions): Mention module.
11823         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
11824         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
11825         * modules/mkfifoat-tests: New test.
11826         * tests/test-mkfifoat.c: Likewise.
11827
11828         strchrnul: relax license
11829         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
11830         okay.
11831         Reported by Jim Meyering.
11832
11833 2009-09-08  Eric Blake  <ebb9@byu.net>
11834
11835         fstatat: fix compilation on Solaris
11836         * lib/fstatat.c (includes): Add fcntl.h.
11837         Reported by Pádraig Brady.
11838
11839 2009-09-07  Eric Blake  <ebb9@byu.net>
11840
11841         rename: modernize replacement
11842         * modules/rename (Depends-on): Add stdio.
11843         (configure.ac): Declare witness.
11844         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
11845         stdio take care of replacement.
11846         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
11847         * modules/stdio (Makefile.am): Substitute them.
11848         * lib/stdio.in.h (rename): Declare replacement.
11849         * lib/rename.c (includes): Allow cross-compilation to non-windows
11850         machines.
11851         * doc/posix-functions/rename.texi (rename): Improve
11852         documentation.
11853
11854         stdio: sort witness names
11855         * modules/stdio (Makefile.am): Sort replacements.
11856         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
11857         * lib/stdio.in.h: Likewise.
11858
11859         getcwd: minor cleanups
11860         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
11861         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
11862
11863         openat: provide more convenience names
11864         * modules/faccessat (configure.ac): Add C witness.
11865         * lib/unistd.in.h (readlinkat): Fix typo.
11866         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
11867         convenience wrappers.
11868         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
11869         wrappers in syntax checks.
11870
11871 2009-09-06  Eric Blake  <ebb9@byu.net>
11872
11873         doc: fix comments in recent patches
11874         * lib/faccessat.c: Mention correct function.
11875         * lib/fchmodat.c: Likewise.
11876         * lib/fchownat.c: Likewise.
11877         * lib/symlinkat.c: Likewise.
11878         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
11879         constants.
11880
11881         faccessat, symlinkat: continue cleanup of previous patch
11882         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
11883         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
11884         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
11885         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
11886         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
11887         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
11888         set.
11889
11890 2009-09-06  Bruno Haible  <bruno@clisp.org>
11891
11892         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
11893         (fstatat): Declare if GNULIB_FSTATAT is set.
11894         (mkdirat): Declare if GNULIB_MKDIRAT is set.
11895         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
11896         (unlinkat): Declare if GNULIB_UNLINKAT is set.
11897         * modules/fcntl-h (Files): Remove m4/openat.m4.
11898         * modules/sys_stat (Files): Remove m4/openat.m4.
11899         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
11900         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
11901         * modules/unistd (Files): Remove m4/openat.m4.
11902         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
11903         GNULIB_OPENAT.
11904         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
11905         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
11906         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
11907         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
11908         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
11909         gl_OPENAT_DEFAULTS.
11910         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
11911         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
11912         Don't require gl_OPENAT_DEFAULTS.
11913         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
11914         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
11915         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
11916         (gl_OPENAT_DEFAULTS): Remove macro.
11917
11918 2009-09-06  Bruno Haible  <bruno@clisp.org>
11919
11920         * modules/openat (configure.ac): Remove unneeded witness.
11921
11922 2009-09-06  Bruno Haible  <bruno@clisp.org>
11923
11924         Set errno to ENOSYS when a function is entirely unsupported.
11925         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
11926         EOPNOTSUPP.
11927         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
11928         * modules/chown (Depends-on): Remove errno.
11929
11930 2009-09-06  Bruno Haible  <bruno@clisp.org>
11931
11932         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
11933
11934 2009-09-06  Bruno Haible  <bruno@clisp.org>
11935
11936         * lib/sys_stat.in.h: Fix preprocessor command indentation.
11937
11938 2009-09-06  Ben Pfaff  <blp@gnu.org>
11939             Bruno Haible  <bruno@clisp.org>
11940
11941         Work around a glibc bug in strtok_r.
11942         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
11943         Undefine if UNDEFINE_STRTOK_R is set.
11944         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
11945         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
11946         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
11947         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
11948         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
11949         UNDEFINE_STRTOK_R.
11950         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
11951
11952 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
11953
11954         exclude: minor fix
11955         * lib/exclude.c: Include wctype.h
11956
11957 2009-09-06  Akim Demaille  <demaille@gostai.com>
11958
11959         bootstrap: improve error message
11960         * build-aux/bootstrap (find_tool): Upon failure, report the list
11961         of candidates.
11962         Honor the initial value of the envvar.
11963
11964 2009-09-05  Eric Blake  <ebb9@byu.net>
11965
11966         symlinkat: new module
11967         * modules/symlinkat: New file.
11968         * lib/symlinkat.c: Likewise.
11969         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
11970         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
11971         * modules/unistd (Makefile.am): Use them.
11972         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
11973         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
11974         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
11975         * MODULES.html.sh (File system functions): Mention module.
11976         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
11977         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
11978         * modules/symlinkat-tests: New test.
11979         * tests/test-symlinkat.c: Likewise.
11980
11981         test-openat-safer: add more checks
11982         * tests/test-openat-safer.c (main): Check more code paths.
11983
11984 2009-09-05  Jim Meyering  <meyering@redhat.com>
11985
11986         syntax-check: detect unnecessary inclusion of openat.h
11987         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
11988
11989 2009-09-05  Bruno Haible  <bruno@clisp.org>
11990
11991         Support towlower, towupper.
11992         * doc/posix-functions/towlower.texi: Mention module wctype.
11993         * doc/posix-functions/towupper.texi: Likewise.
11994         * lib/wctype.in.h (towlower, towupper): New functions.
11995         * tests/test-wctype.c: Include stdio.h, stdlib.h.
11996         (ASSERT): New macro.
11997         (e): New variable.
11998         (main): Test also towlower, towupper. Test WEOF argument.
11999         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
12000
12001 2009-09-05  Bruno Haible  <bruno@clisp.org>
12002
12003         Fix conversion behaviour when the input is invalid.
12004         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
12005         mark occurring in first pass of indirect conversion.
12006         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
12007         input.
12008         Found by clang's static analyzer.
12009
12010 2009-09-05  Bruno Haible  <bruno@clisp.org>
12011
12012         * tests/test-striconveh.c (main): Test indirect conversion on platforms
12013         where direct conversion is possible.
12014
12015 2009-09-04  Eric Blake  <ebb9@byu.net>
12016
12017         openat: fail with ENOENT on empty name
12018         * lib/openat-proc.c (openat_proc_name): Special-case the empty
12019         buffer.
12020
12021         link-follow: fix logic bug in prior patch
12022         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
12023         reversed sense of yes and no in prior patch.  Avoid confusing
12024         compilation failure with desired semantics.
12025
12026         link-follow: accomodate mingw and cross-compilation
12027         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
12028         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
12029         cross-compilation results to -1, to make linkat easier to
12030         implement when cross-compiling.  Trivially support mingw.
12031         * modules/link-follow (configure.ac): Call new name.
12032         * NEWS: Mention this.
12033
12034 2009-09-03  Eric Blake  <ebb9@byu.net>
12035
12036         faccessat: compile replacement
12037         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
12038         needed.
12039
12040         fts: fix compilation error
12041         * lib/fts.c (includes): Re-add "openat.h", for
12042         openat_needs_fchdir.
12043
12044         faccessat: new module
12045         * modules/faccessat: New file.
12046         * lib/faccessat.c: Likewise.
12047         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
12048         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
12049         * modules/unistd (Makefile.am): Use it.
12050         * lib/unistd.in.h (faccessat): Declare it.
12051         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
12052         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
12053         * MODULES.html.sh (File system functions): Mention it.
12054         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
12055         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
12056
12057         euidaccess: prefer POSIX over non-standard implementation
12058         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
12059         * lib/euidaccess.c (euidaccess): Use it if available.
12060
12061         openat: make template easier to use
12062         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
12063         AT_FUNC_F2 to be undefined.
12064         (VALIDATE_FLAG): New macro; use it to reject bad flags.
12065         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
12066         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
12067         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
12068         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
12069         Likewise.
12070         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
12071         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
12072         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
12073         Likewise.
12074
12075         openat: declare in POSIX headers
12076         * NEWS: Mention this.
12077         * modules/openat (configure.ac): Declare witnesses.
12078         (Depends-on): Add fcntl-h, sys_stat, unistd.
12079         (Include): Mention correct headers.
12080         * modules/fcntl-h (Depends-on): Add link-warning.
12081         (Files): Add openat.m4.
12082         (Makefile.am): Substitute witnesses.
12083         * modules/sys_stat (Files, Makefile.am): Likewise.
12084         * modules/unistd (Files, Makefile.am): Likewise.
12085         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
12086         (gl_OPENAT_DEFAULTS): New macro.
12087         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
12088         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
12089         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
12090         (SYS_STAT_H): Remove unused variable.
12091         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
12092         * lib/fcntl--.h (includes): Remove unneeded header.
12093         * lib/openat-safer.c (includes): Likewise.
12094         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
12095         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
12096         appropriate headers.
12097         (__OPENAT_PREFIX): Delete.
12098         * lib/fcntl.in.h (openat): Provide declaration.
12099         (AT_FDCWD): Fix Solaris bug.
12100         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
12101         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
12102         * lib/fchmodat.c (includes):  Adjust to find declaration.
12103         * lib/fchownat.c (includes): Likewise.
12104         * lib/mkdirat.c (includes): Likewise.
12105         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
12106         still visible.
12107
12108 2009-09-02  Eric Blake  <ebb9@byu.net>
12109
12110         errno: use consistently
12111         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
12112         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
12113         * lib/canonicalize.c (ELOOP): Likewise.
12114         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
12115         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
12116         * lib/lchown.c (EOPNOTSUPP): Likewise.
12117         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
12118         * lib/savewd.c (ESTALE): Likewise.
12119         * lib/settime.c (ENOSYS): Likewise.
12120         * lib/utimens.c (ENOSYS): Likewise.
12121         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
12122         * lib/chdir-safer.c (ELOOP): Likewise.
12123         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
12124         * modules/c-stack (Depends-on): Add errno.
12125         * modules/canonicalize (Depends-on): Likewise.
12126         * modules/chdir-safer (Depends-on): Likewise.
12127         * modules/fdopendir (Depends-on): Likewise.
12128         * modules/inet_ntop (Depends-on): Likewise.
12129         * modules/inet_pton (Depends-on): Likewise.
12130         * modules/lchown (Depends-on): Likewise.
12131         * modules/openat (Depends-on): Likewise.
12132         * modules/savewd (Depends-on): Likewise.
12133         * modules/settime (Depends-on): Likewise.
12134         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
12135
12136         fts: avoid leaking fds
12137         * modules/fts (Depends-on): Add cloexec.
12138         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
12139         flag.
12140
12141         fts: make directory fds more robust
12142         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
12143         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
12144
12145         backupfile, chdir-long, fts, savedir: make safer
12146         * lib/backupfile.c (includes): Use "dirent--.h", since
12147         numbered_backup can write to stderr during readdir.
12148         * lib/savedir.c (includes): Likewise.
12149         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
12150         emulation can write to stderr on failure.
12151         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
12152         * lib/getcwd.c: Document why opendir_safer is unused.
12153         * lib/glob.c: Likewise.
12154         * lib/scandir.c: Likewise.
12155         * lib/openat-proc.c: Likewise, for open_safer.
12156         * modules/backupfile (Depends-on): Add dirent-safer.
12157         * modules/savedir (Depends-on): Likewise.
12158         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
12159         * modules/chdir-long (Depends-on): Add openat-safer.
12160
12161         openat-safer: new module
12162         * modules/openat-safer: New file.
12163         * lib/openat-safer.c: Likewise.
12164         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
12165         * lib/fcntl-safer.h (openat_safer): Declare.
12166         * lib/fcntl--.h (openat): Override.
12167         * MODULES.html.sh (File descriptor based I/O): Mention it.
12168         * lib/openat.h: Add double-inclusion guards.
12169         * lib/openat.c (includes): Only include "fcntl-safer.h", not
12170         "fcntl--.h", so we can implement openat.
12171         * modules/openat-safer-tests: New test.
12172         * tests/test-openat-safer.c: New file.
12173
12174         dirent-safer: new module
12175         * modules/dirent-safer: New file.
12176         * lib/dirent--.h: Likewise.
12177         * lib/dirent-safer.h: Likewise.
12178         * lib/opendir-safer.c: Likewise.
12179         * m4/dirent-safer.m4: Likewise.
12180         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
12181         * modules/dirent-safer-tests: New test.
12182         * tests/test-dirent-safer.c: New file.
12183         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
12184
12185         fdopendir: optimize on mingw
12186         * lib/unistd.in.h (_gl_directory_name): New prototype.
12187         * lib/fchdir.c (_gl_directory_name): Implement it.
12188         (fchdir): Use it to simplify implementation.
12189         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
12190         fchdir, when available, to avoid calling [f]chdir().
12191
12192         fdopendir: split into its own module
12193         * lib/openat.c (fdopendir): Move...
12194         * lib/fdopendir.c: ...into new file.
12195         * modules/fdopendir: New module.
12196         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
12197         * modules/openat (Depends-on): Add fdopendir.
12198         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
12199         fdopendir here.
12200         * modules/savedir (Depends-on): Only need fdopendir, not full
12201         openat.
12202         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
12203         * lib/openat.h (fdopendir): Drop prototype.
12204         * lib/dirent.in.h (fdopendir): Provide prototype.
12205         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
12206         * modules/dirent (Makefile.am): Substitute them.
12207         * MODULES.html.sh (File system functions): Mention it.
12208         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
12209         * modules/fdopendir-tests: New file.
12210         * tests/test-fdopendir.c: Likewise.
12211
12212         fchdir: use more consistent macro convention
12213         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
12214         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
12215         REPLACE_FCHDIR, rather than relying on config.h macros.
12216         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
12217         inside a single make-time REPLACE_FCHDIR block, rather than using
12218         the config.h FCHDIR_REPLACEMENT.
12219         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
12220         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
12221         Manage fstat replacement.
12222         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
12223         REPLACE_FCHDIR.
12224         * modules/sys_stat (Files): Add m4/unistd_h.m4.
12225         (Makefile.am): Substitute REPLACE_FCHDIR.
12226         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
12227         FCHDIR_REPLACEMENT.
12228         * lib/dup-safer.c (dup_safer): Likewise.
12229         * lib/dup2.c (rpl_dup2): Likewise.
12230         * lib/dup3.c (rpl_dup3): Likewise.
12231         * lib/open.c (rpl_open): Likewise.
12232
12233         fchdir: simplify error handling, and support dup3
12234         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
12235         stdbool, malloc-posix, realloc-posix.
12236         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
12237         (ensure_dirs_slot): Return false on allocation failure.
12238         (rpl_dup2): Delete.
12239         (_gl_register_dup): New function.
12240         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
12241         (_gl_register_fd): Close fd on allocation failure.
12242         * lib/fcntl.in.h (_gl_register_fd): Update signature.
12243         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
12244         prototype.
12245         (rpl_dup2_fchdir): Delete prototype.
12246         * lib/open.c (open): Update caller.
12247         * lib/dup2.c (dup2): Track fchdir metadata.
12248         * lib/dup3.c (dup3): Likewise.
12249         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
12250         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
12251
12252 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12253
12254         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
12255         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
12256         don't pass arguments to AC_OUTPUT.
12257
12258 2009-09-02  Bruno Haible  <bruno@clisp.org>
12259
12260         * modules/mkdtemp (License): Relicense under LGPLv2+.
12261         Reported by Paolo Bonzini.
12262
12263 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12264
12265         Replace uses of obsolete autoconf macros in Jim's modules.
12266         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
12267         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
12268         can evoke a warning from autoconf when run with -Wobsolete
12269         enabled.  They were declared obsolete for good reasons (see
12270         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
12271         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
12272         should not continue using the deprecated macros.
12273         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
12274         obsolete Autoconf macros with modern counterparts.
12275         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
12276         * m4/dos.m4 (gl_AC_DOS): Likewise.
12277         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
12278         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
12279         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
12280         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
12281         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
12282         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
12283         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
12284         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
12285         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
12286         Likewise.
12287         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
12288         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
12289         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
12290         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
12291         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
12292         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
12293
12294 2009-09-01  Eric Blake  <ebb9@byu.net>
12295
12296         fchdir: fix off-by-one bug in previous patch
12297         * lib/fchdir.c (rpl_fstat): Use correct bounds.
12298         (_gl_unregister_fd): Delete useless if.
12299
12300 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
12301
12302         maint.mk: sort the list of syntax-check rules
12303         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
12304         easier to get a sense of progress when the rules are run sequentially
12305         and take a long time.
12306
12307 2009-09-01  Simon Josefsson  <simon@josefsson.org>
12308
12309         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
12310         * modules/netinet_in: Likewise.
12311         * modules/sys_file: Likewise.
12312         * modules/sys_ioctl: Likewise.
12313         * modules/sys_select: Likewise.
12314         * modules/sys_socket: Likewise.
12315         * modules/sys_stat: Likewise.
12316         * modules/sys_time: Likewise.
12317         * modules/sys_times: Likewise.
12318         * modules/sys_utsname: Likewise.
12319         * modules/sys_wait: Likewise.
12320
12321 2009-09-01  Jim Meyering  <meyering@redhat.com>
12322
12323         fts: help ensure that return values are not ignored
12324         * lib/fts_.h (__GNUC_PREREQ): Define.
12325         (__attribute_warn_unused_result__): Define.
12326         (fts_children, fts_close, fts_open, fts_read): Declare with
12327         __attribute_warn_unused_result__.
12328
12329         fts: fts_close now fails also when closing a dir file descriptor fails
12330         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
12331         and propagate to caller, along with errno.
12332
12333         announce-gen: correct formatting in --help output
12334         * build-aux/announce-gen (usage): Move the one-line description in
12335         --help output "up", to where it belongs, just after Usage:.
12336
12337 2009-08-31  Eric Blake  <ebb9@byu.net>
12338
12339         fchdir: port to mingw
12340         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
12341         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
12342         opened, then use a substitute.
12343         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
12344         replacement.
12345         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
12346         (_gl_register_fd): No need to check stat if open already filters
12347         all directories.
12348         (fchdir): Fix error condition to match POSIX.
12349         * modules/fchdir (Depends-on): Add sys_stat.
12350         * doc/posix-functions/open.texi (open): Document the limitation.
12351         * modules/fchdir-tests: New file.
12352         * tests/test-fchdir.c: Likewise.
12353
12354         canonicalize: allow cross-testing from cygwin to mingw
12355         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
12356         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
12357         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
12358         Likewise.
12359         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
12360         target does not support symlinks.
12361         * tests/test-canonicalize-lgpl.sh: Likewise.
12362
12363         chown: avoid compilation warning on mingw
12364         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
12365         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
12366         mingw.
12367         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
12368         * modules/chown (Depends-on): Add errno.
12369
12370 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
12371
12372         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
12373         command.
12374
12375 2009-08-31  Jim Meyering  <meyering@redhat.com>
12376
12377         canonicalize: remove useless initialization
12378         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
12379         initialization of local, "end".
12380
12381 2009-08-30  Bruno Haible  <bruno@clisp.org>
12382
12383         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
12384         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
12385         ENOSYS.
12386
12387 2009-08-30  Bruno Haible  <bruno@clisp.org>
12388
12389         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
12390         /usr/xpg4/bin/tr when it exists.
12391         * tests/test-pipe-filter-gi1.sh: Likewise.
12392
12393 2009-08-30  Bruno Haible  <bruno@clisp.org>
12394
12395         Work around deficient /usr/bin/id program on Solaris.
12396         * tests/test-file-has-acl.sh (ID): New variable.
12397         * tests/test-set-mode-acl.sh (ID): Likewise.
12398         * tests/test-copy-acl.sh (ID): Likewise.
12399         * tests/test-copy-file.sh (ID): Likewise.
12400
12401 2009-08-30  Bruno Haible  <bruno@clisp.org>
12402
12403         New module 'xstriconveh'.
12404         * lib/xstriconveh.h: New file.
12405         * lib/xstriconveh.c: New file.
12406         * modules/xstriconveh: New file.
12407
12408 2009-08-30  Bruno Haible  <bruno@clisp.org>
12409
12410         Make it easier to use mem_cd_iconveh.
12411         * lib/striconveh.h (iconveh_t): New type.
12412         (iconveh_open, iconveh_close): New declarations.
12413         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
12414         with a single 'const iconveh_t *' argument.
12415         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
12416         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
12417         with a single 'const iconveh_t *' argument.
12418         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
12419         * tests/test-striconveh.c (main): Update.
12420         * NEWS: Mention the change.
12421
12422 2009-08-30  Bruno Haible  <bruno@clisp.org>
12423
12424         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
12425         problem.
12426
12427 2009-08-30  Bruno Haible  <bruno@clisp.org>
12428
12429         Work around iconv_open problem on Solaris.
12430         * lib/iconv_open-solaris.gperf: New file.
12431         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
12432         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
12433         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
12434         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
12435         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
12436         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
12437
12438 2009-08-29  Jim Meyering  <meyering@redhat.com>
12439
12440         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
12441         * top/maint.mk (cvs-check): Remove target; it was just an alias
12442         to the better-named vc-diff-check.
12443         (maintainer-distcheck): Remove rule.  It was used only from
12444         the (alpha/beta/major) target, and all of its commands but one
12445         were coreutils-specific.
12446         (vc-dist): Remove rule.
12447         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
12448         Run vc-diff-check, not vc-dist.
12449         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
12450
12451 2009-08-27  Bruno Haible  <bruno@clisp.org>
12452
12453         * tests/test-bitrotate.c (main): Remove test that uses a shift count
12454         of 0.
12455
12456 2009-08-27  Bruno Haible  <bruno@clisp.org>
12457
12458         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
12459         compilers.
12460         * doc/func.texi: Document the SunPRO C bug.
12461
12462 2009-08-27  Bruno Haible  <bruno@clisp.org>
12463
12464         Fix link error on Solaris.
12465         * tests/test-parse-duration.c (xstrdup): Remove function.
12466
12467 2009-08-26  Pádraig Brady  <P@draigbrady.com>
12468
12469         ignore-value: handle pointer types, too
12470         * lib/ignore-value.h (__attribute__): Remove definition.
12471         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
12472         of a more concise and more-often effective "(void) i" statement.
12473         (ignore_ptr): New function to suppress warnings from functions that
12474         return pointers, and to make it explicit that one function doesn't
12475         handle all cases.
12476
12477 2009-08-25  Bruno Haible  <bruno@clisp.org>
12478
12479         dup2: work around a Linux bug.
12480         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
12481         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
12482         * doc/posix-functions/dup2.texi: Mention the Linux bug.
12483         Reported by Simon Josefsson.
12484
12485 2009-08-25  Jim Meyering  <meyering@redhat.com>
12486
12487         libguestfs uses gnulib
12488         * users.txt: Add libguestfs.
12489
12490 2009-08-24  Eric Blake  <ebb9@byu.net>
12491
12492         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
12493         * lib/pipe2.c (includes): Add binary-io.h.
12494         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
12495
12496 2009-08-24  Bruno Haible  <bruno@clisp.org>
12497
12498         Tolerate declared but missing accept4 syscall.
12499         * lib/accept4.c (accept4): Invoke original accept4 function first, if
12500         available.
12501         * lib/sys_socket.in.h (accept4): If the function is already present,
12502         override it.
12503         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
12504         * modules/accept4 (Makefile.am): Compile accept4.c always.
12505         Reported by Paolo Bonzini and Eric Blake.
12506
12507 2009-08-23  Bruno Haible  <bruno@clisp.org>
12508
12509         New module 'accept4'.
12510         * lib/sys_socket.in.h (accept4): New declaration.
12511         * lib/accept4.c: New file.
12512         * m4/accept4.m4: New file.
12513         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
12514         GNULIB_ACCEPT4, HAVE_ACCEPT4.
12515         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
12516         HAVE_ACCEPT4.
12517         * modules/accept4: New file.
12518         * doc/glibc-functions/accept4.texi: Mention the new module.
12519
12520 2009-08-24  Jim Meyering  <meyering@redhat.com>
12521
12522         progname: also set global program_invocation_name, when possible
12523         Before this change, a libtool-enabled program that calls glibc's
12524         error function would report the program name as
12525         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
12526         * modules/progname (configure.ac): Check for a declaration of
12527         program_invocation_name.
12528         * lib/progname.c:  Include <errno.h>.
12529         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
12530         Set program_invocation_name.
12531
12532 2009-08-23  Bruno Haible  <bruno@clisp.org>
12533
12534         * lib/dup3.c: Include <string.h>.
12535
12536 2009-08-23  Bruno Haible  <bruno@clisp.org>
12537
12538         * lib/dup3.c (dup3): Test only once whether the system actually exists.
12539         * lib/pipe2.c (pipe2): Likewise.
12540         Suggested by Eric Blake.
12541
12542 2009-08-23  Bruno Haible  <bruno@clisp.org>
12543
12544         Tolerate declared but missing dup3 syscall.
12545         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
12546         * lib/unistd.in.h (dup3): If the function is already present,
12547         override it.
12548         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
12549         * modules/dup3 (Makefile.am): Compile dup3.c always.
12550         Reported by Paolo Bonzini.
12551
12552 2009-08-23  Bruno Haible  <bruno@clisp.org>
12553
12554         Tolerate declared but missing pipe2 syscall.
12555         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
12556         available.
12557         * lib/unistd.in.h (pipe2): If the function is already present,
12558         override it.
12559         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
12560         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
12561         Reported by Paolo Bonzini.
12562
12563 2009-08-23  Bruno Haible  <bruno@clisp.org>
12564
12565         * lib/pipe2.c (pipe2): Move #ifs inside function.
12566
12567 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
12568
12569         quotearg: document limitations of quote_these_too
12570         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
12571         those limitations are created.
12572         * lib/quotearg.h (set_char_quoting): Document that digits and
12573         letters that are special after backslash are not permitted.
12574         (quotearg_char): Cross-reference set_char_quoting documentation.
12575
12576 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
12577
12578         quotearg: implement custom_quoting_style
12579         * lib/quotearg.c: (struct quoting_options): Add left_quote and
12580         right_quote fields.
12581         (set_custom_quoting): New public function.
12582         (quotearg_buffer_restyled): Add left_quote and right_quote
12583         arguments, handle them very much like locale quoting, and update
12584         all uses.
12585         (quotearg_n_custom): New public function.
12586         (quotearg_n_custom_mem): New public function.
12587         (quotearg_custom): New public function.
12588         (quotearg_custom_mem): New public function.
12589         * lib/quotearg.h: Prototype and document new public functions.
12590         (enum quoting_style): For escape_quoting_style and
12591         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
12592         ignored even though they're otherwise like c_quoting_style.
12593         Add custom_quoting_style member and document with comparison to
12594         clocale_quoting_style.
12595         * tests/test-quotearg.c (custom_quotes): New array.
12596         (custom_results): New array.
12597         (main): Extend to test custom quoting.
12598
12599 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
12600
12601         quotearg: fix right quote escaping when it's in quote_these_too
12602         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
12603         quote, be sure to prepend only one backslash.
12604         * tests/test-quotearg.c (use_quote_double_quotes): New function.
12605         (main): Test it.
12606
12607 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
12608
12609         quotearg-tests: test escaping of embedded locale quotes
12610         * tests/test-quotearg.c (struct result_strings): Add member for
12611         new input.
12612         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
12613         (inputs): Add new input.
12614         (results_g): Add expected results.
12615         (flag_results): Likewise.
12616         (locale_results): Likewise.
12617         (compare_strings): Check those.
12618
12619 2009-08-23  Bruno Haible  <bruno@clisp.org>
12620
12621         Tests for module 'dup3'.
12622         * modules/dup3-tests: New file.
12623         * tests/test-dup3.c: New file.
12624
12625         New module 'dup3'.
12626         * lib/unistd.in.h (dup3): New declaration.
12627         * lib/dup3.c: New file.
12628         * m4/dup3.m4: New file.
12629         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
12630         HAVE_DUP3.
12631         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
12632         * modules/dup3: New file.
12633         * doc/glibc-functions/dup3.texi: Mention the new module.
12634
12635 2009-08-23  Bruno Haible  <bruno@clisp.org>
12636
12637         Tweak the dup2 test.
12638         * tests/test-dup2.c (main): Create the test file empty. Verify that an
12639         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
12640         the test file is still empty. Fix argument order of lseek.
12641
12642 2009-08-23  Bruno Haible  <bruno@clisp.org>
12643
12644         Avoid test link errors when the modules getopt-gnu, gettext are used.
12645         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
12646         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
12647
12648 2009-08-23  Bruno Haible  <bruno@clisp.org>
12649
12650         Fix getdtablesize() on mingw.
12651         * lib/getdtablesize.c (getdtablesize): Implement differently.
12652         * lib/unistd.in.h (getdtablesize): Improve comment.
12653
12654 2009-08-23  Bruno Haible  <bruno@clisp.org>
12655
12656         New module 'mkostemp'.
12657         Based on Ulrich Drepper's 2007-08-10 change in glibc.
12658         * lib/stdlib.in.h (mksotemp): New declaration.
12659         * lib/mkostemp.c: New file, from glibc with modifications.
12660         * lib/tempname.h (GT_FILE): Remove outdated comment.
12661         (gen_tempname): Add flags argument.
12662         * lib/tempname.c (__GT_BIGFILE): Remove macro.
12663         (__GT_FILE): Map to 1.
12664         (small_open, large_open): Remove macros.
12665         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
12666         * lib/mkstemp.c (mkstemp): Update.
12667         * lib/mkdtemp.c (mkdtemp): Likewise.
12668         * m4/mkostemp.m4: New file.
12669         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
12670         HAVE_MKOSTEMP.
12671         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
12672         HAVE_MKOSTEMP.
12673         * modules/mkostemp: New file, based on modules/mkstemp.
12674         * doc/glibc-functions/mkostemp.texi: Mention the new module.
12675         * NEWS: Mention the change.
12676
12677 2009-08-23  Bruno Haible  <bruno@clisp.org>
12678
12679         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
12680         Reported by Eric Blake.
12681
12682 2009-08-23  Bruno Haible  <bruno@clisp.org>
12683
12684         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
12685         Reported by Eric Blake.
12686
12687 2009-08-23  Bruno Haible  <bruno@clisp.org>
12688
12689         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
12690         * modules/pipe2 (Depends-on): Likewise.
12691
12692 2009-08-23  Eric Blake  <ebb9@byu.net>
12693
12694         fcntl-h: add O_TTY_INIT support
12695         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
12696         * tests/test-fcntl-h.c (o): Test it.
12697         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
12698
12699         fcntl-h: rename from fcntl, in preparation for fcntl(2)
12700         * modules/fcntl: Move <fcntl.h> header replacement...
12701         * modules/fcntl-h: ...to new name, so as not to collide with
12702         like-named function.
12703         * tests/test-fcntl.c: Rename...
12704         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
12705         * modules/fcntl-tests: Rename...
12706         * modules/fcntl-h-tests: ...to this.  Update test file name.
12707         * modules/chdir-long (Depends-on): Update clients.
12708         * modules/chdir-safer (Depends-on): Likewise.
12709         * modules/fcntl-safer (Depends-on): Likewise.
12710         * modules/fts (Depends-on): Likewise.
12711         * modules/mkancesdirs (Depends-on): Likewise.
12712         * modules/mkdir-p (Depends-on): Likewise.
12713         * modules/open (Depends-on): Likewise.
12714         * modules/savewd (Depends-on): Likewise.
12715         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
12716         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
12717
12718 2009-08-22  Bruno Haible  <bruno@clisp.org>
12719
12720         * modules/binary-io (License): Relicense under LGPL.
12721         * modules/pipe2 (License): Likewise.
12722
12723 2009-08-22  Bruno Haible  <bruno@clisp.org>
12724
12725         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
12726         return value.
12727         * lib/pipe-filter-gi.c (filter_init): Likewise.
12728         Reported by Eric Blake.
12729
12730 2009-08-22  Bruno Haible  <bruno@clisp.org>
12731
12732         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
12733         * modules/pipe (Depends-on): Add pipe2.
12734
12735 2009-08-22  Bruno Haible  <bruno@clisp.org>
12736
12737         Tests for module 'pipe2'.
12738         * modules/pipe2-tests: New file.
12739         * tests/test-pipe2.c: New file.
12740
12741         New module 'pipe2'.
12742         * lib/unistd.in.h (pipe2): New declaration.
12743         * lib/pipe2.c: New file.
12744         * m4/pipe2.m4: New file.
12745         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
12746         HAVE_PIPE2.
12747         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
12748         * modules/pipe2: New file.
12749         * doc/glibc-functions/pipe2.texi: Mention the new module.
12750
12751 2009-08-22  Bruno Haible  <bruno@clisp.org>
12752
12753         Reference some new glibc functions.
12754         * doc/glibc-functions/accept4.texi: New file.
12755         * doc/glibc-functions/dup3.texi: New file.
12756         * doc/glibc-functions/mkostemp.texi: New file.
12757         * doc/glibc-functions/pipe2.texi: New file.
12758         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
12759         (Glibc sys/socket.h): Refer to accept4.
12760         (Glibc unistd.h): Refer to dup3, pipe2.
12761         Reported by Eric Blake.
12762
12763 2009-08-22  Jim Meyering  <meyering@redhat.com>
12764             Bruno Haible  <bruno@clisp.org>
12765
12766         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
12767         This makes it so packages using automake-1.11's silent-rules option
12768         can print e.g., a single "GEN    configmake.h" line, rather than
12769         the 30+ statements that perform the job.  If you want to see the
12770         actual commands, you can still run "make V=1".
12771         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
12772         so that make output is abbreviated when those variables are defined
12773         appropriately.
12774         * modules/argz: Likewise.
12775         * modules/arpa_inet: Likewise.
12776         * modules/byteswap: Likewise.
12777         * modules/configmake: Likewise.
12778         * modules/dirent: Likewise.
12779         * modules/errno: Likewise.
12780         * modules/fcntl: Likewise.
12781         * modules/float: Likewise.
12782         * modules/fnmatch: Likewise.
12783         * modules/getopt-posix: Likewise.
12784         * modules/glob: Likewise.
12785         * modules/iconv_open: Likewise.
12786         * modules/inttypes: Likewise.
12787         * modules/localcharset: Likewise.
12788         * modules/locale: Likewise.
12789         * modules/math: Likewise.
12790         * modules/netdb: Likewise.
12791         * modules/netinet_in: Likewise.
12792         * modules/poll: Likewise.
12793         * modules/posix_spawnp-tests: Likewise.
12794         * modules/sched: Likewise.
12795         * modules/search: Likewise.
12796         * modules/selinux-h: Likewise.
12797         * modules/signal: Likewise.
12798         * modules/spawn: Likewise.
12799         * modules/stdarg: Likewise.
12800         * modules/stdbool: Likewise.
12801         * modules/stddef: Likewise.
12802         * modules/stdint: Likewise.
12803         * modules/stdio: Likewise.
12804         * modules/stdlib: Likewise.
12805         * modules/string: Likewise.
12806         * modules/strings: Likewise.
12807         * modules/sys_file: Likewise.
12808         * modules/sys_ioctl: Likewise.
12809         * modules/sys_select: Likewise.
12810         * modules/sys_socket: Likewise.
12811         * modules/sys_stat: Likewise.
12812         * modules/sys_time: Likewise.
12813         * modules/sys_times: Likewise.
12814         * modules/sys_utsname: Likewise.
12815         * modules/sys_wait: Likewise.
12816         * modules/sysexits: Likewise.
12817         * modules/time: Likewise.
12818         * modules/unistd: Likewise.
12819         * modules/wchar: Likewise.
12820         * modules/wctype: Likewise.
12821
12822 2009-08-22  Jim Meyering  <meyering@redhat.com>
12823
12824         announce-gen: detect write failure
12825         * build-aux/announce-gen: Add Coda at end.
12826         Remove equivalent-but-more-verbose block at top.
12827
12828 2009-08-19  Akim Demaille  <demaille@gostai.com>
12829
12830         bootstrap: --help to stdout.
12831         * bootstrap (usage): Don't send --help to stderr.
12832         Use a here doc instead of a long string.
12833
12834 2009-08-21  Eric Blake  <ebb9@byu.net>
12835
12836         test-popen-safer: split from test-popen
12837         * tests/test-popen.c (main): Move...
12838         * tests/test-popen.h: ...into new file.
12839         * tests/test-popen-safer2.c: New file.
12840         * modules/popen-tests (Files): Add test-popen.h.
12841         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
12842         Suggested by Bruno Haible.
12843
12844         test-fcntl-safer: split from test-open
12845         * tests/test-open.c (main): Move...
12846         * tests/test-open.h: ...into new file.
12847         * tests/test-fcntl-safer.c: New file.
12848         * modules/open-tests (Files): Add test-open.h.
12849         * modules/fcntl-safer-tests: New file.
12850         Suggested by Bruno Haible.
12851
12852         test-fopen-safer: split from test-fopen
12853         * tests/test-fopen.c (main): Move...
12854         * tests/test-fopen.h: ...into new file.
12855         * tests/test-fopen-safer.c: New file.
12856         * modules/fopen-tests (Files): Add test-fopen.h.
12857         * modules/fopen-safer-tests: New file.
12858         Suggested by Bruno Haible.
12859
12860 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
12861
12862         popen-safer: test O_CLOEXEC at run-time.
12863         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
12864
12865 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
12866
12867         fcntl: move more flags to the header
12868         * lib/cloexec.c: Do not define FD_CLOEXEC here.
12869         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
12870         * lib/fcntl.in.h: Do both things here.
12871
12872 2009-08-21  Jim Meyering  <meyering@redhat.com>
12873
12874         consistently remove $@-t before redirecting to it
12875         * modules/argz: Remove $@-t and $@ before redirecting to the former.
12876         * modules/alloca-opt: Likewise.
12877         * modules/byteswap: Likewise.
12878         * modules/fnmatch: Likewise.
12879         * modules/getopt-posix: Likewise.
12880         * modules/glob: Likewise.
12881         * modules/poll: Likewise.
12882         * modules/posix_spawnp-tests: Likewise.
12883         * modules/sys_socket: Likewise.
12884         * modules/sysexits: Likewise.
12885
12886 2009-08-21  Eric Blake  <ebb9@byu.net>
12887
12888         popen: simplify access to original popen
12889         * lib/popen.c (rpl_popen): No need to worry about popen being a
12890         macro.
12891         Reported by Bruno Haible.
12892
12893 2009-08-20  Eric Blake  <ebb9@byu.net>
12894
12895         build: avoid some compiler warnings
12896         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
12897         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
12898         type.
12899         (new_exclude_segment, excluded_file_pattern_p)
12900         (excluded_file_name_p): Reduce scope.
12901         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
12902         old-style declaration.
12903
12904 2009-08-20  Simon Josefsson  <simon@josefsson.org>
12905
12906         * tests/test-exclude1.sh: Handle Windows EOL.
12907         * tests/test-exclude2.sh: Likewise.
12908         * tests/test-exclude3.sh: Likewise.
12909         * tests/test-exclude4.sh: Likewise.
12910         * tests/test-exclude5.sh: Likewise.
12911         * tests/test-exclude6.sh: Likewise.
12912         * tests/test-exclude7.sh: Likewise.
12913
12914 2009-08-19  Akim Demaille  <demaille@gostai.com>
12915
12916         bootstrap: find sha1sum when named gsha1sum.
12917         * bootstrap (find_tool): New.
12918         ($SHA1SUM): New.
12919         Use it.
12920
12921 2009-08-20  Jim Meyering  <meyering@redhat.com>
12922
12923         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
12924         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
12925         expression that converts "." in a file name to "\." in the resulting
12926         regexp.  Start with a dummy statement, so that prior shell variable
12927         definitions are expanded portably.  Reported by Simon Josefsson.
12928
12929 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
12930
12931         Fix polling for writeability of a screen buffer.
12932         * lib/poll.c: Distinguish input and screen buffers for the
12933         Win32 implementation.
12934         * lib/select.c: Likewise.
12935
12936 2009-08-19  Eric Blake  <ebb9@byu.net>
12937
12938         popen-safer: prevent popen from clobbering std descriptors
12939         * modules/popen-safer: New file.
12940         * lib/popen-safer.c: Likewise.
12941         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
12942         * lib/stdio--.h (popen): Provide override.
12943         * lib/stdio-safer.h (popen_safer): Provide declaration.
12944         * tests/test-popen.c (includes): Partially test this.
12945         * modules/popen-safer-tests: New file, for more tests.
12946         * tests/test-popen-safer.c: Likewise.
12947         * MODULES.html.sh (file stream based Input/Output): Mention it.
12948
12949         tests: test some of the *-safer modules
12950         * modules/fopen-safer (Depends-on): Add fopen.
12951         * modules/fcntl-safer (Depends-on): Add fcntl.
12952         * modules/stdlib-safer (Depends-on): Add stdlib.
12953         (configure.ac): Set indicator.
12954         * modules/unistd-safer (configure.ac): Likewise.
12955         * modules/tmpfile-safer (configure.ac): Likewise.
12956         (Depends-on): Add tmpfile.
12957         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
12958         active.
12959         * tests/test-fopen.c (includes): Test safer versions when they are
12960         in use.
12961         * tests/test-open.c (includes): Likewise.
12962
12963         popen: fix cygwin 1.5 bug when stdin closed
12964         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
12965         * modules/popen: New file.
12966         * modules/popen-tests: Likewise.
12967         * tests/test-popen.c: Likewise.
12968         * m4/popen.m4: Likewise.
12969         * lib/popen.c: Likewise.
12970         * lib/stdio.in.h (popen): New declaration.
12971         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
12972         * modules/stdio (Makefile.am): Likewise.
12973         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
12974
12975 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
12976
12977         maint.mk: give full control over update-copyright exclusions
12978         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
12979         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
12980         (update-copyright): Don't force inclusion of top-level
12981         ChangeLog.  Don't force exclusion of all COPYING files, but make
12982         them the default exclusion instead.
12983
12984 2009-08-16  Bruno Haible  <bruno@clisp.org>
12985
12986         Fix test failures on Solaris 10.
12987         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
12988         tests when Solaris iconv() is used.
12989         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
12990         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
12991         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
12992         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
12993         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
12994
12995 2009-08-16  Bruno Haible  <bruno@clisp.org>
12996
12997         Fix test failures on Solaris 10.
12998         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
12999         'tr' program and pass it as first argument.
13000         * tests/test-pipe-filter-gi1.sh: Likewise.
13001         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
13002         program as first argument.
13003         * tests/test-pipe-filter-gi1.c (main): Likewise.
13004
13005 2009-08-16  Eric Blake  <ebb9@byu.net>
13006
13007         fpurge: fix previous commits
13008         * modules/fpurge (Makefile.am): Make replacement conditional,
13009         partially reverting 2007-04-29 change; missed in previous
13010         attempt.
13011         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
13012         is missing.
13013
13014 2009-08-16  Bruno Haible  <bruno@clisp.org>
13015
13016         Clarify fpurge's effect on the file position.
13017         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
13018         * tests/test-fpurge.c (main): Make a second pass for checking the file
13019         position.
13020
13021 2009-08-16  Bruno Haible  <bruno@clisp.org>
13022
13023         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
13024         declaration of fpurge is missing.
13025         * tests/test-fpurge.c (main): Check that the file has not more contents
13026         than expected. Close the file before removing it.
13027
13028 2009-08-15  Eric Blake  <ebb9@byu.net>
13029
13030         fpurge: don't wrap working cygwin implementation
13031         * lib/fpurge.c (fpurge): Fix comment typo.
13032         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
13033         1.7 to avoid replacement.
13034         * tests/test-fpurge.c (main): Enhance test.
13035
13036 2009-08-15  Eric Blake  <ebb9@byu.net>
13037         and Jim Meyering  <meyering@redhat.com>
13038
13039         test-update-copyright: skip if perl is insufficient
13040         * tests/test-update-copyright.sh: Failure to run maintainer tool
13041         should not cause testsuite failure on cygwin 1.5.
13042
13043 2009-08-14  Eric Blake  <ebb9@byu.net>
13044
13045         doc: mention more functions added in cygwin 1.7.0
13046         * doc/posix-headers/limits.texi (limits.h): Update for recent
13047         cygwin additions.
13048         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
13049         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
13050         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
13051         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
13052         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
13053
13054 2009-08-14  Eric Blake  <ebb9@byu.net>
13055
13056         maint.mk: simplify update-copyright rule
13057         * top/maint.mk (update-copyright-local): Delete, and document how
13058         to do it in cfg.mk instead.
13059         (update-copyright-exclude-regexp): Delete, and document how to do
13060         it in .x-update-copyright instead.
13061         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
13062         exclude ChangeLog.
13063
13064 2009-08-14  Bruno Haible  <bruno@clisp.org>
13065
13066         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
13067
13068 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
13069
13070         maint.mk: support update-copyright-env
13071         * top/maint.mk (update-copyright-env): Define place-holder.
13072         (update-copyright): Expand $(update-copyright-env) before
13073         invoking update-copyright.
13074
13075 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
13076
13077         update-copyright: implement forced reformatting
13078         * build-aux/update-copyright: Implement and document
13079         UPDATE_COPYRIGHT_FORCE.
13080         * tests/test-update-copyright.sh: Test it.
13081
13082 2009-08-14  Eric Blake  <ebb9@byu.net>
13083         and Bruno Haible  <bruno@clisp.org>
13084
13085         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
13086         * tests/test-locale.c: Revert previous patch related to NULL.
13087         * tests/test-stdio.c: Likewise.
13088         * tests/test-stdlib.c: Likewise.
13089         * tests/test-string.c: Likewise.
13090         * tests/test-unistd.c: Likewise.
13091         * modules/time-tests (Depends-on): Add verify.
13092         * modules/wchar-tests (Depends-on): Likewise.
13093         * tests/test-time.c: Test for NULL compliance.
13094         * tests/test-wchar.c: Likewise.
13095         * modules/locale (Depends-on): Add stddef.
13096         * modules/stdio (Depends-on): Likewise.
13097         * modules/stdlib (Depends-on): Likewise.
13098         * modules/string (Depends-on): Likewise.
13099         * modules/time (Depends-on): Likewise.
13100         * modules/unistd (Depends-on): Likewise.
13101         * modules/wchar (Depends-on): Likewise.
13102         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
13103         * lib/stdlib.in.h (includes): Likewise.
13104         * lib/string.in.h (includes): Likewise.
13105         * lib/time.in.h (includes): Likewise.
13106         * lib/unistd.in.h (includes): Likewise.
13107         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
13108         replaced.
13109         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
13110         * m4/stddef_h.m4: New file.
13111         * modules/stddef: Likewise.
13112         * lib/stddef.in.h: Likewise.
13113         * modules/stddef-tests: Likewise.
13114         * tests/test-stddef.c: Likewise.
13115         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
13116         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
13117         * doc/posix-headers/locale.texi (locale.h): Likewise.
13118         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
13119         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
13120         * doc/posix-headers/string.texi (string.h): Likewise.
13121         * doc/posix-headers/time.texi (time.h): Likewise.
13122         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
13123         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
13124
13125 2009-08-14  Eric Blake  <ebb9@byu.net>
13126
13127         doc: improve git diff of texinfo files
13128         * .gitattributes: Add rule for *.texi files, with hint on how to
13129         use it.
13130         Copied from m4, and based on a report by Bruno Haible.
13131
13132 2009-08-14  Bruno Haible  <bruno@clisp.org>
13133
13134         Disable multithread support by default on Cygwin 1.5.x for real.
13135         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
13136
13137 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
13138
13139         update-copyright: much ado about intervals
13140         * build-aux/update-copyright: Implement and document
13141         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
13142         of copyright year intervals.
13143         Also, document UPDATE_COPYRIGHT_YEAR.
13144         * tests/test-update-copyright.sh: Test it.
13145
13146         update-copyright: convert 2-digit to 4-digit years
13147         * build-aux/update-copyright: Implement and document.
13148         * tests/test-update-copyright.sh: Update.
13149
13150 2009-08-14  Jim Meyering  <meyering@redhat.com>
13151
13152         test-exclude: avoid coreutils "make check" failure
13153         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
13154         just as in test-argmatch.c.
13155
13156 2009-08-13  Eric Blake  <ebb9@byu.net>
13157
13158         test-dup2: fix bad assumption
13159         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
13160         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
13161
13162         test-version-etc: fix CRLF portability issue
13163         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
13164         recognize \r.
13165         * tests/test-argp-version-etc-1.sh: Likewise.
13166
13167         getopt: update client modules
13168         * modules/argp (Depends-on): Use getopt-gnu.
13169         * modules/git-merge-changelog (Depends-on): Likewise.
13170         * modules/long-options (Depends-on): Likewise.
13171         * modules/xstrtol (Depends-on): Likewise.
13172
13173 2009-08-13  Simon Josefsson  <simon@josefsson.org>
13174
13175         * tests/test-version-etc.sh: Don't fail on different
13176         project/version.  Don't fail on CRLF differences.  Rewrite to use
13177         multiple -e instead of multiple sed forks, suggested by Eric Blake
13178         <ebb9@byu.net>.
13179         * tests/test-argp-version-etc-1.sh: Likewise.
13180
13181 2009-08-13  Simon Josefsson  <simon@josefsson.org>
13182
13183         * tests/test-version-etc.sh: Don't fail on different
13184         project/version.
13185
13186 2009-08-12  Bruno Haible  <bruno@clisp.org>
13187
13188         Tests for modules 'getopt-posix', 'getopt-gnu'.
13189         * modules/getopt-posix-tests: New file.
13190         * tests/test-getopt.c: New file.
13191         * tests/test-getopt.h: New file.
13192         * tests/test-getopt_long.h: New file.
13193
13194         New modules 'getopt-posix', 'getopt-gnu'.
13195         * modules/getopt-gnu: New file, renamed from modules/getopt.
13196         * modules/getopt-posix: New file.
13197         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
13198         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
13199         (gl_GETOPT): Remove macro.
13200         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
13201         Disable the test against BSD systems that declare optreset. Test
13202         against mingw bug. Test against lack of support of optional arguments
13203         on many platforms.
13204         * doc/glibc-headers/getopt.texi: Update module name and list of
13205         relevant platforms.
13206         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
13207         'getopt-gnu' and more portability problems.
13208         * NEWS: Mention the changes.
13209
13210 2009-08-12  Bruno Haible  <bruno@clisp.org>
13211
13212         Ensure that optarg etc. get declared by <unistd.h>.
13213         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
13214         AC_USE_SYSTEM_EXTENSIONS.
13215         * modules/getopt (Depends-on): Add 'extensions'.
13216
13217 2009-08-12  Bruno Haible  <bruno@clisp.org>
13218
13219         Avoid test link errors.
13220         * modules/pipe-filter-ii-tests (Makefile.am): Define
13221         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
13222         * modules/pipe-filter-gi-tests (Makefile.am): Define
13223         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
13224         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
13225
13226 2009-08-12  Bruno Haible  <bruno@clisp.org>
13227
13228         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
13229         gl_GETOPT_SUBSTITUTE before.
13230         (gl_GETOPT): Use it.
13231         * m4/argp.m4 (gl_ARGP): Update.
13232         Reported by Sergey Poznyakoff.
13233
13234         * m4/getopt.m4: Reorder macros.
13235         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
13236         (gl_GETOPT_SUBSTITUTE): Remove macro.
13237
13238 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13239
13240         Minor improvement in gitlog-to-changelog
13241
13242         * build-aux/gitlog-to-changelog: New option `--format' makes
13243         output format string configurable.
13244
13245 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
13246
13247         Optimize exclude: use hash tables for non-wildcard patterns.
13248
13249         * lib/exclude.c: Include hash.h and mbuiter.h
13250         (struct exclude_pattern, exclude_segment): New data types.
13251         (struct exclude): Rewrite.
13252         (fnmatch_pattern_has_wildcards): New function.
13253         (new_exclude_segment, free_exclude_segment): New functions.
13254         (excluded_file_pattern_p, excluded_file_name_p): New functions.
13255         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
13256         * lib/exclude.h (is_fnmatch_pattern): New prototype.
13257         * modules/exclude: Depend on hash and mbuiter.
13258
13259         * modules/exclude-tests: New file.
13260         * tests/test-exclude.c: New file.
13261         * tests/test-exclude1.sh: New file.
13262         * tests/test-exclude2.sh: New file.
13263         * tests/test-exclude3.sh: New file.
13264         * tests/test-exclude4.sh: New file.
13265         * tests/test-exclude5.sh: New file.
13266         * tests/test-exclude6.sh: New file.
13267         * tests/test-exclude7.sh: New file.
13268
13269 2009-08-12  Bruno Haible  <bruno@clisp.org>
13270
13271         Ensure that getopt() gets declared by <unistd.h>.
13272         * lib/unistd.in.h: Conditionally include getopt.h.
13273         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
13274         Set GNULIB_UNISTD_H_GETOPT.
13275         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13276         GNULIB_UNISTD_H_GETOPT.
13277         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
13278
13279 2009-08-12  Bruno Haible  <bruno@clisp.org>
13280
13281         Clarify logic.
13282         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
13283         gl_replace_getopt instead of GETOPT_H.
13284
13285 2009-08-12  Bruno Haible  <bruno@clisp.org>
13286
13287         * m4/getopt.m4: Add comments.
13288
13289 2009-08-12  Bruno Haible  <bruno@clisp.org>
13290
13291         Disable multithread support by default on Cygwin 1.5.x.
13292         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
13293         set gl_use_threads=no if not specified otherwise.
13294
13295 2009-08-11  Bruno Haible  <bruno@clisp.org>
13296
13297         Avoid compilation error on NetBSD 5.0.
13298         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
13299         * tests/test-stdio.c: Likewise.
13300         * tests/test-stdlib.c: Likewise.
13301         * tests/test-string.c: Likewise.
13302         * tests/test-unistd.c: Likewise.
13303         Reported by Greg Troxel <gdt@ir.bbn.com>
13304         at <https://savannah.gnu.org/support/?106973>.
13305
13306 2009-08-11  Bruno Haible  <bruno@clisp.org>
13307
13308         * modules/dup2-tests (Depends-on): Remove close.
13309
13310         Undo 2009-07-19 commit.
13311         * modules/acl-tests (Depends-on): Remove close.
13312         * modules/binary-io-tests (Depends-on): Likewise.
13313         * modules/closein-tests (Depends-on): Likewise.
13314         * modules/flock-tests (Depends-on): Likewise.
13315         * modules/fsync-tests (Depends-on): Likewise.
13316         * modules/lseek-tests (Depends-on): Likewise.
13317         * modules/pipe-tests (Depends-on): Likewise.
13318         * modules/posix_spawn-tests (Depends-on): Likewise.
13319         * modules/posix_spawnp-tests (Depends-on): Likewise.
13320         * modules/stat-time-tests (Depends-on): Likewise.
13321         * modules/yesno-tests (Depends-on): Likewise.
13322
13323 2009-08-10  Bruno Haible  <bruno@clisp.org>
13324
13325         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
13326
13327 2009-08-10  Bruno Haible  <bruno@clisp.org>
13328
13329         Fix a gcc warning.
13330         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
13331
13332 2009-08-10  Bruno Haible  <bruno@clisp.org>
13333
13334         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
13335         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
13336         not only the first time.
13337         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
13338         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
13339         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
13340         is 1, not only the the first time.
13341
13342 2009-08-10  Bruno Haible  <bruno@clisp.org>
13343
13344         Make it possible to use module 'gethostname' without module 'close'.
13345         * lib/unistd.in.h (close): Evoke a link error only if
13346         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
13347         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13348         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13349         * modules/unistd (Makefile.am): Substitute
13350         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13351         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
13352         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
13353         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
13354         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13355         * modules/sys_ioctl (Makefile.am): Substitute
13356         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13357         * modules/socket (configure.ac): On native Windows, set
13358         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
13359         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
13360         Reported by Sam Steingold <sds@gnu.org>.
13361
13362 2009-08-10  Bruno Haible  <bruno@clisp.org>
13363
13364         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
13365         * modules/ioctl (configure.ac): Likewise.
13366
13367 2009-08-10  Bruno Haible  <bruno@clisp.org>
13368
13369         Avoid collision between gnulib wrapper and libintl wrapper.
13370         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
13371         already defined in intl/printf.c.
13372         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
13373         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
13374
13375 2009-08-09  Bruno Haible  <bruno@clisp.org>
13376
13377         Make <sys/select.h> really self-contained, also on Solaris 10.
13378         * lib/sys_select.in.h: Include <string.h>.
13379         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
13380         Solaris 10 problem.
13381         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
13382         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
13383         Reported by Jim Meyering.
13384
13385 2009-08-09  Bruno Haible  <bruno@clisp.org>
13386
13387         Avoid warnings from 'aclocal' that are due to a use of macro name
13388         AM_XGETTEXT_OPTION that is not defined in automake.
13389         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
13390         automake.
13391         * modules/error (configure.ac): Likewise.
13392         * modules/propername (configure.ac): Likewise.
13393         * modules/vasprintf (configure.ac): Likewise.
13394         * modules/verror (configure.ac): Likewise.
13395         * modules/xprintf (configure.ac): Likewise.
13396         * modules/xvasprintf (configure.ac): Likewise.
13397
13398 2009-08-08  Bruno Haible  <bruno@clisp.org>
13399
13400         Avoid compilation error in C++ mode.
13401         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
13402         Reported by Sam Steingold <sds@gnu.org>.
13403
13404 2009-08-08  Bruno Haible  <bruno@clisp.org>
13405
13406         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
13407         for the various Unix platforms.
13408         * doc/posix-headers/limits.texi: Update platforms list regarding
13409         HOST_NAME_MAX.
13410         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
13411
13412 2009-08-07  Jim Meyering  <meyering@redhat.com>
13413
13414         selinux-at: fix typo in a comment
13415         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
13416         Spotted by Paolo Bonzini.
13417
13418         selinux-at: remove redundant m4 code, add documentation
13419         * modules/selinux-at (configure.ac): Remove redundant code.
13420         LIB_SELINUX is already set via the dependent module, selinux-h.
13421         (Include): Add quotes around selinux-at.h.
13422         * lib/selinux-at.h: Add documentation.
13423         Reported by Bruno Haible in
13424         http://marc.info/?l=gnulib-bug&m=124958988300749
13425
13426 2009-08-07  Bruno Haible  <bruno@clisp.org>
13427
13428         Avoid link error on MacOS X 10.3 and 10.4.
13429         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
13430         on non-ELF systems.
13431         * lib/argp-pv.c (argp_program_version): Likewise.
13432         Reported by Simon Josefsson.
13433
13434 2009-08-07  Simon Josefsson  <simon@josefsson.org>
13435
13436         * tests/test-version-etc.sh: Use $EXEEXT.
13437
13438 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
13439
13440         update-copyright: update documentation to point to maint.mk
13441         * build-aux/update-copyright: Here.
13442
13443 2009-08-06  Jim Meyering  <meyering@redhat.com>
13444
13445         maint.mk: support update-copyright-local
13446         * top/maint.mk (update-copyright-local): Define place-holder.
13447         (update-copyright): Depend on $(update-copyright-local).
13448
13449 2009-08-06  Jim Meyering  <meyering@redhat.com>
13450
13451         selinux-at: new module
13452         Initially written for coreutils, this module will soon be
13453         used by findutils, too.
13454         * MODULES.html.sh [Misc]: Add selinux-at.
13455         * lib/selinux-at.h: New file, from coreutils.
13456         * lib/selinux-at.c: Likewise.
13457         * modules/selinux-at: Likewise.
13458         (License): Change from LGPL to GPL, since it depends
13459         on the GPL'd openat module.
13460
13461         doc: update README
13462         * README: Remove references to cogito.
13463         Remove cvs-repo-updating instructions from 2007.
13464         Don't imply that CVS is better if you have limited disk space.
13465
13466 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13467
13468         update-copyright: support C-style comments
13469         * build-aux/update-copyright: Implement and document.
13470         * tests/test-update-copyright.sh: Test.
13471
13472 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13473
13474         update-copyright: support omitted "(C)"
13475         * build-aux/update-copyright: Implement and document.  Also,
13476         allow variable whitespace before "(C)".
13477         * tests/test-update-copyright.sh: Test.
13478
13479 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13480
13481         update-copyright: don't trip on non-FSF copyright statements
13482         * build-aux/update-copyright: Fix so that the first correctly
13483         formatted FSF copyright statement is recognized no matter what
13484         appears before it.  Update documentation.
13485         * tests/test-update-copyright.sh: Test that.
13486
13487 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13488
13489         update-copyright: clean up code a little
13490         * build-aux/update-copyright: Append "_re" to the name of any
13491         variable holding a regular expression.
13492         Replace "old" and "new" with "stmt" in variable names.
13493         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
13494         handled correctly.
13495         Format code more consistently.
13496
13497 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
13498
13499         update-copyright-tests: improve portability
13500         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
13501         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
13502
13503 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
13504
13505         update-copyright: support @copyright{} and &copy;
13506         * build-aux/update-copyright: Implement and document.
13507         * tests/test-update-copyright.sh: Test.
13508
13509 2009-08-04  Jim Meyering  <meyering@redhat.com>
13510
13511         update-copyright-tests: correctly test EOL=\r\n handling
13512         * tests/test-update-copyright.sh: Put \r at the end of some lines
13513         for the dos-eol tests.  Based on a patch by Joel E. Denny.
13514
13515         maint.mk: make update-copyright exclusion list more configurable
13516         * top/maint.mk (update-copyright): Default to excluding COPYING,
13517         but allow an override, in case someone does want to update that file.
13518
13519         maint.mk: don't update copyright date in COPYING
13520         * top/maint.mk (update-copyright): Exclude COPYING.
13521
13522         maint.mk: add a copyright-updating rule
13523         * top/maint.mk (update-copyright): New rule.
13524         Derived from coreutils/Makefile.am.
13525
13526         update-copyright: rename some variables
13527         * build-aux/update-copyright: Rename a few variables for clarity.
13528         Tweak syntax.  List Joel E. Denny as coauthor.
13529
13530 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
13531
13532         update-copyright: fix bug for 2-digit last year and add tests
13533         * build-aux/update-copyright: Fix bug.
13534         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
13535         specified.
13536         * modules/update-copyright-tests: New
13537         * tests/test-update-copyright.sh: New.
13538
13539 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
13540
13541         update-copyright: handle leading tabs in line prefix
13542         * build-aux/update-copyright: Count leading tabs as 8 spaces
13543         when computing margin.  This helps with the formatting of
13544         ChangeLogs, for example.
13545         Fix documentation a little.
13546
13547 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
13548
13549         update-copyright: support EOL=\r\n
13550         * build-aux/update-copyright: Implement that.
13551
13552 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
13553
13554         update-copyright: automatically format copyright statements
13555         * build-aux/update-copyright: Implement that.
13556         Also, be a little more predictable and safer by always failing
13557         when the full copyright format is not perfectly recognized as an
13558         unbroken whole.  Discussed at
13559         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
13560         Rewrite documentation.
13561
13562 2009-08-03  Bruno Haible  <bruno@clisp.org>
13563
13564         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
13565
13566 2009-08-02  Bruno Haible  <bruno@clisp.org>
13567
13568         Tests for module 'uname'.
13569         * modules/uname-tests: New file.
13570         * tests/test-uname.c: New file.
13571
13572         New module 'uname'.
13573         * lib/uname.c: New file.
13574         * m4/uname.m4: New file.
13575         * modules/uname: New file.
13576         * doc/posix-functions/uname.texi: Mention the new module.
13577
13578 2009-08-02  Bruno Haible  <bruno@clisp.org>
13579
13580         Tests for module 'sys_utsname'.
13581         * modules/sys_utsname-tests: New file.
13582         * tests/test-sys_utsname.c: New file.
13583
13584         New module 'sys_utsname'.
13585         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
13586         * m4/sys_utsname_h.m4: New file.
13587         * modules/sys_utsname: New file.
13588         * doc/posix-headers/sys_utsname.texi: Mention the new module.
13589
13590 2009-08-02  Bruno Haible  <bruno@clisp.org>
13591
13592         Implicitly initialize the sockets library.
13593         * lib/gethostname.c: Include sockets.h.
13594         (rpl_gethostname): Invoke gl_sockets_startup.
13595         * lib/socket.c: Include sockets.h.
13596         (rpl_socket): Invoke gl_sockets_startup.
13597         * modules/gethostname (Depends-on): Add sockets.
13598         * modules/socket (Depends-on): Likewise.
13599         * tests/test-poll.c: Don't include sockets.h.
13600         (main): Don't invoke gl_sockets_startup.
13601         * tests/test-select.c: Don't include sockets.h.
13602         (main): Don't invoke gl_sockets_startup.
13603
13604 2009-08-02  Bruno Haible  <bruno@clisp.org>
13605
13606         Allow multiple calls to gl_sockets_startup.
13607         * lib/sockets.c (initialized_sockets_version): New variable.
13608         (gl_sockets_startup): Do nothing if already called for this or a higher
13609         version.
13610         (gl_sockets_cleanup): Reset initialized_sockets_version.
13611
13612 2009-08-03  Simon Josefsson  <simon@josefsson.org>
13613
13614         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
13615         different project/version.
13616
13617 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
13618             Bruno Haible  <bruno@clisp.org>
13619
13620         Tests for module 'pipe-filter-gi'.
13621         * modules/pipe-filter-gi-tests: New file.
13622         * tests/test-pipe-filter-gi1.sh: New file.
13623         * tests/test-pipe-filter-gi1.c: New file.
13624         * tests/test-pipe-filter-gi2.sh: New file.
13625         * tests/test-pipe-filter-gi2-main.c: New file.
13626         * tests/test-pipe-filter-gi2-child.c: New file.
13627
13628         New module 'pipe-filter-gi'.
13629         * lib/pipe-filter-gi.c: New file.
13630         * modules/pipe-filter-gi: New file.
13631
13632 2009-08-02  Bruno Haible  <bruno@clisp.org>
13633             Paolo Bonzini  <bonzini@gnu.org>
13634
13635         Tests for module 'pipe-filter-ii'.
13636         * modules/pipe-filter-ii-tests: New file.
13637         * tests/test-pipe-filter-ii1.sh: New file.
13638         * tests/test-pipe-filter-ii1.c: New file.
13639         * tests/test-pipe-filter-ii2.sh: New file.
13640         * tests/test-pipe-filter-ii2-main.c: New file.
13641         * tests/test-pipe-filter-ii2-child.c: New file.
13642
13643         New module 'pipe-filter-ii'.
13644         * lib/pipe-filter.h: New file.
13645         * lib/pipe-filter-ii.c: New file.
13646         * lib/pipe-filter-aux.h: New file.
13647         * modules/pipe-filter-ii: New file.
13648
13649 2009-08-02  Simon Josefsson  <simon@josefsson.org>
13650
13651         * lib/gc-libgcrypt.c: Change copyright to FSF.
13652         * lib/gc-gnulib.c: Likewise.
13653
13654 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
13655
13656         * lib/gethostname.c: Include limits.h.
13657
13658 2009-08-02  Simon Josefsson  <simon@josefsson.org>
13659             Bruno Haible  <bruno@clisp.org>
13660
13661         Ensure HOST_NAME_MAX as part of the gethostname module.
13662         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
13663         define also HOST_NAME_MAX.
13664         * tests/test-gethostname.c: Include <limits.h>.
13665         (main): Check also HOST_NAME_MAX.
13666         * doc/posix-headers/limits.texi: Document the mingw problem.
13667
13668 2009-08-02  Bruno Haible  <bruno@clisp.org>
13669
13670         * lib/gethostname.c (gethostname): Fix handling of large len argument.
13671         Add comments.
13672
13673 2009-03-31  Simon Josefsson  <simon@josefsson.org>
13674
13675         * lib/gethostname.c: Add Windows wrapper.
13676         * m4/gethostname.m4: Look for gethostname in -lws2_32.
13677         * modules/gethostname: Depend on sys_socket & errno, for also
13678         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
13679         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
13680
13681 2009-07-31  Jim Meyering  <meyering@redhat.com>
13682
13683         getloadavg: fix symbol name in comment
13684         * lib/getloadavg.c: Correct a typo I introduced when adding
13685         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
13686         Matt Kraai spotted the problem.
13687
13688 2009-07-29  Matt Kraai  <mkraai@beckman.com>
13689
13690         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
13691         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
13692         code also if ! defined N_NAME_POINTER.
13693         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
13694         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
13695         but the n_name member is a 12-byte array.
13696
13697 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
13698
13699         update-copyright: generalize comment handling
13700         * build-aux/update-copyright: Handle copyright statements
13701         within more comment styles.
13702         Document usage.
13703         Report any file with an external copyright holder or parse failure.
13704
13705 2009-07-29  Jim Meyering  <meyering@redhat.com>
13706
13707         mktime: correct setting of REPLACE_MKTIME
13708         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
13709
13710         update-copyright: new module
13711         * modules/update-copyright: New file.
13712         * build-aux/update-copyright: New file.
13713         * MODULES.html.sh (maint+release support): Add update-copyright.
13714
13715 2009-07-27  Bruno Haible  <bruno@clisp.org>
13716
13717         Fix compilation error when <ctime> is used and mktime is replaced.
13718         * lib/time.in.h (mktime): New declaration.
13719         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
13720         REPLACE_MKTIME instead of defining mktime in config.h.
13721         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
13722         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
13723         Reported by Ross McFarland <rwmcfa1@neces.com>.
13724
13725 2009-07-27  Bruno Haible  <bruno@clisp.org>
13726
13727         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
13728         Reported by Matt Kraai <mkraai@beckman.com>.
13729
13730 2009-07-25  Jim Meyering  <meyering@redhat.com>
13731
13732         maint.mk: avoid warnings about missing files
13733         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
13734         diagnostic when .prev-version does not exist.
13735         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
13736         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
13737         nonexistent cfg.mk.
13738         Suggestions from Simon Josefsson.
13739
13740 2009-07-25  Bruno Haible  <bruno@clisp.org>
13741
13742         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
13743         defined as macros. Needed on QNX 6.4.1.
13744         Reported by Matt Kraai <mkraai@beckman.com>.
13745
13746 2009-07-23  Jim Meyering  <meyering@redhat.com>
13747
13748         maint.mk: invoke "make dist" with a working value of XZ_OPT
13749         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
13750
13751 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
13752
13753         Make fseeko.c compile on QNX.
13754         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
13755
13756 2009-07-22  Peter Simons  <simons@cryp.to>
13757
13758         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
13759         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
13760         * lib/md4.h: Likewise.
13761         * lib/md5.h: Likewise.
13762         * lib/sha1.h: Likewise.
13763         * lib/sha256.h: Likewise.
13764         * lib/sha512.h: Likewise.
13765
13766         tests-sha1: don't assign literal string to 'char *' variable
13767         * tests/test-sha1.c (main): Declare locals with "const" to match
13768         attributes of the right hand side.
13769
13770 2009-07-21  Eric Blake  <ebb9@byu.net>
13771
13772         dup2: fix more mingw problems
13773         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
13774         fd to itself.
13775         * doc/posix-functions/dup2.texi (dup2): Document the bug.
13776         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
13777         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
13778         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
13779         care of mingw bugs.
13780
13781 2009-07-21  Jim Meyering  <meyering@redhat.com>
13782
13783         vc-list-files: avoid failure when /bin/sh is dash
13784         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
13785         On some Debian based systems, /bin/sh is a symlink to dash, and running
13786         this command would omit the "/" following each 'tests' prefix:
13787           dash -x build-aux/vc-list-files -C . tests
13788         That is because bash and dash work differently:
13789           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
13790           bash ok
13791           dash odd
13792
13793 2009-07-21  Eric Blake  <ebb9@byu.net>
13794
13795         dup2-tests: test previous patch
13796         * modules/dup2-tests: New file.
13797         * tests/test-dup2.c: Likewise.
13798         * tests/test-open.c (main): Avoid unspecified behavior.
13799         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
13800         test.
13801
13802         dup2: work around mingw and cygwin 1.5 bug
13803         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
13804         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
13805         * modules/unistd (Makefile.am): Substitute it.
13806         * lib/unistd.in.h (dup2): Declare the replacement.
13807         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
13808         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
13809         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
13810         * modules/execute (Depends-on): Add dup2.
13811         * modules/fseterr (Depends-on): Likewise.
13812         * modules/pipe (Depends-on): Likewise.
13813         * modules/posix_spawn-internal (Depends-on): Likewise.
13814
13815 2009-07-21  Bruno Haible  <bruno@clisp.org>
13816
13817         * modules/.gitattributes: New file.
13818
13819 2009-07-20  Bruno Haible  <bruno@clisp.org>
13820
13821         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
13822         (main): Use it.
13823
13824 2009-07-20  Eric Blake  <ebb9@byu.net>
13825
13826         test-pipe: make a bit more robust.
13827         * tests/test-pipe.c (myerr): Allow error messages regardless of
13828         what we do to stderr.
13829         (test_pipe): Rearrange to avoid deadlock.
13830         (child_main): Try a larger read, to ensure we avoided deadlock.
13831         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
13832         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
13833         if misused.
13834
13835 2009-07-19  Jim Meyering  <meyering@redhat.com>
13836
13837         fts: avoid false-positive cycle-detection
13838         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
13839         for each new command line argument.
13840
13841 2009-07-19  Bruno Haible  <bruno@clisp.org>
13842
13843         Fix build error on mingw with the modules sys_select and unistd.
13844         * modules/acl-tests (Depends-on): Add close.
13845         * modules/binary-io-tests (Depends-on): Likewise.
13846         * modules/closein-tests (Depends-on): Likewise.
13847         * modules/flock-tests (Depends-on): Likewise.
13848         * modules/fsync-tests (Depends-on): Likewise.
13849         * modules/lseek-tests (Depends-on): Likewise.
13850         * modules/pipe-tests (Depends-on): Likewise.
13851         * modules/posix_spawn-tests (Depends-on): Likewise.
13852         * modules/posix_spawnp-tests (Depends-on): Likewise.
13853         * modules/stat-time-tests (Depends-on): Likewise.
13854         * modules/yesno-tests (Depends-on): Likewise.
13855
13856 2009-07-19  Bruno Haible  <bruno@clisp.org>
13857
13858         Unify conditionals.
13859         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
13860         macros, not at the compiler macros.
13861         * lib/pipe.c: Likewise.
13862         * lib/execute.c: Likewise.
13863         * lib/spawni.c: Likewise.
13864
13865 2009-07-19  Bruno Haible  <bruno@clisp.org>
13866
13867         Fix handling of closed stdin/stdout/stderr on mingw.
13868         * lib/w32spawn.h: Include unistd.h.
13869         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
13870         file descriptor with O_NOINHERIT flag.
13871         (fd_safer_noinherit): New function, based on fd-safer.c.
13872         (dup_safer_noinherit): New function, based on dup-safer.c.
13873         (undup_safer_noinherit): New function.
13874         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
13875         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
13876         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
13877         instead of fd_safer.
13878         * tests/test-pipe.c: Include <windows.h>.
13879         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
13880
13881         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
13882         from main.
13883         (test_pipe): Pass an extra argument for disambiguation.
13884         (main): Invoke parent_main or child_main.
13885
13886         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
13887         consistently.
13888
13889 2009-07-18  Eric Blake  <ebb9@byu.net>
13890
13891         test-pipe: fix mingw build
13892         * tests/test-pipe.c (main): Avoid fcntl on mingw.
13893
13894 2009-07-18  Bruno Haible  <bruno@clisp.org>
13895
13896         * modules/pipe-tests (Makefile.am): Fix typo.
13897
13898 2009-07-18  Eric Blake  <ebb9@byu.net>
13899
13900         error: fix mingw build
13901         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
13902         Reported by Bruno Haible.
13903
13904         error: avoid undefined use of stdout
13905         * lib/error.c (error, error_at_line): Check that fd 1 is open
13906         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
13907         is handling faults and the close_stdout module wants to report the
13908         detection of closed stdout as an error.
13909
13910 2009-07-17  Eric Blake  <ebb9@byu.net>
13911
13912         pipe: be robust in face of closed fds
13913         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
13914         should cause child to misbehave.
13915         * modules/pipe-tests: New module.
13916         * tests/test-pipe.c: New file.
13917         * tests/test-pipe.sh: New file.
13918         Reported by Akim Demaille.
13919
13920 2009-07-14  Bruno Haible  <bruno@clisp.org>
13921
13922         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
13923         Reported by anonymous kc.
13924
13925 2009-07-07  Jim Meyering  <meyering@redhat.com>
13926
13927         maint.mk: don't look for translatable strings in *.m4 or *.mk
13928         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
13929         when searching for translatable strings.
13930
13931 2009-07-05  Jim Meyering  <meyering@redhat.com>
13932
13933         remove superfluous parentheses in STREQ definition
13934         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
13935         * lib/getugroups.c (STREQ): Likewise.
13936         * lib/fnmatch.c (STREQ): Likewise.
13937         Spotted by Bruno Haible.
13938
13939 2009-07-04  Jim Meyering  <meyering@redhat.com>
13940
13941         argv-iter: new module
13942         * MODULES.html.sh: Add argv-iter.
13943         * lib/argv-iter.c, lib/argv-iter.h: New files.
13944         * modules/argv-iter: New file.
13945         * modules/argv-iter-tests: New file.
13946         * tests/test-argv-iter.c: Test it.
13947
13948 2009-07-04  Bruno Haible  <bruno@clisp.org>
13949
13950         Fix assertion.
13951         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
13952         contains more exact copies of a given entry than file2, leave the extra
13953         copies unpaired rather than aborting.
13954         Reported by Eric Blake.
13955
13956 2009-07-02  Bruno Haible  <bruno@clisp.org>
13957
13958         Speedup git-merge-changelog for git cherry-pick.
13959         * lib/git-merge-changelog.c (struct entries_mapping): New type.
13960         (entries_mapping_get): New function, extracted from compute_mapping.
13961         (entries_mapping_reverse_get): New function.
13962         (compute_mapping): Add a 'full' argument. Return the result in a
13963         'struct entries_mapping'.
13964         (main): Update. Access the mappings through entries_mapping_get.
13965         Reported by Eric Blake.
13966
13967 2009-07-02  Bruno Haible  <bruno@clisp.org>
13968
13969         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
13970         best_i.
13971
13972 2009-07-02  Bruno Haible  <bruno@clisp.org>
13973
13974         Speed up approximate search for matching ChangeLog entries.
13975         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
13976         argument. Call fstrcmp_bounded instead of fstrcmp.
13977         (compute_mapping, try_split_merged_entry, main): Update callers.
13978
13979 2009-07-02  Bruno Haible  <bruno@clisp.org>
13980
13981         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
13982
13983 2009-06-30  Bruno Haible  <bruno@clisp.org>
13984
13985         Reduce the number of uc_is_cased calls.
13986         * lib/unicase.h (casing_suffix_context_t): Add
13987         'first_char_except_ignorable' field.
13988         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
13989         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
13990         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
13991         Update initializer.
13992         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
13993         case-ignorable characters.
13994         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
13995         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
13996         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
13997         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
13998         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
13999
14000 2009-06-30  Bruno Haible  <bruno@clisp.org>
14001
14002         Tests for module 'unicase/ignorable'.
14003         * modules/unicase/ignorable-tests: New file.
14004         * tests/unicase/test-ignorable.c: New file, generated by
14005         gen-uni-tables.
14006
14007         Tests for module 'unicase/cased'.
14008         * modules/unicase/cased-tests: New file.
14009         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
14010         * tests/unicase/test-predicate-part1.h: New file, derived from
14011         tests/unictype/test-predicate-part1.h.
14012         * tests/unicase/test-predicate-part2.h: New file, same as
14013         tests/unictype/test-predicate-part2.h.
14014
14015         Fix evaluation of "Before C" condition of FINAL_SIGMA.
14016         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
14017         (output_casing_properties): New function.
14018         (main): Call it.
14019         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
14020         * lib/unicase/cased.c: Include unictype/bitmap.h.
14021         (uc_is_cased): Define through a bitmap lookup.
14022         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
14023         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
14024         (uc_is_case_ignorable): Define through a bitmap lookup.
14025         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
14026         lib/unictype/bitmap.h.
14027         (Depends-on): Add inline. Clean up.
14028         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
14029         lib/unictype/bitmap.h.
14030         (Depends-on): Add inline. Clean up.
14031         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
14032         recognition.
14033         * tests/unicase/test-u16-tolower.c (main): Likewise.
14034         * tests/unicase/test-u32-tolower.c (main): Likewise.
14035
14036 2009-06-30  Bruno Haible  <bruno@clisp.org>
14037
14038         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
14039         * lib/unicase/u16-casemap.c: Likewise.
14040         * lib/unicase/u32-casemap.c: Likewise.
14041
14042 2009-06-29  Bruno Haible  <bruno@clisp.org>
14043
14044         Define u32_casefold as a wrapper around u32_ct_casefold.
14045         * lib/unicase/u32-casefold.c: Update.
14046         * modules/unicase/u32-casefold (Depends-on): Add
14047         unicase/u32-ct-casefold, unicase/empty-prefix-context,
14048         unicase/empty-suffix-context. Clean up.
14049
14050         Define u16_casefold as a wrapper around u16_ct_casefold.
14051         * lib/unicase/u16-casefold.c: Update.
14052         * modules/unicase/u16-casefold (Depends-on): Add
14053         unicase/u16-ct-casefold, unicase/empty-prefix-context,
14054         unicase/empty-suffix-context. Clean up.
14055
14056         Define u8_casefold as a wrapper around u8_ct_casefold.
14057         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
14058         * lib/unicase/u8-casefold.c: Update.
14059         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
14060         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
14061
14062         Define u32_totitle as a wrapper around u32_ct_totitle.
14063         * lib/unicase/u32-totitle.c: Update.
14064         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
14065         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
14066
14067         Define u16_totitle as a wrapper around u16_ct_totitle.
14068         * lib/unicase/u16-totitle.c: Update.
14069         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
14070         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
14071
14072         Define u8_totitle as a wrapper around u8_ct_totitle.
14073         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
14074         functions.
14075         (FUNC): Delegate to U_CT_TOTITLE.
14076         * lib/unicase/u8-totitle.c: Update.
14077         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
14078         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
14079
14080         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
14081         invocation.
14082         * modules/unicase/u32-tolower (Depends-on): Add
14083         unicase/empty-prefix-context, unicase/empty-suffix-context.
14084
14085         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
14086         invocation.
14087         * modules/unicase/u16-tolower (Depends-on): Add
14088         unicase/empty-prefix-context, unicase/empty-suffix-context.
14089
14090         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
14091         * modules/unicase/u8-tolower (Depends-on): Add
14092         unicase/empty-prefix-context, unicase/empty-suffix-context.
14093
14094         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
14095         invocation.
14096         * modules/unicase/u32-toupper (Depends-on): Add
14097         unicase/empty-prefix-context, unicase/empty-suffix-context.
14098
14099         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
14100         invocation.
14101         * modules/unicase/u16-toupper (Depends-on): Add
14102         unicase/empty-prefix-context, unicase/empty-suffix-context.
14103
14104         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
14105         * modules/unicase/u8-toupper (Depends-on): Add
14106         unicase/empty-prefix-context, unicase/empty-suffix-context.
14107
14108         New module 'unicase/u32-ct-casefold'.
14109         * lib/unicase/u32-ct-casefold.c: New file.
14110         * modules/unicase/u32-ct-casefold: New file.
14111
14112         New module 'unicase/u16-ct-casefold'.
14113         * lib/unicase/u16-ct-casefold.c: New file.
14114         * modules/unicase/u16-ct-casefold: New file.
14115
14116         New module 'unicase/u8-ct-casefold'.
14117         * lib/unicase/u8-ct-casefold.c: New file.
14118         * lib/unicase/u-ct-casefold.h: New file, derived from
14119         lib/unicase/u-casefold.h.
14120         * modules/unicase/u8-ct-casefold: New file.
14121
14122         New module 'unicase/u32-ct-totitle'.
14123         * lib/unicase/u32-ct-totitle.c: New file.
14124         * modules/unicase/u32-ct-totitle: New file.
14125
14126         New module 'unicase/u16-ct-totitle'.
14127         * lib/unicase/u16-ct-totitle.c: New file.
14128         * modules/unicase/u16-ct-totitle: New file.
14129
14130         New module 'unicase/u8-ct-totitle'.
14131         * lib/unicase/u8-ct-totitle.c: New file.
14132         * lib/unicase/u-ct-totitle.h: New file, derived from
14133         lib/unicase/u-totitle.h.
14134         * modules/unicase/u8-ct-totitle: New file.
14135
14136         New module 'unicase/u32-ct-tolower'.
14137         * lib/unicase/u32-ct-tolower.c: New file.
14138         * modules/unicase/u32-ct-tolower: New file.
14139
14140         New module 'unicase/u16-ct-tolower'.
14141         * lib/unicase/u16-ct-tolower.c: New file.
14142         * modules/unicase/u16-ct-tolower: New file.
14143
14144         New module 'unicase/u8-ct-tolower'.
14145         * lib/unicase/u8-ct-tolower.c: New file.
14146         * modules/unicase/u8-ct-tolower: New file.
14147
14148         New module 'unicase/u32-ct-toupper'.
14149         * lib/unicase/u32-ct-toupper.c: New file.
14150         * modules/unicase/u32-ct-toupper: New file.
14151
14152         New module 'unicase/u16-ct-toupper'.
14153         * lib/unicase/u16-ct-toupper.c: New file.
14154         * modules/unicase/u16-ct-toupper: New file.
14155
14156         New module 'unicase/u8-ct-toupper'.
14157         * lib/unicase/u8-ct-toupper.c: New file.
14158         * modules/unicase/u8-ct-toupper: New file.
14159
14160         Add context arguments to u*_casemap functions.
14161         * lib/unicase/unicasemap.h: Include unicase.h.
14162         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
14163         suffix_context arguments.
14164         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
14165         functions.
14166         (FUNC): Add prefix_context and suffix_context arguments. Use
14167         uc_is_cased and uc_is_case_ignorable.
14168         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
14169         * lib/unicase/u16-casemap.c: Likewise.
14170         * lib/unicase/u32-casemap.c: Likewise.
14171         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
14172         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
14173         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
14174         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
14175         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
14176         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
14177
14178         New module 'unicase/u32-suffix-context'.
14179         * lib/unicase/u32-suffix-context.c: New file.
14180         * modules/unicase/u32-suffix-context: New file.
14181
14182         New module 'unicase/u16-suffix-context'.
14183         * lib/unicase/u16-suffix-context.c: New file.
14184         * modules/unicase/u16-suffix-context: New file.
14185
14186         New module 'unicase/u8-suffix-context'.
14187         * lib/unicase/u8-suffix-context.c: New file.
14188         * lib/unicase/u-suffix-context.h: New file.
14189         * modules/unicase/u8-suffix-context: New file.
14190
14191         New module 'unicase/empty-suffix-context'.
14192         * lib/unicase/empty-suffix-context.c: New file.
14193         * modules/unicase/empty-suffix-context: New file.
14194
14195         New module 'unicase/u32-prefix-context'.
14196         * lib/unicase/u32-prefix-context.c: New file.
14197         * modules/unicase/u32-prefix-context: New file.
14198
14199         New module 'unicase/u16-prefix-context'.
14200         * lib/unicase/u16-prefix-context.c: New file.
14201         * modules/unicase/u16-prefix-context: New file.
14202
14203         New module 'unicase/u8-prefix-context'.
14204         * lib/unicase/u8-prefix-context.c: New file.
14205         * lib/unicase/u-prefix-context.h: New file.
14206         * lib/unicase/context.h: New file.
14207         * modules/unicase/u8-prefix-context: New file.
14208
14209         New module 'unicase/empty-prefix-context'.
14210         * lib/unicase/empty-prefix-context.c: New file.
14211         * modules/unicase/empty-prefix-context: New file.
14212
14213         New module 'unicase/ignorable'.
14214         * lib/unicase/ignorable.c: New file.
14215         * modules/unicase/ignorable: New file.
14216
14217         New module 'unicase/cased'.
14218         * lib/unicase/caseprop.h: New file.
14219         * lib/unicase/cased.c: New file.
14220         * modules/unicase/cased: New file.
14221
14222         New functions for case mapping of substrings.
14223         * lib/unicase.h (casing_prefix_context_t): New type.
14224         (unicase_empty_prefix_context): New variable.
14225         (u8_casing_prefix_context, u16_casing_prefix_context,
14226         u32_casing_prefix_context, u8_casing_prefixes_context,
14227         u16_casing_prefixes_context, u32_casing_prefixes_context): New
14228         declarations.
14229         (casing_suffix_context_t): New type.
14230         (unicase_empty_suffix_context): New variable.
14231         (u8_casing_suffix_context, u16_casing_suffix_context,
14232         u32_casing_suffix_context, u8_casing_suffixes_context,
14233         u16_casing_suffixes_context, u32_casing_suffixes_context,
14234         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
14235         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
14236         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
14237         declarations.
14238
14239 2009-06-28  Jim Meyering  <meyering@redhat.com>
14240
14241         boostrap: indent only with spaces
14242         * build-aux/bootstrap: Indent only with spaces, never TABs.
14243
14244         bootstrap: split long lines
14245         * build-aux/bootstrap: Keep line length < 80.
14246
14247         bootstrap: sync from coreutils
14248         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
14249         just as autoreconf does.  Verify a list of prerequisite
14250         package-name,version-number pairs if defined in bootstrap.conf.
14251         Refer to README-prereq, if prerequisites are not satisfied.
14252
14253 2009-06-27  Eric Blake  <ebb9@byu.net>
14254
14255         tests: add test for bogus NULL definition
14256         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
14257         * tests/test-stdlib.c: Likewise.
14258         * tests/test-string.c: Likewise.
14259         * tests/test-locale.c: Likewise.
14260         * tests/test-unistd.c: Likewise.
14261         * modules/stdio-tests (Depends-on): Add verify.
14262         * modules/stdlib-tests (Depends-on): Likewise.
14263         * modules/string-tests (Depends-on): Likewise.
14264         * modules/locale-tests (Depends-on): Likewise.
14265         * modules/unistd-tests (Depends-on): Likewise.
14266
14267 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
14268
14269         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
14270         self-explaining comment.
14271         * m4/selinux-selinux-h: Update serial.
14272         (gl_LIBSELINUX): New macro, adding a warning for missing development
14273         packages to code extracted from...
14274         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
14275         Add warning for missing development packages here, too.
14276
14277 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
14278
14279         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
14280
14281 2009-06-25  Eric Blake  <ebb9@byu.net>
14282
14283         version-etc: fix regression
14284         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
14285         gcc.
14286         (version_etc): Use it, to catch bugs with trailing NULL.
14287         * lib/version-etc.c (version_etc_arn): Delete unused argument.
14288         (version_etc_va): Fix logic bug.
14289         * modules/version-etc-tests: Add test.
14290         * tests/test-version-etc.c: New file.
14291         * tests/test-version-etc.sh: Likewise.
14292
14293 2009-06-25  Sam Steingold  <sds@gnu.org>
14294
14295         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
14296         mbtowc declaration.
14297
14298 2009-06-25  Eric Blake  <ebb9@byu.net>
14299
14300         fpurge: migrate into <stdio.h>
14301         * lib/fpurge.h: Delete...
14302         * lib/stdio.in.h (fpurge): ...and declare here, instead.
14303         * lib/fpurge.c (fpurge): Change declaring header.
14304         * modules/fpurge (Files): Drop deleted file.
14305         (Depends-on): Add stdio.
14306         (configure.ac): Set witness.
14307         * modules/stdio (Makefile.am): Support fpurge macros.
14308         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
14309         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
14310         * lib/fflush.c: Update client.
14311         * tests/test-fpurge.c: Likewise.
14312         * NEWS: Mention the change.
14313
14314 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14315
14316         * lib/argp-version-etc.c (program_authors): Add const
14317         qualifier.
14318         * lib/version-etc.c: Fix typos in the comments.
14319         * modules/argp-version-etc: Depends on version-etc.
14320
14321 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14322
14323         argp-version-etc: new module.
14324
14325         * lib/argp-version-etc.c: New file.
14326         * lib/argp-version-etc.h: New file.
14327         * modules/argp-version-etc: New file.
14328         * modules/argp-version-etc-tests: New file.
14329         * tests/test-argp-version-etc.c: New test.
14330         * tests/test-argp-version-etc-1.sh: New test.
14331
14332 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
14333
14334         Provide additional interfaces and documentation for version-etc
14335         module.
14336
14337         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
14338         interfaces.
14339         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
14340         prototypes.
14341
14342 2009-06-24  Bruno Haible  <bruno@clisp.org>
14343
14344         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
14345         HAVE_LIB${NAME} macro.
14346         Reported by Sam Steingold <sds@gnu.org>.
14347
14348 2009-06-23  Simon Josefsson  <simon@josefsson.org>
14349
14350         * modules/hash-tests (test_hash_LDADD): Link to libintl when
14351         needed.
14352
14353 2009-06-21  Bruno Haible  <bruno@clisp.org>
14354
14355         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
14356         work.
14357         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
14358         together with LIB${NAME}, LTLIB${NAME}.
14359         Reported by Sam Steingold <sds@gnu.org>.
14360
14361 2009-06-20  Jim Meyering  <meyering@redhat.com>
14362
14363         tests: make sc_require_test_exit_idiom more generic
14364         * top/maint.mk (Exit_witness_file): New overridable variable.
14365         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
14366         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
14367
14368 2009-06-19  Jim Meyering  <meyering@redhat.com>
14369
14370         hash: reverse order of src/dst parameters in an internal interface
14371         * lib/hash.c (transfer_entries): Reverse order of parameters to
14372         put DST before SRC.  Adjust callers.
14373
14374         tests: test-hash: avoid wholesale duplication
14375         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
14376         Instead, use a loop and add a single conditional.
14377
14378         tests: test-hash: allow seed selection via a command line argument
14379         * tests/test-hash.c (get_seed): New function.
14380         (main): Use it.
14381
14382 2009-06-19  Eric Blake  <ebb9@byu.net>
14383
14384         hash: avoid memory leak on allocation failure
14385         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
14386         failure.  Factor repeated algorithm...
14387         (transfer_entries): ...into new helper routine.
14388         (hash_delete): React to hash_rehash return value.
14389
14390         hash: reduce memory pressure in hash_rehash no-op case
14391         * lib/hash.c (next_prime): Avoid overflow.
14392         (hash_initialize): Factor bucket size computation...
14393         (compute_bucket_size): ...into new helper function.
14394         (hash_rehash): Use new function and open coding to reduce memory
14395         pressure, and avoid a memory leak in USE_OBSTACK code.
14396         Reported by Jim Meyering.
14397
14398 2009-06-18  Eric Blake  <ebb9@byu.net>
14399
14400         hash: make rotation more obvious
14401         * modules/hash (Depends-on): Add bitrotate and stdint.
14402         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
14403         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
14404         (SIZE_MAX): Rely on headers for definition.
14405         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
14406         (raw_hasher): Use rotr_sz.
14407         Suggested by Jim Meyering.
14408
14409         hash: fix memory leak in last patch
14410         * lib/hash.c (hash_rehash): Avoid memory leak.
14411
14412         hash: avoid no-op rehashing
14413         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
14414
14415         hash: provide default callback functions
14416         * lib/hash.c (raw_hasher, raw_comparator): New functions.
14417         (hash_initialize): Use them as defaults.
14418         * tests/test-hash.c (main): Test this.
14419
14420         hash: minor optimization
14421         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
14422         when possible.
14423         (hash_initialize): Document this promise.
14424         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
14425         * tests/test-hash.c (hash_compare_strings): Test this.
14426
14427 2009-06-18  Bruno Haible  <bruno@clisp.org>
14428
14429         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
14430         going to be replaced anyway.
14431
14432 2009-06-18  Bruno Haible  <bruno@clisp.org>
14433
14434         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
14435         in one place.
14436         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
14437         be replaced anyway.
14438
14439 2009-06-18  Eric Blake  <ebb9@byu.net>
14440
14441         hash: check for resize before insertion
14442         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
14443         threshold before insertion, so that a pathological hash_rehash
14444         that fills every bucket can still trigger another rehash.
14445
14446 2009-06-18  Jim Meyering  <meyering@redhat.com>
14447
14448         hash-tests: add a loop around the small tests
14449         * tests/test-hash.c (main): Repeat small tests with selected
14450         small initial table sizes.
14451
14452 2009-06-17  Eric Blake  <ebb9@byu.net>
14453
14454         hash: minor cleanups
14455         * lib/hash.h (hash_entry): Make opaque, by moving...
14456         * lib/hash.c (hash_entry): ...here.
14457         (hash_insert): Clarify restrictions on what can be inserted.
14458         (hash_get_next): Clarify when it is safe to remove an element
14459         during traversal.
14460         (check_tuning): Skip verification when tuning is known safe.
14461         (hash_initialize): Clarify restrictions on tuning.
14462
14463 2009-06-17  Jim Meyering  <jim@meyering.net>
14464         and Eric Blake  <ebb9@byu.net>
14465
14466         hash-tests: new module
14467         * modules/hash-tests: New file.
14468         * tests/test-hash.c: New file.
14469
14470 2009-06-17  Eric Blake  <ebb9@byu.net>
14471
14472         strstr-simple: document new module
14473         * MODULES.html.sh: Document new module.
14474
14475         strstr, strcasestr: replace on platforms with broken memchr
14476         * modules/strstr: Split into...
14477         * modules/strstr-simple: ...new module that does not care about
14478         performance, but does care about glibc bug.
14479         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
14480         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
14481         if platform memchr is broken, per Debian bug 521737.
14482         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
14483         memchr.
14484         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
14485         * doc/posix-functions/strstr.texi (strstr): Document the fix.
14486         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
14487         * modules/mountlist (Depends-on): Add strstr-simple.
14488         * modules/gen-uni-tables (Depends-on): Likewise.
14489         * modules/argz (Depends-on): Add strstr.
14490
14491 2009-06-17  Bruno Haible  <bruno@clisp.org>
14492
14493         * modules/posix_spawn-internal (Depends-on): Add errno.
14494
14495 2009-06-17  Bruno Haible  <bruno@clisp.org>
14496
14497         Define missing ESTALE on Interix 3.5.
14498         * lib/errno.in.h (ESTALE): Assign a value if missing.
14499         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
14500         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
14501         missing.
14502         * doc/posix-headers/errno.texi: Mention the Interix bug.
14503         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
14504
14505 2009-06-15  Eric Blake  <ebb9@byu.net>
14506
14507         memchr, memchr2: add valgrind exception
14508         * lib/memchr.valgrind: New file.
14509         * lib/memchr2.valgrind: New file.
14510         * modules/memchr (Files): Distribute valgrind file.
14511         * modules/memchr2 (Files): Likewise.
14512
14513         docs: memchr is no longer obsolete
14514         * MODULES.html.sh: Move memchr from obsolete to string.h section.
14515         * lib/string.in.h (memchr): Simplify logic.
14516
14517 2009-06-14  Jim Meyering  <meyering@redhat.com>
14518
14519         link-follow: fix the "checking..." message to not mention trailing slash
14520         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
14521         never considered trailing slashes.
14522
14523 2009-06-14  Bruno Haible  <bruno@clisp.org>
14524
14525         * m4/memchr.m4: Mention also the bug on IA-64.
14526         * doc/posix-functions/memchr.texi: Likewise.
14527
14528 2009-06-12  Eric Blake  <ebb9@byu.net>
14529
14530         memchr: detect broken x86_64 and alpha implementations
14531         * modules/memchr-tests (Depends-on): Move mmap detection...
14532         * modules/memchr (Depends-on): ...here.
14533         (configure.ac): Set indicator.
14534         * lib/string.in.h (memchr): Declare replacement.
14535         * modules/string (Makefile.am): Trigger replacement.
14536         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
14537         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
14538         bugs.
14539         * doc/posix-functions/memchr.texi (memchr): Document the bug.
14540         * modules/getpagesize (License): Relax license.
14541
14542 2009-06-11  Bruno Haible  <bruno@clisp.org>
14543
14544         * lib/idpriv.h: Add more references.
14545
14546 2009-06-08  Bruno Haible  <bruno@clisp.org>
14547
14548         Tests for module 'idpriv-droptemp'.
14549         * modules/idpriv-droptemp-tests: New file.
14550         * tests/test-idpriv-droptemp.sh: New file.
14551         * tests/test-idpriv-droptemp.su.sh: New file.
14552         * tests/test-idpriv-droptemp.c: New file.
14553
14554         New module 'idpriv-droptemp'.
14555         * lib/idpriv-droptemp.c: New file.
14556         * modules/idpriv-droptemp: New file.
14557
14558 2009-06-08  Bruno Haible  <bruno@clisp.org>
14559
14560         Tests for module 'idpriv-drop'.
14561         * modules/idpriv-drop-tests: New file.
14562         * tests/test-idpriv-drop.sh: New file.
14563         * tests/test-idpriv-drop.su.sh: New file.
14564         * tests/test-idpriv-drop.c: New file.
14565
14566         New module 'idpriv-drop'.
14567         * lib/idpriv.h: New file.
14568         * lib-idpriv-drop.c: New file.
14569         * m4/idpriv.m4: New file.
14570         * modules/idpriv-drop: New file.
14571
14572 2009-06-08  Bruno Haible  <bruno@clisp.org>
14573
14574         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
14575         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
14576         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
14577         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
14578         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
14579         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
14580         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
14581
14582 2009-06-08  Eric Blake  <ebb9@byu.net>
14583
14584         test-strstr: use memory fence, when possible
14585         * tests/test-strstr.c (main): Use memory fence, in order to be
14586         more likely to trigger Debian bug 521737.
14587         * modules/strstr-tests (Files): Pull in additional files.
14588
14589         memchr: no longer obsolete, for wider field testing
14590         * modules/memchr (Status, Notice): Delete, this module is no
14591         longer obsolete.
14592         * modules/vasnprintf (Depends-on): Add memchr.
14593
14594 2009-06-07  Jim Meyering  <meyering@redhat.com>
14595
14596         hash: declare some functions with the warn_unused_result attribute
14597         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
14598
14599 2009-06-07  Bruno Haible  <bruno@clisp.org>
14600
14601         * tests/test-alignof.c: Don't test int64_t if it does not exist.
14602         Reported by Eric Blake.
14603
14604 2009-06-06  Eric Blake  <ebb9@byu.net>
14605
14606         test-alignof: fix typo with long double
14607         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
14608         compiler error.
14609
14610 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
14611
14612         Escape non-texinfo { and }s.
14613         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
14614         markup error.
14615
14616 2009-06-04  Jim Meyering  <meyering@redhat.com>
14617
14618         gitlog-to-changelog: don't infloop on an empty commit log
14619         * build-aux/gitlog-to-changelog: Warn about an empty log message.
14620         Reported by Boris Petersen <transacid@centerim.org>.
14621
14622 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
14623
14624         version-etc: extend for packagers
14625         Add three new configure options, intended for packagers:
14626           --with-packager="packager name"
14627           --with-packager-version="packager-specific version"
14628           --with-packager-bug-reports="packager bug reporting"
14629         An example with coreutils:
14630           $ ./configure \
14631             --with-packager=Gentoo \
14632             --with-packager-bug-report=http://bugs.gentoo.org/ \
14633             --with-packager-version="patchset 1.6"
14634           $ ./src/ls --version | head -n2
14635           ls (GNU coreutils) 7.1-dirty
14636           Packaged by Gentoo (patchset 1.6)
14637         Note that the bug reporting info via --help doesn't show up because
14638         coreutils uses its own custom emit_bug_reporting_address() implementation
14639         in src/system.h.  If it didn't, it'd look like:
14640           $ ./src/ls --help | tail -n4
14641           Report bugs to <bug-coreutils@gnu.org>.
14642           Report Gentoo bugs to <http://bugs.gentoo.org/>.
14643           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
14644           General help using GNU software: <http://www.gnu.org/gethelp/>.
14645         * lib/version-etc.c: Print new information, if provided.
14646         * m4/version-etc.m4: New file.
14647         * modules/version-etc (Files): Add m4/version-etc.m4.
14648         (configure.ac): Add gl_VERSION_ETC.
14649
14650 2009-05-31  Bruno Haible  <bruno@clisp.org>
14651
14652         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
14653         and 'int64_t'.
14654         * modules/alignof-tests (Dependencies): Add stdint.
14655         Reported by Eric Blake.
14656
14657 2009-05-31  Bruno Haible  <bruno@clisp.org>
14658
14659         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
14660         restriction due to compiler bugs.
14661         Reported by Eric Blake.
14662
14663 2009-05-31  Simon Josefsson  <simon@josefsson.org>
14664             Bruno Haible  <bruno@clisp.org>
14665
14666         Fix test-alignof failure.
14667         * lib/alignof.h (alignof_slot): New macro.
14668         (alignof_type): New macro, with the same semantics as the previous
14669         'alignof'.
14670         (alignof): Alias to alignof_slot.
14671         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
14672         check that the results are usable as constant expressions.
14673
14674 2009-05-31  Bruno Haible  <bruno@clisp.org>
14675
14676         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
14677         * tests/test-memchr.c (main): Check that memchr does not read past the
14678         first occurrence of the byte.
14679         * tests/test-strstr.c (main): Update comment.
14680         Suggested by Eric Blake.
14681
14682 2009-05-30  Bruno Haible  <bruno@clisp.org>
14683
14684         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
14685         detail how to use dumpbin.
14686         Reported by David Byron <dbyron@dbyron.com>.
14687
14688 2009-06-02  Simon Josefsson  <simon@josefsson.org>
14689
14690         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
14691
14692 2009-06-02  Simon Josefsson  <simon@josefsson.org>
14693
14694         * m4/manywarnings.m4: Add GCC 4.4 warnings.
14695
14696 2009-05-28  Bruno Haible  <bruno@clisp.org>
14697
14698         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
14699         build-aux/ files.
14700
14701 2009-05-28  Simon Josefsson  <simon@josefsson.org>
14702
14703         * gnulib-tool (func_import): Transform license on build-aux/ files too.
14704
14705 2009-05-27  Simon Josefsson  <simon@josefsson.org>
14706
14707         * gnulib-tool (sed_transform_main_lib_file)
14708         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
14709         regexps.
14710
14711 2009-05-26  Simon Josefsson  <simon@josefsson.org>
14712
14713         * tests/test-strstr.c: Add another self-test.
14714         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
14715         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
14716
14717 2009-05-23  Bruno Haible  <bruno@clisp.org>
14718
14719         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
14720         change.
14721
14722 2009-05-21  Bruno Haible  <bruno@clisp.org>
14723
14724         Simplify use of mode_t varargs.
14725         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
14726         uses 'mode_t' or 'int'.
14727         * lib/openat.c (openat): Likewise.
14728         * lib/open-safer.c (open_safer): Likewise.
14729         * m4/mode_t.m4: New file.
14730         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
14731         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
14732         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
14733         * modules/open (Files): Add m4/mode_t.m4.
14734         * modules/openat (Files): Likewise.
14735         * modules/fcntl-safer (Files): Likewise.
14736         Suggested by Eric Blake.
14737
14738 2009-05-21  Pádraig Brady  <P@draigbrady.com>
14739
14740         * doc/glibc-functions/fallocate.texi: New file.
14741         * doc/gnulib.texi: Include it.
14742
14743 2009-05-21  Eric Blake  <ebb9@byu.net>
14744             Bruno Haible  <bruno@clisp.org>
14745
14746         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
14747         invocations.
14748         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
14749
14750 2009-05-21  Eric Blake  <ebb9@byu.net>
14751             Bruno Haible  <bruno@clisp.org>
14752
14753         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
14754         include_next. Fix of 2008-11-20 commit.
14755         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
14756         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
14757         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
14758         NEXT_MATH_H.
14759         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
14760         instead of NEXT_MATH_H.
14761
14762 2009-05-21  Bruno Haible  <bruno@clisp.org>
14763
14764         Avoid redefinition warnings for SIZE_MAX.
14765         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
14766         Reported by Simon Josefsson.
14767
14768 2009-05-21  Bruno Haible  <bruno@clisp.org>
14769
14770         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
14771         AC_CACHE_VAL.
14772
14773 2009-05-20  Bruno Haible  <bruno@clisp.org>
14774
14775         Make zeroptr.h work on mingw.
14776         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
14777         mprotect.
14778         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
14779         * modules/memchr2-tests (configure.ac): Likewise.
14780         * modules/memcmp-tests (configure.ac): Likewise.
14781         * modules/memmem-tests (configure.ac): Likewise.
14782         * modules/memrchr-tests (configure.ac): Likewise.
14783         Reported by Simon Josefsson.
14784
14785 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14786
14787         * tests/test-glob.c: Include string.h for strcmp prototype.
14788
14789 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14790
14791         * modules/getdelim (Depends-on): Add explicit stdint, although it
14792         was implicitly already pulled in via realloc-posix.
14793         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
14794
14795 2009-05-20  Simon Josefsson  <simon@josefsson.org>
14796
14797         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
14798         G. Christensen" <tgc@jupiterrise.com>.
14799         * m4/sys_socket_h.m4: Check for sa_family_t.
14800         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
14801         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
14802         * tests/test-sys_socket.c: Check that sa_family_t works.
14803
14804 2009-05-18  Eric Blake  <ebb9@byu.net>
14805
14806         maint.mk: allow gnulib_dir in VPATH build
14807         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
14808
14809 2009-05-15  Jim Meyering  <meyering@redhat.com>
14810
14811         maint.mk: Give gnulib_dir a default definition.
14812         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
14813         Thus, most packages no longer need to specify this variable in cfg.mk
14814
14815 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
14816
14817         rename.m4: fix typos that would make non-mingw cross-configure fail
14818         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
14819
14820 2009-05-13  Eric Blake  <ebb9@byu.net>
14821
14822         mmap-anon: avoid out-of-order autoconf expansion
14823         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
14824         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
14825         * modules/memchr-tests (Depends-on): Add extensions.
14826         * modules/memchr2-tests (Depends-on): Add extensions.
14827         * modules/memcmp-tests (Depends-on): Add extensions.
14828         * modules/memmem-tests (Depends-on): Add extensions.
14829         * modules/memrchr-tests (Depends-on): Add extensions.
14830
14831 2009-05-13  Bruno Haible  <bruno@clisp.org>
14832
14833         Make some tests ISO C 99 compliant.
14834         * tests/zerosize-ptr.h: New file.
14835         * tests/test-memchr.c: Include zerosize-ptr.h.
14836         (main): Use a zero-size object pointer instead of NULL.
14837         * tests/test-memchr2.c: Include zerosize-ptr.h.
14838         (main): Use a zero-size object pointer instead of NULL.
14839         * tests/test-memcmp.c: Include zerosize-ptr.h.
14840         (main): Use a zero-size object pointer instead of NULL.
14841         * tests/test-memmem.c: Include zerosize-ptr.h.
14842         (main): Use a zero-size object pointer instead of NULL.
14843         * tests/test-memrchr.c: Include zerosize-ptr.h.
14844         (main): Use a zero-size object pointer instead of NULL.
14845         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
14846         m4/mmap-anon.m4.
14847         (Depends-on): Add getpagesize.
14848         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14849         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
14850         m4/mmap-anon.m4.
14851         (Depends-on): Add getpagesize.
14852         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14853         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
14854         m4/mmap-anon.m4.
14855         (Depends-on): Add getpagesize.
14856         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14857         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
14858         m4/mmap-anon.m4.
14859         (Depends-on): Add getpagesize.
14860         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14861         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
14862         m4/mmap-anon.m4.
14863         (Depends-on): Add getpagesize.
14864         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
14865
14866 2009-05-12  Bruno Haible  <bruno@clisp.org>
14867
14868         Tests for module 'alignof'.
14869         * modules/alignof-tests: New file.
14870         * tests/test-alignof.c: New file.
14871
14872 2009-05-12  Bruno Haible  <bruno@clisp.org>
14873
14874         Fix alignof macro.
14875         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
14876         vendor compilers that are always correct.
14877
14878 2009-05-12  Bruno Haible  <bruno@clisp.org>
14879
14880         Make the MAP_ANONYMOUS detection work on HP-UX 11.
14881         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
14882         not whether its fully works.
14883
14884 2009-05-12  Bruno Haible  <bruno@clisp.org>
14885
14886         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
14887
14888 2009-05-12  Jim Meyering  <meyering@redhat.com>
14889
14890         * top/maint.mk: Adjust backslash alignment.
14891
14892 2009-05-11  Simon Josefsson  <simon@josefsson.org>
14893
14894         * top/maint.mk: Make $(srcdir)/build-aux configurable.
14895
14896 2009-05-11  Eric Blake  <ebb9@byu.net>
14897
14898         argp: avoid undefined behavior
14899         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
14900         macros.
14901
14902 2009-05-08  Simon Josefsson  <simon@josefsson.org>
14903
14904         * tests/test-vc-list-files-git.sh: Do git config of user.email and
14905         user.name to prevent git commit from complaining.
14906
14907 2009-05-10  Bruno Haible  <bruno@clisp.org>
14908
14909         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
14910         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
14911         it rewrites every file name only once.
14912         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
14913
14914 2009-05-08  Bruno Haible  <bruno@clisp.org>
14915
14916         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
14917         instead of 'max'.
14918
14919 2009-05-08  Simon Josefsson  <simon@josefsson.org>
14920
14921         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
14922         sockaddr_storage test.
14923
14924 2009-05-07  Simon Josefsson  <simon@josefsson.org>
14925
14926         * modules/sys_socket (Makefile.am): Substitute
14927         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
14928         * m4/sys_socket_h.m4: Check for sockaddr_storage.
14929         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
14930         * tests/test-sys_socket.c: Check sockaddr_storage.
14931
14932 2009-05-08  Bruno Haible  <bruno@clisp.org>
14933
14934         New module 'alignof'.
14935         * lib/alignof.h: New file.
14936         * modules/alignof: New file.
14937
14938 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14939             Bruno Haible  <bruno@clisp.org>
14940
14941         Fix test-file-has-acl on FreeBSD.
14942         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
14943         mask is implicitly added.
14944         * tests/test-file-has-acl.c: Include <signal.h>.
14945         (main): Terminate the test after 5 seconds.
14946         * modules/acl-tests (configure.ac): Check for alarm function.
14947
14948 2009-05-04  Bruno Haible  <bruno@clisp.org>
14949
14950         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
14951         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
14952         * modules/errno (configure.ac): Drop AC_REQUIRE.
14953         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
14954         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
14955
14956 2009-05-04  Simon Josefsson  <simon@josefsson.org>
14957
14958         * modules/glob-tests: New module.
14959         * tests/test-glob.c: Add.
14960
14961 2009-05-04  Simon Josefsson  <simon@josefsson.org>
14962
14963         * modules/fnmatch-tests: New module.
14964         * tests/test-fnmatch.c: Add.
14965
14966 2009-05-04  Eric Blake  <ebb9@byu.net>
14967
14968         maint: make the new no-submodule-changes rule VPATH-safe
14969         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
14970
14971 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14972             Bruno Haible  <bruno@clisp.org>
14973
14974         acl: Fix infinite loop on FreeBSD.
14975         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
14976         of return value from acl_get_entry.
14977         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
14978         Likewise.
14979
14980 2009-05-03  Bruno Haible  <bruno@clisp.org>
14981
14982         * lib/acl-internal.h (acl_entries): Clarify return value.
14983         * lib/acl_entries.c (acl_entries): Likewise.
14984
14985 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
14986
14987         Bug fix in acl module.
14988         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
14989
14990 2009-05-03  Bruno Haible  <bruno@clisp.org>
14991
14992         Create gperf-generated file in the source dir, not in the build dir.
14993         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
14994         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
14995         * modules/unicase/locale-language (unicase/locale-languages.h):
14996         Likewise.
14997         * modules/unicase/special-casing (unicase/special-casing-table.h):
14998         Likewise.
14999         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
15000         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
15001         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
15002         Reported by Ralf Wildenhues.
15003
15004 2009-05-03  Bruno Haible  <bruno@clisp.org>
15005
15006         * modules/fnmatch (Description, configure.ac): Taken from
15007         fnmatch-posix.
15008         * modules/fnmatch-posix: Turn into a symbolic reference to the
15009         'fnmatch' module, and deprecate.
15010         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
15011
15012 2009-05-03  Bruno Haible  <bruno@clisp.org>
15013
15014         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
15015         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
15016         Reported by Ralf Wildenhues.
15017
15018 2009-05-04  Simon Josefsson  <simon@josefsson.org>
15019
15020         * m4/fnmatch.m4: Fix fnmatch re-define.
15021
15022 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
15023
15024         priv-set: new module and tests; adapt write-any-file
15025         * lib/priv-set.c: New file.
15026         * lib/priv-set.h: New file.
15027         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
15028         * lib/write-any-file.c: Simplify by using priv-set module.
15029         * m4/priv-set.m4: New file.
15030         * modules/priv-set: New file.
15031         * modules/unlinkdir: Add dependency on priv-set module.
15032         * modules/write-any-file: Likewise.
15033
15034         Tests for module 'priv-set'.
15035         * modules/priv-set-tests: New file.
15036         * tests/test-priv-set.c: New file.
15037
15038 2009-05-03  Jim Meyering  <meyering@redhat.com>
15039             Bruno Haible  <bruno@clisp.org>
15040
15041         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
15042         use the converted UTF-8 variant of the name instead.
15043
15044 2009-05-03  Jim Meyering  <meyering@redhat.com>
15045
15046         tests: tighten some getdate tests
15047         * tests/test-getdate.c (main): Tighten tests: require equality,
15048         not just greater than.  Set TZ envvar to UTC0.
15049
15050 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
15051
15052         getdate: correctly interpret "next monday" when run on a Monday
15053         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
15054         that e.g., "next tues" (when run on a tuesday) results in a date
15055         that is one week in the future, and not today's date.
15056         I.e., add a week when the wday is the same as the current one.
15057         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
15058         and earlier by Martin Bernreuther and Jan Minář.
15059         * tests/test-getdate.c (main): Check that "next DAY" is always in
15060         the future and that "last DAY" is always in the past.
15061
15062 2009-05-02  Jim Meyering  <meyering@redhat.com>
15063
15064         build: ensure that a release build fails when a submodule is unclean
15065         * top/maint.mk (no-submodule-changes): New rule.
15066         (alpha beta major): Depend on it.
15067
15068 2009-05-02  Bruno Haible  <bruno@clisp.org>
15069
15070         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
15071         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
15072         shell variable gl_fnmatch_required to detect which variant is
15073         requested.
15074         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
15075         gl_FUNC_FNMATCH_POSIX.
15076         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
15077         exclude fnmatch-posix.
15078
15079 2009-05-02  Bruno Haible  <bruno@clisp.org>
15080
15081         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
15082         * modules/mbsrtowcs (License): Change to LGPLv2+.
15083         * modules/strnlen1 (License): Likewise.
15084         Reported by Simon Josefsson.
15085
15086 2009-05-02  Bruno Haible  <bruno@clisp.org>
15087
15088         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
15089         "cross".
15090         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
15091         gnulib-tool was called with option --source-base=lib.
15092
15093 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15094
15095         Use automake *-local hooks without commands, for extensibility.
15096         * modules/localcharset (Makefile.am): Rename install-exec-local
15097         rule to install-exec-localcharset, and make it a prerequisite of
15098         install-exec-local.  Likewise, rename the uninstall-local rule to
15099         uninstall-localcharset, and make it a prerequisite of the former.
15100
15101 2009-05-01  Bruno Haible  <bruno@clisp.org>
15102
15103         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
15104         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
15105         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
15106         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
15107         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
15108         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
15109         m4/locale-zh.m4, m4/codeset.m4.
15110
15111         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
15112         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
15113         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
15114         m4/locale-zh.m4.
15115
15116         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
15117         REPLACE_WCRTOMB if mbstate_t must be replaced.
15118         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
15119         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
15120
15121 2009-05-01  Bruno Haible  <bruno@clisp.org>
15122
15123         Avoid compiler warnings when redefining macros defined by <libintl.h>.
15124         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
15125         dngettext, dcngettext, textdomain, bindtextdomain,
15126         bind_textdomain_codeset): Undefine before redefining.
15127
15128 2009-04-30  Bruno Haible  <bruno@clisp.org>
15129
15130         Fix bug introduced on 2009-04-25.
15131         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
15132         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
15133         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
15134         is defined.
15135         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
15136         is defined.
15137         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
15138         is defined.
15139         Reported by Elbert_Pol <elbert.pol@gmail.com>.
15140
15141 2009-04-28  Bruno Haible  <bruno@clisp.org>
15142
15143         Comment tweaks.
15144         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
15145         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
15146         * lib/unicase.h (u*_casexfrm): Likewise.
15147         Reported by Paolo Bonzini.
15148
15149 2009-04-28  Bruno Haible  <bruno@clisp.org>
15150
15151         Fix a compilation error.
15152         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
15153         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
15154         Reported by Jim Meyering.
15155
15156 2009-04-27  Bruno Haible  <bruno@clisp.org>
15157
15158         New module 'libunistring'.
15159         * modules/libunistring: New file.
15160         * m4/libunistring.m4: New file.
15161         * MODULES.html.sh (Unicode string functions): Add it.
15162
15163 2009-04-27  Eric Blake  <ebb9@byu.net>
15164
15165         maint.mk: allow package-specific header to provide <config.h>
15166         * top/maint.mk (sc_require_config_h): New variable.
15167         (sc_require_config_h, sc_require_config_h_first): Use it.
15168
15169 2009-04-27  Simon Josefsson  <simon@josefsson.org>
15170
15171         * top/maint.mk (sc_avoid_if_before_free): Except
15172         useless-if-before-free script.
15173
15174 2009-04-27  Eric Blake  <ebb9@byu.net>
15175
15176         maintainer-makefile: depend on all required helper scripts
15177         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
15178         useless-if-before-free.
15179         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
15180         version, rather than assuming gnulib checkout is available.
15181         Reported by Simen Josefsson.
15182
15183 2009-04-26  Bruno Haible  <bruno@clisp.org>
15184
15185         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
15186         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
15187         "../" or "..".
15188
15189 2009-04-26  Bruno Haible  <bruno@clisp.org>
15190
15191         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
15192         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
15193         AC_LIB_HAVE_LINKFLAGS.
15194
15195 2009-04-26  Bruno Haible  <bruno@clisp.org>
15196
15197         Simplify calling convention of u*_conv_from_encoding.
15198         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
15199         u32_conv_from_encoding): Expect a resultbuf argument and return the
15200         result directly as a pointer.
15201         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
15202         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
15203         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
15204         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
15205         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
15206         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
15207         Update.
15208         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
15209         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
15210         * lib/vasnprintf.c (VASNPRINTF): Update.
15211         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
15212         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
15213         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
15214         * NEWS: Mention the change.
15215
15216 2009-04-26  Bruno Haible  <bruno@clisp.org>
15217
15218         Simplify calling convention of u*_conv_to_encoding.
15219         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
15220         u32_conv_to_encoding): Expect a resultbuf argument and return the
15221         result directly as a pointer.
15222         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
15223         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
15224         freeing scaled_offsets if mem_iconveha failed.
15225         * lib/unicase/u-casexfrm.h (FUNC): Update.
15226         * lib/uninorm/u-normxfrm.h (FUNC): Update.
15227         * lib/vasnprintf.c (VASNPRINTF): Update.
15228         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
15229         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
15230         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
15231         * NEWS: Mention the change.
15232
15233 2009-04-26  Bruno Haible  <bruno@clisp.org>
15234
15235         Avoid test failures on AIX and OSF/1.
15236         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
15237         malloc(0).
15238         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
15239         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
15240         Likewise.
15241         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
15242         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
15243         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
15244         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
15245         * doc/posix-functions/malloc.texi: Document the portability problem
15246         related to malloc(0).
15247
15248 2009-04-26  Bruno Haible  <bruno@clisp.org>
15249
15250         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
15251         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
15252         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
15253
15254 2009-04-25  Bruno Haible  <bruno@clisp.org>
15255
15256         Avoid link error when creating a namespace clean library.
15257         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
15258         as macro with arguments if already defined as an alias.
15259         * lib/signbitf.c (gl_signbitf): Don't undefine.
15260         * lib/signbitd.c (gl_signbitd): Don't undefine.
15261         * lib/signbitl.c (gl_signbitl): Don't undefine.
15262
15263 2009-04-25  Jim Meyering  <meyering@redhat.com>
15264
15265         vc-list-files: fix another quoting bug
15266         * build-aux/vc-list-files: Avoid sed backslash expansion
15267         of pathological directory names.
15268
15269 2009-04-25  Eric Blake  <ebb9@byu.net>
15270
15271         vc-list-files: fix shell quoting error
15272         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
15273         timestamp.
15274
15275 2009-04-25  Jim Meyering  <meyering@redhat.com>
15276
15277         vc-list-files: restore lost functionality with subdir argument
15278         * build-aux/vc-list-files: When given a non-"." sub-directory
15279         argument, substitute the $dir/ prefix back onto each resulting name.
15280         Otherwise, coreutils' root_tests check would fail.
15281
15282 2009-04-24  Eric Blake  <ebb9@byu.net>
15283
15284         vc-list-files: ignore git symlinks
15285         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
15286         than ls-files, to ignore git symlinks.
15287
15288         maint.mk: import improvements from m4
15289         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
15290         (move_if_change): Delete unused macro.
15291         (news-date-check, vc-diff-check): Support VPATH builds.
15292         (announcement): Likewise.  Split --bootstrap-tools list...
15293         (boostrap-tools): ...into separate list, which can be overridden
15294         in cfg.mk.
15295         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
15296         requiring dependency on useless-if-before-free module.
15297         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
15298         Support VPATH builds.
15299
15300 2009-04-24  Jim Meyering  <meyering@redhat.com>
15301
15302         maint.mk: remove coreutils-specific rules and variables
15303         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
15304         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
15305         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
15306
15307         maint.mk: remove obsolete rule
15308         * top/maint.mk (rel-check): Remove rule.
15309         (WGET, WGETFLAGS): Remove now-unused variables.
15310
15311 2009-04-24  Simon Josefsson  <simon@josefsson.org>
15312
15313         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
15314         consistency.
15315
15316         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
15317         '$(PATH_SEPARATOR)' instead of ':'.
15318
15319 2009-04-24  Simon Josefsson  <simon@josefsson.org>
15320
15321         * lib/getopt1.c (main): Use 'const' for static array.
15322
15323 2009-04-24  Simon Josefsson  <simon@josefsson.org>
15324
15325         * top/maint.mk: Sync with coreutils.
15326         * NEWS: Explain incompatibilities.
15327
15328 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15329             Bruno Haible  <bruno@clisp.org>
15330
15331         Fix cross-compilation results.
15332         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
15333         statement, as third argument of AC_TRY_RUN.
15334         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
15335         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
15336         Likewise.
15337         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
15338         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
15339         Likewise.
15340         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
15341         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
15342         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
15343
15344 2009-04-20  Bruno Haible  <bruno@clisp.org>
15345
15346         Avoid test failure on mingw.
15347         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
15348
15349 2009-04-20  Bruno Haible  <bruno@clisp.org>
15350
15351         Avoid compilation error on mingw.
15352         * modules/localename-tests (Depends-on): Add locale.
15353
15354 2009-04-19  Bruno Haible  <bruno@clisp.org>
15355
15356         Support for building a shared library on Windows platforms.
15357         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
15358         (main): Test the presence of UNINORM_NFC here.
15359         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
15360         (main): Test the presence of UNINORM_NFD here.
15361         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
15362         (main): Test the presence of UNINORM_NFKC here.
15363         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
15364         (main): Test the presence of UNINORM_NFKD here.
15365
15366 2009-04-19  Bruno Haible  <bruno@clisp.org>
15367
15368         Avoid a compiler warning.
15369         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
15370         Change type of variable 'sequence'.
15371
15372 2009-04-19  Bruno Haible  <bruno@clisp.org>
15373
15374         * modules/configmake (Makefile.am): When the contents of configmake.h
15375         does not change, arrange to preserve its modification time.
15376
15377 2009-04-17  Simon Josefsson  <simon@josefsson.org>
15378
15379         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
15380         gettext domain.
15381
15382 2009-04-16  Jim Meyering  <meyering@redhat.com>
15383
15384         useless-if-before-free: improve conversion code
15385         * build-aux/useless-if-before-free: Adjust code-in-comment to match
15386         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
15387
15388 2009-04-14  Bruno Haible  <bruno@clisp.org>
15389
15390         * modules/fcntl (Depends-on): Add extensions.
15391         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
15392
15393 2009-04-12  Ben Pfaff  <blp@gnu.org>
15394
15395         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
15396         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
15397
15398 2009-03-20  Ben Pfaff  <blp@gnu.org>
15399
15400         Make rename replace existing destinations on Windows.
15401         * m4/rename.m4: Add test for Mingw.
15402         * lib/rename.c: Add rename replacement that uses MoveFileEx with
15403         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
15404         * doc/posix-functions/rename.texi: Document.
15405
15406 2009-04-10  Bruno Haible  <bruno@clisp.org>
15407
15408         New include file "iconveh.h".
15409         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
15410         * lib/striconveh.h: Include it.
15411         (enum iconv_ilseq_handler): Remove definition.
15412         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
15413         striconveh.h.
15414         * lib/striconveha.c: Include striconveh.h.
15415         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
15416         * modules/striconveh (Files): Add lib/iconveh.h.
15417         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
15418         lib/striconveh.h.
15419
15420 2009-04-10  Bruno Haible  <bruno@clisp.org>
15421
15422         * lib/uniconv.h: Update comment.
15423
15424 2009-04-10  Bruno Haible  <bruno@clisp.org>
15425
15426         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
15427         always.
15428         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
15429         * lib/unistr/u16-mbtouc-aux.c: Likewise.
15430         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
15431         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
15432         "unistring-notinline.h", so that the function gets defined always.
15433         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
15434         * lib/unistr/u8-uctomb.c: Likewise.
15435         * lib/unistr/u16-mbtouc.c: Likewise.
15436         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
15437         * lib/unistr/u16-uctomb.c: Likewise.
15438         * lib/unistr/u32-mbtouc.c: Likewise.
15439         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
15440         * lib/unistr/u32-uctomb.c: Likewise.
15441
15442 2009-04-10  Bruno Haible  <bruno@clisp.org>
15443
15444         Mark 'utime' obsolete.
15445         * modules/utime (Status, Notice): New sections.
15446         Suggested by Jim Meyering.
15447
15448         Fix cross-compile guess for utime test.
15449         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
15450         autoconf.
15451         * doc/posix-functions/utime.texi: Give more precisions.
15452         Reported by Jan <ipif@ymail.com>.
15453
15454 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
15455
15456         filevercmp: correct today's change
15457         * lib/filevercmp.c: Also handle coreutils' test inputs.
15458         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
15459
15460         Fix regression in 'filevercmp' module. Thanks Sven Joachim
15461         for reporting it.
15462         * lib/filevercmp.c: Special handle for "", "." and "..".
15463         * tests/test-filevercmp.c: Enlarge the set suite.
15464
15465 2009-04-07  Jim Meyering  <meyering@redhat.com>
15466
15467         useless-if-before-free: show how to remove braced useless free, too
15468         * build-aux/useless-if-before-free: still only in a comment, though.
15469
15470 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
15471
15472         maint.mk: import changes to syntax-check macros from coreutils
15473         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
15474         Use them in the relevant macros.
15475
15476 2009-04-06  Bruno Haible  <bruno@clisp.org>
15477
15478         Fix unportable use of bit-fields.
15479         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
15480         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
15481         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
15482
15483 2009-04-06  Bruno Haible  <bruno@clisp.org>
15484
15485         Avoid test failures on AIX and OSF/1.
15486         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
15487         that malloc(0) = NULL.
15488         * tests/unicase/test-u8-tolower.c (check): Likewise.
15489         * tests/unicase/test-u8-totitle.c (check): Likewise.
15490         * tests/unicase/test-u8-toupper.c (check): Likewise.
15491         * tests/unicase/test-u16-casefold.c (check): Likewise.
15492         * tests/unicase/test-u16-tolower.c (check): Likewise.
15493         * tests/unicase/test-u16-totitle.c (check): Likewise.
15494         * tests/unicase/test-u16-toupper.c (check): Likewise.
15495         * tests/unicase/test-u32-casefold.c (check): Likewise.
15496         * tests/unicase/test-u32-tolower.c (check): Likewise.
15497         * tests/unicase/test-u32-totitle.c (check): Likewise.
15498         * tests/unicase/test-u32-toupper.c (check): Likewise.
15499         * tests/uninorm/test-u8-nfc.c (check): Likewise.
15500         * tests/uninorm/test-u8-nfd.c (check): Likewise.
15501         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
15502         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
15503         * tests/uninorm/test-u16-nfc.c (check): Likewise.
15504         * tests/uninorm/test-u16-nfd.c (check): Likewise.
15505         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
15506         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
15507         * tests/uninorm/test-u32-nfc.c (check): Likewise.
15508         * tests/uninorm/test-u32-nfd.c (check): Likewise.
15509         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
15510         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
15511
15512 2009-04-05  Bruno Haible  <bruno@clisp.org>
15513
15514         Work around an autoconf limitation.
15515         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
15516         comment line if it would be longer than 3 KB.
15517
15518 2009-04-05  Bruno Haible  <bruno@clisp.org>
15519
15520         Avoid test failure with libiconv-1.13.
15521         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
15522         of the expected test results.
15523
15524 2009-04-05  Bruno Haible  <bruno@clisp.org>
15525
15526         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
15527         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
15528         that it should be installed.
15529
15530 2009-04-05  Bruno Haible  <bruno@clisp.org>
15531
15532         * gnulib-tool: New option --copy-file.
15533         (func_usage): Document it.
15534         (func_dest_tmpfilename): Moved out of func_import.
15535         (func_add_file, func_update_file): New functions, extracted from
15536         func_import.
15537         (func_import): Update.
15538
15539 2009-04-05  Karl Berry  <karl@gnu.org>
15540
15541         * README: prominently mention gnulib-tool.
15542         Rearrange sections so getting the code is near the top.
15543
15544 2009-04-05  Bruno Haible  <bruno@clisp.org>
15545
15546         * lib/unicase.h: Mention u*_cmp2.
15547         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
15548         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
15549         * lib/unicase/ulc-casecmp.c: Likewise.
15550         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
15551         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
15552         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
15553         unistr/u8-cmp.
15554         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
15555         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
15556         unistr/u16-cmp.
15557         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
15558         unistr/u32-cmp.
15559
15560         * lib/uninorm.h: Mention u*_cmp2.
15561         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
15562         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
15563         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
15564         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
15565         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
15566         unistr/u8-cmp.
15567         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
15568         unistr/u16-cmp.
15569         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
15570         unistr/u32-cmp.
15571
15572         New module 'unistr/u32-cmp2'.
15573         * lib/unistr/u32-cmp2.c: New file.
15574         * modules/unistr/u32-cmp2: New file.
15575
15576         New module 'unistr/u16-cmp2'.
15577         * lib/unistr/u16-cmp2.c: New file.
15578         * modules/unistr/u16-cmp2: New file.
15579
15580         New module 'unistr/u8-cmp2'.
15581         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
15582         * lib/unistr/u8-cmp2.c: New file.
15583         * lib/unistr/u-cmp2.h: New file.
15584         * modules/unistr/u8-cmp2: New file.
15585
15586 2009-04-05  Bruno Haible  <bruno@clisp.org>
15587
15588         * lib/unictype.h (uc_property_is_valid): New macro.
15589         * tests/unictype/test-pr_byname.c (main): Use it.
15590
15591         * lib/unistr.h: Doc fixes.
15592         * lib/uniconv.h: Doc fixes.
15593         * lib/unictype.h: Doc fixes.
15594
15595 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
15596
15597         Port coreutils 7.2 to Solaris 8.
15598
15599         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
15600         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
15601         for Solaris 8.  This is a bit of a hack, as it means it's the
15602         caller's responsibility to add -lnsl if needed, but most likely it
15603         won't be needed since only getaddrinfo uses this and getaddrinfo
15604         isn't needed on Solaris 8.
15605
15606         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
15607         problem to Solaris 8 encountered with coreutils 7.2, which
15608         resulted in a message "fnmatch.c:292: warning: passing argument 4
15609         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
15610         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
15611
15612 2009-04-03  Simon Josefsson  <simon@josefsson.org>
15613
15614         * m4/ld-version-script.m4: Add FIXME comment.
15615
15616 2009-04-02  Simon Josefsson  <simon@josefsson.org>
15617
15618         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
15619         SOVERSION variable.
15620
15621 2009-04-02  Bruno Haible  <bruno@clisp.org>
15622
15623         * Makefile (info, html, dvi, pdf): Combine the rules.
15624         Suggested by Jim Meyering.
15625
15626 2009-04-01  Bruno Haible  <bruno@clisp.org>
15627
15628         * Makefile (info, html, dvi, pdf): New targets.
15629         Reported by Reuben Thomas <rrt@sc3d.org>.
15630
15631 2009-04-01  Bruno Haible  <bruno@clisp.org>
15632
15633         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
15634         can be put into PATH.
15635         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
15636
15637 2009-04-01  Bruno Haible  <bruno@clisp.org>
15638
15639         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
15640
15641 2009-04-01  Bruno Haible  <bruno@clisp.org>
15642
15643         Rename module 'visibility'.
15644         * modules/lib-symbol-visibility: Renamed from modules/visibility.
15645         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
15646         * doc/gnulib.texi: Update.
15647         * MODULES.html.sh (Misc): Update.
15648         * NEWS: Mention the change.
15649
15650 2009-04-01  Simon Josefsson  <simon@josefsson.org>
15651
15652         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
15653         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
15654         Eric Blake <ebb9@byu.net> for review.
15655         * MODULES.html.sh: Add lib-msvc-compat.
15656         * doc/gnulib.texi: Link to new section.
15657         * m4/ld-output-def.m4: New file.
15658         * doc/ld-output-def.texi: New file.
15659
15660 2009-04-01  Simon Josefsson  <simon@josefsson.org>
15661
15662         Rename ld-version-script to lib-symbol-versions.  Suggested by
15663         Bruno Haible <bruno@clisp.org>.
15664         * modules/ld-version-script: Renamed to lib-symbol-versions.
15665         * doc/ld-version-script.texi: Fix module name.
15666         * MODULES.html.sh: Add lib-symbol-versions.
15667
15668 2009-03-31  Simon Josefsson  <simon@josefsson.org>
15669
15670         * modules/u64-tests: New file.
15671         * tests/test-u64.c: New file.
15672
15673 2009-03-04  Simon Josefsson  <simon@josefsson.org>
15674
15675         * MODULES.html.sh: Mention u64.
15676         * modules/u64: New module.
15677         * modules/crypto/sha512: Depend on u64 module instead of providing
15678         u64.h.
15679
15680 2009-03-27  Eric Blake  <ebb9@byu.net>
15681
15682         test-strerror: make debugging EAI_SYSTEM easier
15683         * modules/getaddrinfo-tests (Depends-on): Add strerror.
15684         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
15685         failure was EAI_SYSTEM.
15686
15687 2009-03-25  Bruno Haible  <bruno@clisp.org>
15688
15689         Fix a problem with --enable-relocatable on Solaris 7.
15690         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
15691         since 2008-02-24.
15692
15693 2009-03-25  Eric Blake  <ebb9@byu.net>
15694
15695         test-sockets: avoid gcc warning
15696         * tests/test-sockets.c (main): Silence compiler warning.
15697
15698 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
15699
15700         New modules nproc, pthread, contributed by Glen Lenker.
15701
15702         * MODULES.html.sh: Add pthread, nproc.
15703         * lib/nproc.c: New file.
15704         * lib/nproc.h: New file.
15705         * lib/pthread.in.h: New file.
15706         * m4/pthread.m4: New file.
15707         * modules/nproc: New file.
15708         * modules/pthread: New file.
15709
15710 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15711
15712         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
15713         New variable.
15714
15715 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
15716
15717         filevercmp: handle simple~ and numbered.~3~ backup suffixes
15718         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
15719         * tests/test-filevercmp.c: Add tests for backup suffixes.
15720
15721 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15722
15723         * modules/stdlib (Depends-on): Add stdint, needed when defining
15724         struct random_data on, for example, HP-UX 10.20.  Reported by
15725         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15726
15727 2009-03-24  Simon Josefsson  <simon@josefsson.org>
15728
15729         * lib/readline.c (readline): Call fflush on stdout after printing
15730         prompt.
15731
15732 2009-03-20  Bruno Haible  <bruno@clisp.org>
15733
15734         Remove dependency from 'close' module to -lws2_32 on native Windows.
15735         * lib/close-hook.h: New file.
15736         * lib/close-hook.c: New file.
15737         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
15738         w32sock.h.
15739         (_gl_close_fd_maybe_socket): Remove function.
15740         (rpl_close): Invoke execute_all_close_hooks instead of
15741         _gl_close_fd_maybe_socket.
15742         * lib/sockets.c: Include close-hook.h, w32sock.h.
15743         (close_fd_maybe_socket): New function, essentially from lib/close.c.
15744         (close_sockets_hook): New variable.
15745         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
15746         (gl_sockets_cleanup): Unregister it.
15747         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
15748         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
15749         * modules/close-hook: New file.
15750         * modules/close (Files): Remove lib/w32sock.h.
15751         (Depends-on): Add close-hook.
15752         (Link): Remove section.
15753         * modules/sockets (Files): Add lib/w32sock.h.
15754         (Depends-on): Add close-hook.
15755         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
15756         invocation.
15757         * NEWS: Mention that LIB_CLOSE is gone.
15758
15759 2009-03-23  Eric Blake  <ebb9@byu.net>
15760
15761         signal-tests: test previous patch
15762         * tests/test-signal.c: New file.
15763         * modules/signal-tests: Likewise.
15764
15765         signal.h: always support 'volatile sig_atomic_t'
15766         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
15767         (gl_SIGNAL_H_DEFAULTS): Add a default.
15768         * modules/signal (Makefile.am): Substitute if needed.
15769         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
15770         users can blindly add volatile.
15771         * doc/posix-headers/signal.texi (signal.h): Document it.
15772         Reported by Matthew Woehlke.
15773
15774 2009-03-23  Jim Meyering  <meyering@redhat.com>
15775
15776         pathmax: PATH_MAX: use pathconf only when available
15777         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
15778         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
15779         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
15780         This avoids a link failure in a PSP cross-compilation environment
15781         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
15782
15783         * lib/vasnprintf.c (divide): Fix typo in comment.
15784
15785 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15786
15787         * gnulib-tool (func_filter_filelist): Fix comment.
15788
15789 2009-03-20  Bruno Haible  <bruno@clisp.org>
15790
15791         Make sockets.h self-contained.
15792         * lib/sockets.c: Include sockets.h first.
15793         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
15794
15795 2009-03-19  Eric Blake  <ebb9@byu.net>
15796
15797         doc: mention more functions added in cygwin 1.7.0
15798         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
15799         addition.
15800         * doc/posix-functions/log2f.texi: Likewise.
15801
15802 2009-03-19  Jim Meyering  <meyering@redhat.com>
15803
15804         fsusage: avoid syntax error due to statement-before-declaration
15805         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
15806         after all declarations.  Reported by Matthew Woehlke in
15807         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
15808
15809 2009-03-18  Eric Blake  <ebb9@byu.net>
15810
15811         build-aux/compile: sync from automake
15812         * build-aux/compile: New file, from automake.
15813         * config/srclist.txt: Mention build-aux/compile.
15814
15815 2009-03-17  Bruno Haible  <bruno@clisp.org>
15816
15817         * lib/git-merge-changelog.c: Fix typo in comment.
15818         Reported by Reuben Thomas <rrt@sc3d.org>.
15819
15820 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
15821
15822         * m4/regex.m4: update and improve help for
15823         --without-included-regex.
15824
15825 2009-03-17  Simon Josefsson  <simon@josefsson.org>
15826
15827         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
15828         failure on missing include files.
15829
15830 2009-03-17  Eric Blake  <ebb9@byu.net>
15831
15832         doc: mention more functions added in cygwin 1.7.0
15833         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
15834         addition.
15835         * doc/posix-functions/fwscanf.texi: Likewise.
15836         * doc/posix-functions/swprintf.texi: Likewise.
15837         * doc/posix-functions/swscanf.texi: Likewise.
15838         * doc/posix-functions/vfwprintf.texi: Likewise.
15839         * doc/posix-functions/vfwscanf.texi: Likewise.
15840         * doc/posix-functions/vswprintf.texi: Likewise.
15841         * doc/posix-functions/vswscanf.texi: Likewise.
15842         * doc/posix-functions/vwprintf.texi: Likewise.
15843         * doc/posix-functions/vwscanf.texi: Likewise.
15844         * doc/posix-functions/wcscasecmp.texi: Likewise.
15845         * doc/posix-functions/wcsdup.texi: Likewise.
15846         * doc/posix-functions/wcsftime.texi: Likewise.
15847         * doc/posix-functions/wcsncasecmp.texi: Likewise.
15848         * doc/posix-functions/wprintf.texi: Likewise.
15849         * doc/posix-functions/wscanf.texi: Likewise.
15850         * doc/glibc-functions/gethostbyname2.texi: Likewise.
15851
15852 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15853
15854         maint.mk: really add $(AM_MAKEFLAGS)
15855         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
15856         was inadvertently omitted in the last commit.
15857         Spotted by Bruno Haible.
15858
15859         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
15860         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
15861         $(AM_MAKEFLAGS)' rather than plain `make'.
15862
15863         gnulib-tool: execute $MAKE not make
15864         * gnulib-tool: Default $MAKE to 'make'.
15865         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
15866         than make.  Initialize $MAKE in the do-autobuild script.
15867
15868         gnulib-tool: use $MAKE not make in generated files
15869         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
15870         make, in generated files.  Initialize $MAKE in the do-autobuild
15871         script.
15872
15873         * top/GNUmakefile (_have-git-version-gen): Fix typo.
15874
15875         GNUmakefile: disable parallelism only for multiple, recursive targets
15876         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
15877         additions in the Makefile.
15878         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
15879         by Automake.
15880         (.NOTPARALLEL): Only disable parallel builds if multiple targets
15881         are listed on the command line and at least one of them is
15882         listed in $(ALL_RECURSIVE_TARGETS).
15883
15884 2009-03-14  Bruno Haible  <bruno@clisp.org>
15885
15886         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
15887         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
15888         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
15889         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
15890         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
15891         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
15892         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
15893         unistr/u8-uctomb.
15894         * modules/unistr/u8-strchr (Depends-on): Likewise.
15895         * modules/unistr/u8-strrchr (Depends-on): Likewise.
15896         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
15897         unistr/u16-uctomb.
15898         * modules/unistr/u16-strchr (Depends-on): Likewise.
15899         * modules/unistr/u16-strrchr (Depends-on): Likewise.
15900
15901 2009-03-12  Bruno Haible  <bruno@clisp.org>
15902
15903         Work around select() bug on Interix 3.5.
15904         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
15905         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
15906         * m4/select.m4: New file.
15907         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
15908         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
15909         * modules/select (Files): Add m4/select.m4.
15910         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
15911         * modules/nanosleep (Depends-on): Add select.
15912         * modules/poll (Depends-on): Likewise.
15913         * doc/posix-functions/select.texi: Mention the Interix bug.
15914         Reported by Markus Duft <mduft@gentoo.org>.
15915
15916         * lib/select.c: Renamed from lib/winsock-select.c.
15917         * modules/select (Files): Add lib/select.c, remove
15918         lib/winsock-select.c.
15919         (configure.ac): Update.
15920
15921 2009-03-12  Jim Meyering  <meyering@redhat.com>
15922
15923         avoid gcc warnings about unused macro definitions
15924         * lib/readtokens.c (STREQ): Remove unused definition.
15925         * lib/xmalloc.c (SIZE_MAX): Likewise.
15926         * lib/openat-die.c (N_): Likewise.
15927         * lib/mountlist.c (SIZE_MAX): Remove definition.
15928         Instead, include <stdint.h>.
15929         * lib/readutmp.c: Likewise.
15930         * modules/readutmp (Depends-on): Add stdint.
15931         * modules/mountlist (Depends-on): Add stdint.
15932         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
15933
15934 2009-03-10  Bruno Haible  <bruno@clisp.org>
15935
15936         Tests for module 'mbmemcasecoll'.
15937         * modules/mbmemcasecoll-tests: New file.
15938         * tests/test-mbmemcasecoll1.sh: New file.
15939         * tests/test-mbmemcasecoll2.sh: New file.
15940         * tests/test-mbmemcasecoll3.sh: New file.
15941         * tests/test-mbmemcasecoll.c: New file.
15942
15943         New module 'mbmemcasecoll'.
15944         * lib/mbmemcasecoll.h: New file.
15945         * lib/mbmemcasecoll.c: New file.
15946         * modules/mbmemcasecoll: New file.
15947
15948         * tests/test-mbmemcasecmp.h: New file, extracted from
15949         tests/test-mbmemcasecmp.c.
15950         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
15951         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
15952         (main): Update.
15953         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
15954
15955 2009-03-09  Bruno Haible  <bruno@clisp.org>
15956
15957         Tests for module 'mbmemcasecmp'.
15958         * modules/mbmemcasecmp-tests: New file.
15959         * tests/test-mbmemcasecmp1.sh: New file.
15960         * tests/test-mbmemcasecmp2.sh: New file.
15961         * tests/test-mbmemcasecmp3.sh: New file.
15962         * tests/test-mbmemcasecmp.c: New file.
15963
15964         New module 'mbmemcasecmp'.
15965         * lib/mbmemcasecmp.h: New file.
15966         * lib/mbmemcasecmp.c: New file.
15967         * modules/mbmemcasecmp: New file.
15968
15969 2009-03-09  Bruno Haible  <bruno@clisp.org>
15970
15971         Tests for module 'unicase/ulc-casecoll'.
15972         * modules/unicase/ulc-casecoll-tests: New file.
15973         * tests/unicase/test-ulc-casecoll1.sh: New file.
15974         * tests/unicase/test-ulc-casecoll2.sh: New file.
15975         * tests/unicase/test-ulc-casecoll.c: New file.
15976
15977         New module 'unicase/ulc-casecoll'.
15978         * lib/unicase.h (ulc_casecoll): New declaration.
15979         * lib/unicase/ulc-casecoll.c: New file.
15980         * modules/unicase/ulc-casecoll: New file.
15981
15982         New module 'unicase/ulc-casexfrm'.
15983         * lib/unicase.h (ulc_casexfrm): New declaration.
15984         * lib/unicase/ulc-casexfrm.c: New file.
15985         * modules/unicase/ulc-casexfrm: New file.
15986
15987 2009-03-09  Bruno Haible  <bruno@clisp.org>
15988
15989         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
15990         invocations.
15991
15992         * m4/mbscasecmp.m4: Remove file.
15993         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
15994         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
15995
15996         * m4/mbscasestr.m4: Remove file.
15997         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
15998         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
15999
16000         * m4/mbschr.m4: Remove file.
16001         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
16002         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
16003
16004         * m4/mbscspn.m4: Remove file.
16005         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
16006         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
16007
16008         * m4/mbslen.m4: Remove file.
16009         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
16010         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
16011
16012         * m4/mbsncasecmp.m4: Remove file.
16013         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
16014         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
16015
16016         * m4/mbsnlen.m4: Remove file.
16017         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
16018         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
16019
16020         * m4/mbspbrk.m4: Remove file.
16021         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
16022         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
16023
16024         * m4/mbspcasecmp.m4: Remove file.
16025         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
16026         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
16027
16028         * m4/mbsrchr.m4: Remove file.
16029         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
16030         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
16031
16032         * m4/mbssep.m4: Remove file.
16033         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
16034         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
16035
16036         * m4/mbsspn.m4: Remove file.
16037         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
16038         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
16039
16040         * m4/mbsstr.m4: Remove file.
16041         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
16042         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
16043
16044         * m4/mbstok_r.m4: Remove file.
16045         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
16046         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
16047
16048         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
16049
16050         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
16051         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
16052
16053         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
16054
16055 2009-03-08  Bruno Haible  <bruno@clisp.org>
16056
16057         Tests for module 'unicase/ulc-casecmp'.
16058         * modules/unicase/ulc-casecmp-tests: New file.
16059         * tests/unicase/test-ulc-casecmp1.sh: New file.
16060         * tests/unicase/test-ulc-casecmp2.sh: New file.
16061         * tests/unicase/test-ulc-casecmp.c: New file.
16062
16063         New module 'unicase/ulc-casecmp'.
16064         * lib/unicase.h (ulc_casecmp): New declaration.
16065         * lib/unicase/ulc-casecmp.c: New file.
16066         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
16067         'const SRC_UNIT *'.
16068         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
16069         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
16070         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
16071         * modules/unicase/ulc-casecmp: New file.
16072
16073         Tests for module 'unicase/u32-is-cased'.
16074         * modules/unicase/u32-is-cased-tests: New file.
16075         * tests/unicase/test-u32-is-cased.c: New file.
16076
16077         Tests for module 'unicase/u16-is-cased'.
16078         * modules/unicase/u16-is-cased-tests: New file.
16079         * tests/unicase/test-u16-is-cased.c: New file.
16080
16081         Tests for module 'unicase/u8-is-cased'.
16082         * modules/unicase/u8-is-cased-tests: New file.
16083         * tests/unicase/test-u8-is-cased.c: New file.
16084         * tests/unicase/test-is-cased.h: New file.
16085
16086         New module 'unicase/u32-is-cased'.
16087         * lib/unicase/u32-is-cased.c: New file.
16088         * modules/unicase/u32-is-cased: New file.
16089
16090         New module 'unicase/u16-is-cased'.
16091         * lib/unicase/u16-is-cased.c: New file.
16092         * modules/unicase/u16-is-cased: New file.
16093
16094         New module 'unicase/u8-is-cased'.
16095         * lib/unicase/u8-is-cased.c: New file.
16096         * lib/unicase/u-is-cased.h: New file.
16097         * modules/unicase/u8-is-cased: New file.
16098
16099         Tests for module 'unicase/u32-is-casefolded'.
16100         * modules/unicase/u32-is-casefolded-tests: New file.
16101         * tests/unicase/test-u32-is-casefolded.c: New file.
16102
16103         Tests for module 'unicase/u16-is-casefolded'.
16104         * modules/unicase/u16-is-casefolded-tests: New file.
16105         * tests/unicase/test-u16-is-casefolded.c: New file.
16106
16107         Tests for module 'unicase/u8-is-casefolded'.
16108         * modules/unicase/u8-is-casefolded-tests: New file.
16109         * tests/unicase/test-u8-is-casefolded.c: New file.
16110         * tests/unicase/test-is-casefolded.h: New file.
16111
16112         New module 'unicase/u32-is-casefolded'.
16113         * lib/unicase/u32-is-casefolded.c: New file.
16114         * modules/unicase/u32-is-casefolded: New file.
16115
16116         New module 'unicase/u16-is-casefolded'.
16117         * lib/unicase/u16-is-casefolded.c: New file.
16118         * modules/unicase/u16-is-casefolded: New file.
16119
16120         New module 'unicase/u8-is-casefolded'.
16121         * lib/unicase/u8-is-casefolded.c: New file.
16122         * modules/unicase/u8-is-casefolded: New file.
16123
16124         Tests for module 'unicase/u32-is-titlecase'.
16125         * modules/unicase/u32-is-titlecase-tests: New file.
16126         * tests/unicase/test-u32-is-titlecase.c: New file.
16127
16128         Tests for module 'unicase/u16-is-titlecase'.
16129         * modules/unicase/u16-is-titlecase-tests: New file.
16130         * tests/unicase/test-u16-is-titlecase.c: New file.
16131
16132         Tests for module 'unicase/u8-is-titlecase'.
16133         * modules/unicase/u8-is-titlecase-tests: New file.
16134         * tests/unicase/test-u8-is-titlecase.c: New file.
16135         * tests/unicase/test-is-titlecase.h: New file.
16136
16137         New module 'unicase/u32-is-titlecase'.
16138         * lib/unicase/u32-is-titlecase.c: New file.
16139         * modules/unicase/u32-is-titlecase: New file.
16140
16141         New module 'unicase/u16-is-titlecase'.
16142         * lib/unicase/u16-is-titlecase.c: New file.
16143         * modules/unicase/u16-is-titlecase: New file.
16144
16145         New module 'unicase/u8-is-titlecase'.
16146         * lib/unicase/u8-is-titlecase.c: New file.
16147         * modules/unicase/u8-is-titlecase: New file.
16148
16149         Tests for module 'unicase/u32-is-lowercase'.
16150         * modules/unicase/u32-is-lowercase-tests: New file.
16151         * tests/unicase/test-u32-is-lowercase.c: New file.
16152
16153         Tests for module 'unicase/u16-is-lowercase'.
16154         * modules/unicase/u16-is-lowercase-tests: New file.
16155         * tests/unicase/test-u16-is-lowercase.c: New file.
16156
16157         Tests for module 'unicase/u8-is-lowercase'.
16158         * modules/unicase/u8-is-lowercase-tests: New file.
16159         * tests/unicase/test-u8-is-lowercase.c: New file.
16160         * tests/unicase/test-is-lowercase.h: New file.
16161
16162         New module 'unicase/u32-is-lowercase'.
16163         * lib/unicase/u32-is-lowercase.c: New file.
16164         * modules/unicase/u32-is-lowercase: New file.
16165
16166         New module 'unicase/u16-is-lowercase'.
16167         * lib/unicase/u16-is-lowercase.c: New file.
16168         * modules/unicase/u16-is-lowercase: New file.
16169
16170         New module 'unicase/u8-is-lowercase'.
16171         * lib/unicase/u8-is-lowercase.c: New file.
16172         * modules/unicase/u8-is-lowercase: New file.
16173
16174         Tests for module 'unicase/u32-is-uppercase'.
16175         * modules/unicase/u32-is-uppercase-tests: New file.
16176         * tests/unicase/test-u32-is-uppercase.c: New file.
16177
16178         Tests for module 'unicase/u16-is-uppercase'.
16179         * modules/unicase/u16-is-uppercase-tests: New file.
16180         * tests/unicase/test-u16-is-uppercase.c: New file.
16181
16182         Tests for module 'unicase/u8-is-uppercase'.
16183         * modules/unicase/u8-is-uppercase-tests: New file.
16184         * tests/unicase/test-u8-is-uppercase.c: New file.
16185         * tests/unicase/test-is-uppercase.h: New file.
16186
16187         New module 'unicase/u32-is-uppercase'.
16188         * lib/unicase/u32-is-uppercase.c: New file.
16189         * modules/unicase/u32-is-uppercase: New file.
16190
16191         New module 'unicase/u16-is-uppercase'.
16192         * lib/unicase/u16-is-uppercase.c: New file.
16193         * modules/unicase/u16-is-uppercase: New file.
16194
16195         New module 'unicase/u8-is-uppercase'.
16196         * lib/unicase/u8-is-uppercase.c: New file.
16197         * modules/unicase/u8-is-uppercase: New file.
16198
16199         New module 'unicase/u32-is-invariant'.
16200         * lib/unicase/u32-is-invariant.c: New file.
16201         * modules/unicase/u32-is-invariant: New file.
16202
16203         New module 'unicase/u16-is-invariant'.
16204         * lib/unicase/u16-is-invariant.c: New file.
16205         * modules/unicase/u16-is-invariant: New file.
16206
16207         New module 'unicase/u8-is-invariant'.
16208         * lib/unicase/u8-is-invariant.c: New file.
16209         * lib/unicase/invariant.h: New file.
16210         * lib/unicase/u-is-invariant.h: New file.
16211         * modules/unicase/u8-is-invariant: New file.
16212
16213         Tests for module 'unicase/u32-casecoll'.
16214         * modules/unicase/u32-casecoll-tests: New file.
16215         * tests/unicase/test-u32-casecoll.c: New file.
16216
16217         Tests for module 'unicase/u16-casecoll'.
16218         * modules/unicase/u16-casecoll-tests: New file.
16219         * tests/unicase/test-u16-casecoll.c: New file.
16220
16221         Tests for module 'unicase/u8-casecoll'.
16222         * modules/unicase/u8-casecoll-tests: New file.
16223         * tests/unicase/test-u8-casecoll.c: New file.
16224
16225         New module 'unicase/u32-casecoll'.
16226         * lib/unicase/u32-casecoll.c: New file.
16227         * modules/unicase/u32-casecoll: New file.
16228
16229         New module 'unicase/u16-casecoll'.
16230         * lib/unicase/u16-casecoll.c: New file.
16231         * modules/unicase/u16-casecoll: New file.
16232
16233         New module 'unicase/u8-casecoll'.
16234         * lib/unicase/u8-casecoll.c: New file.
16235         * lib/unicase/u-casecoll.h: New file.
16236         * modules/unicase/u8-casecoll: New file.
16237
16238         New module 'unicase/u32-casexfrm'.
16239         * lib/unicase/u32-casexfrm.c: New file.
16240         * modules/unicase/u32-casexfrm: New file.
16241
16242         New module 'unicase/u16-casexfrm'.
16243         * lib/unicase/u16-casexfrm.c: New file.
16244         * modules/unicase/u16-casexfrm: New file.
16245
16246         New module 'unicase/u8-casexfrm'.
16247         * lib/unicase/u8-casexfrm.c: New file.
16248         * lib/unicase/u-casexfrm.h: New file.
16249         * modules/unicase/u8-casexfrm: New file.
16250
16251         Tests for module 'unicase/u32-casecmp'.
16252         * modules/unicase/u32-casecmp-tests: New file.
16253         * tests/unicase/test-u32-casecmp.c: New file.
16254
16255         Tests for module 'unicase/u16-casecmp'.
16256         * modules/unicase/u16-casecmp-tests: New file.
16257         * tests/unicase/test-u16-casecmp.c: New file.
16258
16259         Tests for module 'unicase/u8-casecmp'.
16260         * modules/unicase/u8-casecmp-tests: New file.
16261         * tests/unicase/test-u8-casecmp.c: New file.
16262         * tests/unicase/test-casecmp.h: New file.
16263
16264         New module 'unicase/u32-casecmp'.
16265         * lib/unicase/u32-casecmp.c: New file.
16266         * modules/unicase/u32-casecmp: New file.
16267
16268         New module 'unicase/u16-casecmp'.
16269         * lib/unicase/u16-casecmp.c: New file.
16270         * modules/unicase/u16-casecmp: New file.
16271
16272         New module 'unicase/u8-casecmp'.
16273         * lib/unicase/u8-casecmp.c: New file.
16274         * lib/unicase/u-casecmp.h: New file.
16275         * modules/unicase/u8-casecmp: New file.
16276
16277         Tests for module 'unicase/u32-casefold'.
16278         * modules/unicase/u32-casefold-tests: New file.
16279         * tests/unicase/test-u32-casefold.c: New file.
16280
16281         Tests for module 'unicase/u16-casefold'.
16282         * modules/unicase/u16-casefold-tests: New file.
16283         * tests/unicase/test-u16-casefold.c: New file.
16284
16285         Tests for module 'unicase/u8-casefold'.
16286         * modules/unicase/u8-casefold-tests: New file.
16287         * tests/unicase/test-u8-casefold.c: New file.
16288
16289         New module 'unicase/u32-casefold'.
16290         * lib/unicase/u32-casefold.c: New file.
16291         * modules/unicase/u32-casefold: New file.
16292
16293         New module 'unicase/u16-casefold'.
16294         * lib/unicase/u16-casefold.c: New file.
16295         * modules/unicase/u16-casefold: New file.
16296
16297         New module 'unicase/u8-casefold'.
16298         * lib/unicase/u8-casefold.c: New file.
16299         * lib/unicase/u-casefold.h: New file.
16300         * modules/unicase/u8-casefold: New file.
16301
16302         New module 'unicase/tocasefold'.
16303         * lib/unicase/casefold.h: New file.
16304         * lib/unicase/tocasefold.c: New file.
16305         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
16306         * modules/unicase/tocasefold: New file.
16307
16308         Tests for module 'unicase/u32-totitle'.
16309         * modules/unicase/u32-totitle-tests: New file.
16310         * tests/unicase/test-u32-totitle.c: New file.
16311
16312         Tests for module 'unicase/u16-totitle'.
16313         * modules/unicase/u16-totitle-tests: New file.
16314         * tests/unicase/test-u16-totitle.c: New file.
16315
16316         Tests for module 'unicase/u8-totitle'.
16317         * modules/unicase/u8-totitle-tests: New file.
16318         * tests/unicase/test-u8-totitle.c: New file.
16319
16320         New module 'unicase/u32-totitle'.
16321         * lib/unicase/u32-totitle.c: New file.
16322         * modules/unicase/u32-totitle: New file.
16323
16324         New module 'unicase/u16-totitle'.
16325         * lib/unicase/u16-totitle.c: New file.
16326         * modules/unicase/u16-totitle: New file.
16327
16328         New module 'unicase/u8-totitle'.
16329         * lib/unicase/u8-totitle.c: New file.
16330         * lib/unicase/u-totitle.h: New file.
16331         * modules/unicase/u8-totitle: New file.
16332
16333         Tests for module 'unicase/u32-tolower'.
16334         * modules/unicase/u32-tolower-tests: New file.
16335         * tests/unicase/test-u32-tolower.c: New file.
16336
16337         Tests for module 'unicase/u16-tolower'.
16338         * modules/unicase/u16-tolower-tests: New file.
16339         * tests/unicase/test-u16-tolower.c: New file.
16340
16341         Tests for module 'unicase/u8-tolower'.
16342         * modules/unicase/u8-tolower-tests: New file.
16343         * tests/unicase/test-u8-tolower.c: New file.
16344
16345         New module 'unicase/u32-tolower'.
16346         * lib/unicase/u32-tolower.c: New file.
16347         * modules/unicase/u32-tolower: New file.
16348
16349         New module 'unicase/u16-tolower'.
16350         * lib/unicase/u16-tolower.c: New file.
16351         * modules/unicase/u16-tolower: New file.
16352
16353         New module 'unicase/u8-tolower'.
16354         * lib/unicase/u8-tolower.c: New file.
16355         * modules/unicase/u8-tolower: New file.
16356
16357         Tests for module 'unicase/u32-toupper'.
16358         * modules/unicase/u32-toupper-tests: New file.
16359         * tests/unicase/test-u32-toupper.c: New file.
16360
16361         Tests for module 'unicase/u16-toupper'.
16362         * modules/unicase/u16-toupper-tests: New file.
16363         * tests/unicase/test-u16-toupper.c: New file.
16364
16365         Tests for module 'unicase/u8-toupper'.
16366         * modules/unicase/u8-toupper-tests: New file.
16367         * tests/unicase/test-u8-toupper.c: New file.
16368
16369         New module 'unicase/u32-toupper'.
16370         * lib/unicase/u32-toupper.c: New file.
16371         * modules/unicase/u32-toupper: New file.
16372
16373         New module 'unicase/u16-toupper'.
16374         * lib/unicase/u16-toupper.c: New file.
16375         * modules/unicase/u16-toupper: New file.
16376
16377         New module 'unicase/u8-toupper'.
16378         * lib/unicase/u8-toupper.c: New file.
16379         * modules/unicase/u8-toupper: New file.
16380
16381         New module 'unicase/u32-casemap'.
16382         * lib/unicase/u32-casemap.c: New file.
16383         * modules/unicase/u32-casemap: New file.
16384
16385         New module 'unicase/u16-casemap'.
16386         * lib/unicase/u16-casemap.c: New file.
16387         * modules/unicase/u16-casemap: New file.
16388
16389         New module 'unicase/u8-casemap'.
16390         * lib/unicase/unicasemap.h: New file.
16391         * lib/unicase/u8-casemap.c: New file.
16392         * lib/unicase/u-casemap.h: New file.
16393         * modules/unicase/u8-casemap: New file.
16394
16395         New module 'unicase/special-casing'.
16396         * lib/unicase/special-casing.h: New file.
16397         * lib/unicase/special-casing.c: New file.
16398         * lib/unicase/special-casing-table.gperf: New file, generated by
16399         gen-uni-tables.c.
16400         * modules/unicase/special-casing: New file.
16401
16402         Tests for module 'unicase/locale-language'.
16403         * modules/unicase/locale-language-tests: New file.
16404         * tests/unicase/test-locale-language.sh: New file.
16405         * tests/unicase/test-locale-language.c: New file.
16406
16407         New module 'unicase/locale-language'.
16408         * lib/unicase/locale-language.c: New file.
16409         * lib/unicase/locale-languages.gperf: New file.
16410         * modules/unicase/locale-language: New file.
16411
16412         Generate more tables for case conversion and case folding.
16413         * lib/gen-uni-tables.c (SCC_*): New enum items.
16414         (struct special_casing_rule): New type.
16415         (casing_rules, num_casing_rules, allocated_casing_rules): New
16416         variables.
16417         (add_casing_rule, fill_casing_rules): New functions.
16418         (struct casefold_rule): New type.
16419         (casefolding_rules, num_casefolding_rules,
16420         allocated_casefolding_rules): New variables.
16421         (fill_casefolding_rules): New function.
16422         (unicode_casefold): New variable.
16423         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
16424         sort_casing_rules, output_casing_rules): New functions.
16425         (main): Accept to more arguments: SpecialCasing.txt and
16426         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
16427         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
16428         Output mapping for casefolding.
16429
16430         * lib/unicase.h: Include stdbool.h, uninorm.h.
16431         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
16432         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
16433         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
16434         arguments.
16435         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
16436         resultp arguments.
16437         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
16438         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
16439         resultp arguments.
16440         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
16441         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
16442         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
16443         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
16444         declarations.
16445         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
16446
16447 2009-03-08  Bruno Haible  <bruno@clisp.org>
16448
16449         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
16450         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
16451         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
16452         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
16453
16454 2009-03-07  Bruno Haible  <bruno@clisp.org>
16455
16456         Adjust u*_normcmp, u*_normcoll API.
16457         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
16458         u16_normcoll, u32_normcoll): Change failure conventions.
16459         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
16460         errno and return -1.
16461         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
16462
16463 2009-03-07  Bruno Haible  <bruno@clisp.org>
16464
16465         Tests for module 'uninorm/u32-normcoll'.
16466         * modules/uninorm/u32-normcoll-tests: New file.
16467         * tests/uninorm/test-u32-normcoll.c: New file.
16468
16469         Tests for module 'uninorm/u16-normcoll'.
16470         * modules/uninorm/u16-normcoll-tests: New file.
16471         * tests/uninorm/test-u16-normcoll.c: New file.
16472
16473         Tests for module 'uninorm/u8-normcoll'.
16474         * modules/uninorm/u8-normcoll-tests: New file.
16475         * tests/uninorm/test-u8-normcoll.c: New file.
16476
16477 2009-03-07  Bruno Haible  <bruno@clisp.org>
16478
16479         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
16480         tests/uninorm/test-u32-normcmp.c.
16481         * tests/uninorm/test-u32-normcmp.c: Include it.
16482         (test_nonascii): New function, extracted from main. Add some more
16483         tests.
16484         (main): Invoke test_ascii and test_nonascii.
16485         * modules/uninorm/u32-normcmp-tests (Files): Add
16486         tests/uninorm/test-u32-normcmp.h.
16487         (Depends-on): Remove uninorm/u32-normcmp.
16488
16489         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
16490         tests/uninorm/test-u16-normcmp.c.
16491         * tests/uninorm/test-u16-normcmp.c: Include it.
16492         (test_nonascii): New function, extracted from main. Add some more
16493         tests.
16494         (main): Invoke test_ascii and test_nonascii.
16495         * modules/uninorm/u16-normcmp-tests (Files): Add
16496         tests/uninorm/test-u16-normcmp.h.
16497         (Depends-on): Remove uninorm/u16-normcmp.
16498
16499         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
16500         tests/uninorm/test-u8-normcmp.c.
16501         * tests/uninorm/test-u8-normcmp.c: Include it.
16502         (test_nonascii): New function, extracted from main. Add some more
16503         tests.
16504         (main): Invoke test_ascii and test_nonascii.
16505         * modules/uninorm/u8-normcmp-tests (Files): Add
16506         tests/uninorm/test-u8-normcmp.h.
16507         (Depends-on): Remove uninorm/u8-normcmp.
16508
16509 2009-03-07  Bruno Haible  <bruno@clisp.org>
16510
16511         New module 'uninorm/u32-normcoll'.
16512         * lib/uninorm/u32-normcoll.c: New file.
16513         * modules/uninorm/u32-normcoll: New file.
16514
16515         New module 'uninorm/u16-normcoll'.
16516         * lib/uninorm/u16-normcoll.c: New file.
16517         * modules/uninorm/u16-normcoll: New file.
16518
16519         New module 'uninorm/u8-normcoll'.
16520         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
16521         declarations.
16522         * lib/uninorm/u8-normcoll.c: New file.
16523         * lib/uninorm/u-normcoll.h: New file.
16524         * modules/uninorm/u8-normcoll: New file.
16525
16526         New module 'uninorm/u32-normxfrm'.
16527         * lib/uninorm/u32-normxfrm.c: New file.
16528         * modules/uninorm/u32-normxfrm: New file.
16529
16530         New module 'uninorm/u16-normxfrm'.
16531         * lib/uninorm/u16-normxfrm.c: New file.
16532         * modules/uninorm/u16-normxfrm: New file.
16533
16534         New module 'uninorm/u8-normxfrm'.
16535         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
16536         declarations.
16537         * lib/uninorm/u8-normxfrm.c: New file.
16538         * lib/uninorm/u-normxfrm.h: New file.
16539         * modules/uninorm/u8-normxfrm: New file.
16540
16541 2009-03-07  Bruno Haible  <bruno@clisp.org>
16542
16543         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
16544         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
16545         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
16546
16547 2009-03-07  Bruno Haible  <bruno@clisp.org>
16548
16549         New module 'memxfrm'.
16550         * lib/memxfrm.h: New file.
16551         * lib/memxfrm.c: New file.
16552         * modules/memxfrm: New file.
16553
16554 2009-03-07  Bruno Haible  <bruno@clisp.org>
16555
16556         New module 'memcmp2'.
16557         * lib/memcmp2.h: New file.
16558         * lib/memcmp2.c: New file.
16559         * modules/memcmp2: New file.
16560
16561 2009-03-07  Bruno Haible  <bruno@clisp.org>
16562
16563         Tests for module 'uninorm/decomposing-form'.
16564         * modules/uninorm/decomposing-form-tests: New file.
16565         * tests/uninorm/test-decomposing-form.c: New file.
16566
16567         New module 'uninorm/decomposing-form'.
16568         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
16569         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
16570         Add 'decomposing_variant' field.
16571         * lib/uninorm/decomposing-form.c: New file.
16572         * lib/uninorm/nfc.c (uninorm_nfc): Update.
16573         * lib/uninorm/nfd.c (uninorm_nfd): Update.
16574         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
16575         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
16576         * modules/uninorm/decomposing-form: New file.
16577         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
16578         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
16579
16580 2009-03-07  Bruno Haible  <bruno@clisp.org>
16581
16582         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
16583         strings.
16584
16585 2009-03-06  Bruno Haible  <bruno@clisp.org>
16586
16587         Tests for module 'uninorm/u32-normcmp'.
16588         * tests/uninorm/test-u32-normcmp.c: New file.
16589         * modules/uninorm/u32-normcmp-tests: New file.
16590
16591         Tests for module 'uninorm/u16-normcmp'.
16592         * tests/uninorm/test-u16-normcmp.c: New file.
16593         * modules/uninorm/u16-normcmp-tests: New file.
16594
16595         Tests for module 'uninorm/u8-normcmp'.
16596         * tests/uninorm/test-u8-normcmp.c: New file.
16597         * modules/uninorm/u8-normcmp-tests: New file.
16598
16599         New module 'uninorm/u32-normcmp'.
16600         * lib/uninorm/u32-normcmp.c: New file.
16601         * modules/uninorm/u32-normcmp: New file.
16602
16603         New module 'uninorm/u16-normcmp'.
16604         * lib/uninorm/u16-normcmp.c: New file.
16605         * modules/uninorm/u16-normcmp: New file.
16606
16607         New module 'uninorm/u8-normcmp'.
16608         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
16609         declarations.
16610         * lib/uninorm/u8-normcmp.c: New file.
16611         * lib/uninorm/u-normcmp.h: New file.
16612         * modules/uninorm/u8-normcmp: New file.
16613
16614 2009-03-06  Bruno Haible  <bruno@clisp.org>
16615
16616         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
16617         Reported by Eric Blake.
16618
16619 2009-03-06  Eric Blake  <ebb9@byu.net>
16620             Bruno Haible  <bruno@clisp.org>
16621
16622         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
16623         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
16624         condition.
16625         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
16626         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
16627         condition.
16628         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
16629
16630 2009-03-06  Eric Blake  <ebb9@byu.net>
16631
16632         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
16633         to avoid compiler warnings.
16634         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
16635
16636 2009-03-05  Bruno Haible  <bruno@clisp.org>
16637
16638         * tests/test-ftell.c (main): Disable test beyond end of file on
16639         FreeMiNT.
16640         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
16641
16642 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
16643
16644         * lib/filevercmp.c: Move hidden files up in ordering.
16645         * tests/test-filevercmp.c: Add tests for hidden files.
16646
16647 2009-03-04  Bruno Haible  <bruno@clisp.org>
16648
16649         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
16650         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
16651         AM_CFLAGS.
16652         Reported by Simon Josefsson.
16653
16654 2009-03-03  Bruno Haible  <bruno@clisp.org>
16655
16656         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
16657         Reported by Simon Josefsson.
16658
16659         * doc/ld-version-script.texi: Update node reference.
16660
16661 2009-03-03  Bruno Haible  <bruno@clisp.org>
16662
16663         * modules/visibility (License): Change to 'unlimited'.
16664         Suggested by Simon Josefsson.
16665
16666 2009-03-03  Jim Meyering  <meyering@redhat.com>
16667
16668         unlinkdir: cannot_unlink_dir may modify process state
16669         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
16670         it's neither thread-safe nor appropriate for use in a library.
16671
16672 2009-03-03  Eric Blake  <ebb9@byu.net>
16673
16674         test-closein: silence test under Darwin
16675         * tests/test-closein.sh: Ignore stderr from cat, since we don't
16676         care if it dies from EPIPE or EBADF.
16677
16678 2009-03-03  Bruno Haible  <bruno@clisp.org>
16679
16680         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
16681         earlier.
16682         * doc/visibility.texi: Fix @node and @section.
16683
16684 2009-03-03  Simon Josefsson  <simon@josefsson.org>
16685
16686         * doc/gnulib.texi: Link to sections for ld version script and
16687         visibility.
16688         * doc/visibility.texi: Add @node and @section.
16689         * modules/ld-version-script: New module.
16690         * m4/ld-version-script.m4: New file.
16691         * doc/ld-version-script.texi: New file.
16692
16693 2009-03-02  David Lutterkort  <lutter@redhat.com>
16694
16695         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
16696         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
16697
16698 2009-03-02  Bruno Haible  <bruno@clisp.org>
16699
16700         * doc/visibility.texi: Mention libtool's -export-symbols option.
16701
16702 2009-03-02  Jim Meyering  <meyering@redhat.com>
16703
16704         announce-gen: new option: --no-print-checksums
16705         * build-aux/announce-gen (usage): Describe it.
16706         (print_checksums): Print a newline here, not in the [*] footnote.
16707         (main): Honor it.
16708
16709 2009-03-01  Bruno Haible  <bruno@clisp.org>
16710
16711         Use socklen_t in the native Windows replacements prototypes.
16712         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
16713         instead of 'int'.
16714         * lib/getsockopt.c (rpl_getsockopt): Likewise.
16715         * lib/setsockopt.c (rpl_setsockopt): Likewise.
16716         * modules/getsockopt (Depends-on): Add socklen.
16717         * modules/setsockopt (Depends-on): Add socklen.
16718
16719 2009-03-01  Bruno Haible  <bruno@clisp.org>
16720
16721         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
16722         least 4.2.
16723
16724 2009-03-01  Eric Blake  <ebb9@byu.net>
16725             Bruno Haible  <bruno@clisp.org>
16726
16727         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
16728         error messages.
16729         * lib/wait-process.c (wait_subprocess): Omit error message about
16730         deadly signal sent to the child of termsigp != NULL.
16731
16732 2009-03-01  Eric Blake  <ebb9@byu.net>
16733
16734         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
16735
16736 2009-03-01  Bruno Haible  <bruno@clisp.org>
16737
16738         Avoid a gcc warning.
16739         * tests/test-sched.c (b): Make global.
16740         Reported by Eric Blake.
16741
16742 2009-01-19  Martin Lambers  <marlam@marlam.de>
16743
16744         Provide POSIX semantics for socket timeout options on W32.
16745         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
16746         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
16747         * modules/setsockopt: Depend on sys_time module for struct timeval.
16748         * modules/getsockopt: Depend on sys_time module for struct timeval.
16749
16750 2009-03-01  Simon Josefsson  <simon@josefsson.org>
16751
16752         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
16753         __USE_GNU, for consistency with netdb.in.h.
16754         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16755
16756 2009-03-01  Bruno Haible  <bruno@clisp.org>
16757
16758         More support for FreeMiNT.
16759         * lib/fseeko.c (rpl_fseeko): Complete last commit.
16760         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16761
16762 2009-03-01  Bruno Haible  <bruno@clisp.org>
16763
16764         More support for FreeMiNT.
16765         * lib/fpurge.c (fpurge): Correct last commit.
16766         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16767
16768 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16769
16770         Fix unportable awk script in vc-list-files.
16771         * build-aux/vc-list-files: In the replacement awk script, use
16772         substr with a second argument of 1, not zero.
16773         Report by Simon Josefsson.
16774
16775 2009-02-28  Bruno Haible  <bruno@clisp.org>
16776
16777         More support for FreeMiNT.
16778         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
16779         to FreeMiNT today.
16780         * lib/fwriting.c (fwriting): Likewise.
16781         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
16782
16783 2009-02-28  Bruno Haible  <bruno@clisp.org>
16784
16785         * tests/test-freadseek.c (main): Disable test beyond end of file on
16786         FreeMiNT.
16787         * tests/test-ftello.c (main): Likewise.
16788         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
16789
16790 2009-02-28  Bruno Haible  <bruno@clisp.org>
16791
16792         Add tentative support for FreeMiNT.
16793         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
16794         * lib/fpurge.c (fpurge): Likewise.
16795         * lib/freadable.c (freadable): Likewise.
16796         * lib/freading.c (freading): Likewise.
16797         * lib/freadptr.c (freadptr): Likewise.
16798         * lib/freadseek.c (freadptrinc): Likewise.
16799         * lib/fseeko.c (rpl_fseeko): Likewise.
16800         * lib/fseterr.c (fseterr): Likewise.
16801         * lib/fwritable.c (fwritable): Likewise.
16802         * lib/fwriting.c (fwriting): Likewise.
16803         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
16804         Hourihane.
16805         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16806
16807 2009-02-28  Bruno Haible  <bruno@clisp.org>
16808
16809         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
16810         SIGCHLD.
16811         Reported by Jim Meyering.
16812
16813 2009-02-28  Bruno Haible  <bruno@clisp.org>
16814
16815         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
16816         Mention the results of these tests on various platforms.
16817         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
16818         order.
16819         * doc/posix-functions/printf.texi: Likewise.
16820         * doc/posix-functions/snprintf.texi: Likewise.
16821         * doc/posix-functions/sprintf.texi: Likewise.
16822         * doc/posix-functions/vfprintf.texi: Likewise.
16823         * doc/posix-functions/vprintf.texi: Likewise.
16824         * doc/posix-functions/vsnprintf.texi: Likewise.
16825         * doc/posix-functions/vsprintf.texi: Likewise.
16826         * doc/glibc-functions/obstack_printf.texi: Likewise.
16827         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
16828
16829 2009-02-28  Bruno Haible  <bruno@clisp.org>
16830
16831         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
16832         Reported by Loïc Minier <lool@dooz.org>.
16833
16834 2009-02-27  Bruno Haible  <bruno@clisp.org>
16835
16836         * gnulib-tool (func_import): Make the sed expression used to create the
16837         sed script for updating the .gitignore file POSIX compliant.
16838         Reported by Eric Blake.
16839
16840 2009-02-27  Bruno Haible  <bruno@clisp.org>
16841
16842         * gnulib-tool (sed): Don't alias as "sed --posix".
16843         Reported by Eric Blake.
16844
16845 2009-02-27  Bruno Haible  <bruno@clisp.org>
16846
16847         Avoid test link errors.
16848         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
16849         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
16850         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
16851         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
16852         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
16853
16854 2009-02-27  Bruno Haible  <bruno@clisp.org>
16855
16856         Avoid spurious "(cached)" in configure output.
16857         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
16858         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
16859         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
16860         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
16861         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
16862         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
16863         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
16864         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
16865         Reported by Eric Blake.
16866
16867 2009-02-27  Eric Blake  <ebb9@byu.net>
16868
16869         printf: fix regression in previous patch
16870         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
16871
16872 2009-02-27  Bruno Haible  <bruno@clisp.org>
16873
16874         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
16875         value.
16876         * lib/stdint.in.h: Likewise.
16877         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
16878
16879 2009-02-27  Eric Blake  <ebb9@byu.net>
16880
16881         doc: mention more functions added in cygwin 1.7.0
16882         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
16883         addition.
16884         * doc/posix-functions/open_wmemstream.texi: Likewise.
16885         * doc/posix-functions/wcsnlen.texi: Likewise.
16886         * doc/posix-functions/wcsnrtombs.texi: Likewise.
16887         * doc/posix-functions/wcstod.texi: Likewise.
16888         * doc/posix-functions/wcstof.texi: Likewise.
16889         * doc/posix-functions/wcstoimax.texi: Likewise.
16890         * doc/posix-functions/wcstok.texi: Likewise.
16891         * doc/posix-functions/wcstoumax.texi: Likewise.
16892
16893         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
16894         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
16895         * doc/posix-functions/fprintf.texi: Update.
16896         * doc/posix-functions/printf.texi: Update.
16897         * doc/posix-functions/snprintf.texi: Update.
16898         * doc/posix-functions/sprintf.texi: Update.
16899         * doc/posix-functions/vfprintf.texi: Update.
16900         * doc/posix-functions/vprintf.texi: Update.
16901         * doc/posix-functions/vsnprintf.texi: Update.
16902         * doc/posix-functions/vsprintf.texi: Update.
16903         * doc/glibc-functions/obstack_printf.texi: Update.
16904         * doc/glibc-functions/obstack_vprintf.texi: Update.
16905
16906 2009-02-26  Eric Blake  <ebb9@byu.net>
16907
16908         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
16909         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
16910         compilation bug by using runtime conversion.
16911         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
16912         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
16913         * modules/ceill-tests (Files): Use nan.h.
16914         * modules/floorl-tests (Files): Likewise.
16915         * modules/frexpl-tests (Files): Likewise.
16916         * modules/isnanl-tests (Files): Likewise.
16917         * modules/ldexpl-tests (Files): Likewise.
16918         * modules/roundl-tests (Files): Likewise.
16919         * modules/truncl-tests (Files): Likewise.
16920         * tests/test-ceill.c (main): Use a working NaN.
16921         * tests/test-floorl.c (main): Likewise.
16922         * tests/test-frexpl.c (main): Likewise.
16923         * tests/test-isnan.c (test_long_double): Likewise.
16924         * tests/test-isnanl.h (main): Likewise.
16925         * tests/test-ldexpl.h (main): Likewise.
16926         * tests/test-roundl.h (main): Likewise.
16927         * tests/test-truncl.h (main): Likewise.
16928         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
16929
16930 2009-02-26  Eric Blake  <ebb9@byu.net>
16931             Bruno Haible  <bruno@clisp.org>
16932
16933         Work around a *printf bug with %ls on Solaris.
16934         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
16935         precision is specified, sprintf stops converting the wide string
16936         argument when the number of bytes that have been produced by this
16937         conversion equals or exceeds the precision.
16938         * doc/posix-functions/fprintf.texi: Update.
16939         * doc/posix-functions/printf.texi: Update.
16940         * doc/posix-functions/snprintf.texi: Update.
16941         * doc/posix-functions/sprintf.texi: Update.
16942         * doc/posix-functions/vfprintf.texi: Update.
16943         * doc/posix-functions/vprintf.texi: Update.
16944         * doc/posix-functions/vsnprintf.texi: Update.
16945         * doc/posix-functions/vsprintf.texi: Update.
16946         * doc/glibc-functions/obstack_printf.texi: Update.
16947         * doc/glibc-functions/obstack_vprintf.texi: Update.
16948
16949 2009-02-26  Eric Blake  <ebb9@byu.net>
16950
16951         stdlib: favor compiler check of random.h
16952         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
16953         to avoid an ObjC random.h installed by Swarm.
16954
16955 2009-02-26  Bruno Haible  <bruno@clisp.org>
16956
16957         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
16958         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
16959         Reported by Gary V. Vaughan <gary@gnu.org>.
16960
16961 2009-02-26  Bruno Haible  <bruno@clisp.org>
16962
16963         Fix *printf behaviour regarding the %ls directive.
16964         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
16965         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
16966         NEED_PRINTF_DIRECTIVE_LS.
16967         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
16968         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
16969         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
16970         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
16971         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
16972         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
16973         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
16974         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
16975         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
16976         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
16977         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
16978         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
16979         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
16980         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
16981         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
16982         * doc/posix-functions/fprintf.texi: Update.
16983         * doc/posix-functions/printf.texi: Update.
16984         * doc/posix-functions/snprintf.texi: Update.
16985         * doc/posix-functions/sprintf.texi: Update.
16986         * doc/posix-functions/vfprintf.texi: Update.
16987         * doc/posix-functions/vprintf.texi: Update.
16988         * doc/posix-functions/vsnprintf.texi: Update.
16989         * doc/posix-functions/vsprintf.texi: Update.
16990         * doc/glibc-functions/obstack_printf.texi: Update.
16991         * doc/glibc-functions/obstack_vprintf.texi: Update.
16992         Reported by Eric Blake.
16993
16994 2009-02-25  Bruno Haible  <bruno@clisp.org>
16995
16996         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
16997         with known value.
16998         Reported by Gary V. Vaughan <gary@gnu.org>.
16999
17000 2009-02-25  Bruno Haible  <bruno@clisp.org>
17001
17002         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
17003         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
17004         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
17005         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
17006         Reported by Gary V. Vaughan <gary@gnu.org>.
17007
17008 2009-02-25  Bruno Haible  <bruno@clisp.org>
17009
17010         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
17011         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
17012         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
17013         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
17014         Reported by Gary V. Vaughan <gary@gnu.org>.
17015
17016 2009-02-25  Eric Blake  <ebb9@byu.net>
17017
17018         tests: skip fseek/ftell tests if ungetc is broken
17019         * m4/ungetc.m4: New file.
17020         * modules/fseek-tests: Split test, so ungetc dependency is
17021         separate from rest of test.
17022         * modules/fseeko-tests: Likewise.
17023         * modules/ftell-tests: Likewise.
17024         * modules/ftello-tests: Likewise.
17025         * tests/test-fseek.c (main): Isolate ungetc dependency.
17026         * tests/test-fseeko.c (main): Likewise.
17027         * tests/test-ftell.c (main): Likewise.
17028         * tests/test-ftello.c (main): Likewise.
17029         * tests/test-fseek2.sh: New file.
17030         * tests/test-fseeko2.sh: Likewise.
17031         * tests/test-ftell2.sh: Likewise.
17032         * tests/test-ftello2.sh: Likewise.
17033
17034 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
17035
17036         test-getaddrinfo: fix usage of skip return code 77
17037         * tests/test-gettaddrinfo.c: Return skip code 77 only
17038         for first occurance of skip (4x77 is not 77)
17039
17040 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
17041
17042         strtod: avoid C99 decl-after-statement
17043         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
17044
17045 2009-02-24  Eric Blake  <ebb9@byu.net>
17046
17047         strtod: detect HP-UX 11.31 bug
17048         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
17049         Reported by Gary V. Vaughan.
17050
17051 2009-02-23  Bruno Haible  <bruno@clisp.org>
17052
17053         Fix invalid read past end of memory block.
17054         * lib/vasnprintf.c (DCHAR_SET): Define.
17055         (local_wcslen): Define only when needed.
17056         (local_strnlen, local_wcsnlen): New functions.
17057         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
17058         directives that involve a conversion ourselves.
17059         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
17060         wcsnlen, mbrtowc, wcrtomb.
17061         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
17062         * tests/test-vasprintf-posix.c (test_function): Likewise.
17063         * tests/test-snprintf-posix.h (test_function): Likewise.
17064         * tests/test-sprintf-posix.h (test_function): Likewise.
17065         Reported by Ben Pfaff <blp@cs.stanford.edu>.
17066
17067 2009-02-22  Bruno Haible  <bruno@clisp.org>
17068
17069         Implement new clarified decomposition of Hangul syllables.
17070         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
17071         of type LTV, return only a pairwise decomposition.
17072         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
17073         Likewise.
17074         * tests/uninorm/test-decomposition.c (main): Updated expected result.
17075         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
17076         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
17077
17078 2009-02-22  Bruno Haible  <bruno@clisp.org>
17079
17080         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
17081         zero-length results and shrink excess allocated memory.
17082         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
17083         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
17084         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
17085         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
17086         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
17087         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
17088         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
17089         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
17090         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
17091         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
17092         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
17093         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
17094
17095 2009-02-21  Bruno Haible  <bruno@clisp.org>
17096
17097         * doc/gnulib.texi: Include safe-alloc.texi earlier.
17098         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
17099         spaces after a period. Put a space between a macro name and its
17100         argument list. Trivial rewordings.
17101         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
17102         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
17103         (main): Return 0 explicitly.
17104
17105 2009-02-21  Bruno Haible  <bruno@clisp.org>
17106
17107         Tests for module 'uninorm/filter'.
17108         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
17109         * modules/uninorm/filter-tests: New file.
17110
17111         New module 'uninorm/filter'.
17112         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
17113         uninorm_filter_flush, uninorm_filter_free): New declarations.
17114         * lib/uninorm/uninorm-filter.c: New file.
17115         * modules/uninorm/filter: New file.
17116
17117 2009-02-21  Bruno Haible  <bruno@clisp.org>
17118
17119         Tests for module 'uninorm/nfkc'.
17120         * tests/uninorm/test-nfkc.c: New file.
17121         * tests/uninorm/test-u8-nfkc.c: New file.
17122         * tests/uninorm/test-u16-nfkc.c: New file.
17123         * tests/uninorm/test-u32-nfkc.c: New file.
17124         * tests/uninorm/test-u32-nfkc-big.sh: New file.
17125         * tests/uninorm/test-u32-nfkc-big.c: New file.
17126         * modules/uninorm/nfkc-tests: New file.
17127
17128         New module 'uninorm/nfkc'.
17129         * lib/uninorm/nfkc.c: New file.
17130         * modules/uninorm/nfkc: New file.
17131
17132         Tests for module 'uninorm/nfkd'.
17133         * tests/uninorm/test-nfkd.c: New file.
17134         * tests/uninorm/test-u8-nfkd.c: New file.
17135         * tests/uninorm/test-u16-nfkd.c: New file.
17136         * tests/uninorm/test-u32-nfkd.c: New file.
17137         * tests/uninorm/test-u32-nfkd-big.sh: New file.
17138         * tests/uninorm/test-u32-nfkd-big.c: New file.
17139         * modules/uninorm/nfkd-tests: New file.
17140
17141         New module 'uninorm/nfkd'.
17142         * lib/uninorm/nfkd.c: New file.
17143         * modules/uninorm/nfkd: New file.
17144
17145         Tests for module 'uninorm/nfc'.
17146         * tests/uninorm/test-nfc.c: New file.
17147         * tests/uninorm/test-u8-nfc.c: New file.
17148         * tests/uninorm/test-u16-nfc.c: New file.
17149         * tests/uninorm/test-u32-nfc.c: New file.
17150         * tests/uninorm/test-u32-nfc-big.sh: New file.
17151         * tests/uninorm/test-u32-nfc-big.c: New file.
17152         * modules/uninorm/nfc-tests: New file.
17153
17154         New module 'uninorm/nfc'.
17155         * lib/uninorm/nfc.c: New file.
17156         * modules/uninorm/nfc: New file.
17157
17158         Tests for module 'uninorm/nfd'.
17159         * tests/uninorm/test-nfd.c: New file.
17160         * tests/uninorm/test-u8-nfd.c: New file.
17161         * tests/uninorm/test-u16-nfd.c: New file.
17162         * tests/uninorm/test-u32-nfd.c: New file.
17163         * tests/uninorm/test-u32-nfd-big.sh: New file.
17164         * tests/uninorm/test-u32-nfd-big.c: New file.
17165         * tests/uninorm/test-u32-normalize-big.h: New file.
17166         * tests/uninorm/test-u32-normalize-big.c: New file.
17167         * tests/uninorm/NormalizationTest.txt: New file, created from
17168         Unicode 5.1.0 NormalizationTest.txt.
17169         * modules/uninorm/nfd-tests: New file.
17170
17171         New module 'uninorm/nfd'.
17172         * lib/uninorm/nfd.c: New file.
17173         * modules/uninorm/nfd: New file.
17174
17175         New module 'uninorm/u32-normalize'.
17176         * lib/uninorm/u32-normalize.c: New file.
17177         * modules/uninorm/u32-normalize: New file.
17178
17179         New module 'uninorm/u16-normalize'.
17180         * lib/uninorm/u16-normalize.c: New file.
17181         * modules/uninorm/u16-normalize: New file.
17182
17183         New module 'uninorm/u8-normalize'.
17184         * lib/uninorm/u8-normalize.c: New file.
17185         * lib/uninorm/normalize-internal.h: New file.
17186         * lib/uninorm/u-normalize-internal.h: New file.
17187         * modules/uninorm/u8-normalize: New file.
17188
17189         New module 'uninorm/decompose-internal'.
17190         * lib/uninorm/decompose-internal.c: New file.
17191         * modules/uninorm/decompose-internal: New file.
17192
17193         Tests for module 'uninorm/composition'.
17194         * tests/uninorm/test-composition.c: New file.
17195         * modules/uninorm/composition-tests: New file.
17196
17197         New module 'uninorm/composition'.
17198         * lib/uninorm/composition.c: New file.
17199         * lib/uninorm/composition-table.gperf: New file, generated by
17200         gen-uni-tables.
17201         * modules/uninorm/composition: New file.
17202
17203         Tests for module 'uninorm/compat-decomposition'.
17204         * tests/uninorm/test-compat-decomposition.c: New file.
17205         * modules/uninorm/compat-decomposition-tests: New file.
17206
17207         New module 'uninorm/compat-decomposition'.
17208         * lib/uninorm/decompose-internal.h: New file.
17209         * lib/uninorm/compat-decomposition.c: New file.
17210         * modules/uninorm/compat-decomposition: New file.
17211
17212         Tests for module 'uninorm/canonical-decomposition'.
17213         * tests/uninorm/test-canonical-decomposition.c: New file.
17214         * modules/uninorm/canonical-decomposition-tests: New file.
17215
17216         New module 'uninorm/canonical-decomposition'.
17217         * lib/uninorm/canonical-decomposition.c: New file.
17218         * modules/uninorm/canonical-decomposition: New file.
17219
17220         Tests for module 'uninorm/decomposition'.
17221         * tests/uninorm/test-decomposition.c: New file.
17222         * modules/uninorm/decomposition-tests: New file.
17223
17224         New module 'uninorm/decomposition'.
17225         * lib/uninorm/decomposition.c: New file.
17226         * modules/uninorm/decomposition: New file.
17227
17228         New module 'uninorm/decomposition-table'.
17229         * lib/uninorm/decomposition-table.h: New file.
17230         * lib/uninorm/decomposition-table.c: New file.
17231         * lib/uninorm/decomposition-table1.h: New file, generated by
17232         gen-uni-tables.
17233         * lib/uninorm/decomposition-table2.h: New file, generated by
17234         gen-uni-tables.
17235         * modules/uninorm/decomposition-table: New file.
17236
17237         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
17238         (UC_DECOMP_*): New enumeration items.
17239         (get_decomposition): New function.
17240         (struct decomp_table): New type.
17241         (output_decomposition, output_decomposition_tables): New functions.
17242         (unicode_composition_exclusions): New variable.
17243         (fill_composition_exclusions, debug_output_composition_tables): New
17244         functions.
17245         (main): Accept one more argument. Invoke fill_composition_exclusions.
17246         Output decomposition and composition tables.
17247
17248         New module 'uninorm/base'.
17249         * lib/uninorm.h: New file.
17250         * lib/unictype.h: Update comment.
17251         * modules/uninorm/base: New file.
17252
17253 2009-02-21  David Lutterkort  <lutter@redhat.com>
17254
17255         Tests for module 'safe-alloc'.
17256         * tests/test-safe-alloc.c: New file.
17257         * modules/safe-alloc-tests: New file.
17258
17259         New module 'safe-alloc'.
17260         * lib/safe-alloc.h: New file.
17261         * lib/safe-alloc.c: New file.
17262         * m4/safe-alloc.m4: New file.
17263         * modules/safe-alloc: New file.
17264         * doc/safe-alloc.texi: New file.
17265         * doc/gnulib.texi: Include it.
17266         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
17267         safe-alloc.
17268
17269 2009-02-18  Bruno Haible  <bruno@clisp.org>
17270
17271         Fix link error on non-glibc systems.
17272         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
17273         variable.
17274         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
17275
17276 2009-02-18  Jim Meyering  <meyering@redhat.com>
17277
17278         fts: avoid used-uninitialized error due to recent change
17279         * lib/fts.c (fts_read): Guard uses of the new member,
17280         parent->fts_n_dirs_remaining, since it's not relevant for
17281         the parent of a directory specified on the command-line.
17282
17283 2009-02-17  James Youngman  <jay@gnu.org>
17284             Bruno Haible  <bruno@clisp.org>
17285
17286         * m4/include_next.m4: Reformulate comment.
17287
17288 2009-02-16  Jim Meyering  <meyering@redhat.com>
17289
17290         fts: add #if guards so that the fts_lgpl module still builds
17291         * lib/fts.c: Guard just-added hash-table-using parts with
17292         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
17293         Reported by Simon Josefsson.
17294
17295 2009-02-15  Bruno Haible  <bruno@clisp.org>
17296
17297         * modules/array-mergesort-tests: New file.
17298         * tests/test-array-mergesort.c: New file.
17299
17300         New module 'array-mergesort'.
17301         * modules/array-mergesort: New file.
17302         * lib/array-mergesort.h: New file.
17303
17304 2009-02-15  Bruno Haible  <bruno@clisp.org>
17305
17306         Fix 2009-02-07 commit.
17307         * lib/gen-uni-tables.c (output_predicate, output_category,
17308         output_combclass, output_bidi_category, output_decimal_digit,
17309         output_digit, output_numeric, output_mirror, output_scripts,
17310         output_ident_category, output_simple_mapping): Fix format directives.
17311         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
17312
17313 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
17314
17315         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
17316         fixes are available from IBM.
17317
17318 2009-02-13  Jim Meyering  <meyering@redhat.com>
17319
17320         fts: arrange not to stat non-directories in more cases
17321         This makes GNU find (when it doesn't need to stat each file)
17322         *much* more efficient at traversing reiserfs file systems.
17323         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
17324         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
17325         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
17326         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
17327         (leaf_optimization_applies): New function.
17328         (LCO_hash, LCO_compare): New helper functions.
17329         (link_count_optimize_ok): New function.
17330         (fts_stat): Initialize new member (if dir).
17331         (fts_read): Decrement parent's fts_n_dirs_remaining count if
17332         we've just stat'ed a directory.  Skip the stat call when possible.
17333         ---
17334         Note this AFS-related exchange:
17335         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
17336         and note find's pioctl call in find/fstype.c.
17337         But that is necessary only if you want to enable the
17338         optimization for AFS, and for now, I don't.
17339
17340         fts: move a function definition "up" (no semantic change)
17341         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
17342         "up" to precede upcoming use of a related function.
17343
17344 2009-02-11  Jim Meyering  <meyering@redhat.com>
17345
17346         fts: correct internal computation of nlinks (optimization-related)
17347         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
17348         whether the current entry is a directory, so don't test it.
17349
17350 2009-02-10  Bruno Haible  <bruno@clisp.org>
17351
17352         Tests for module 'uniwbrk/ulc-wordbreaks'.
17353         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
17354         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
17355         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
17356
17357         Tests for module 'uniwbrk/u32-wordbreaks'.
17358         * modules/uniwbrk/u32-wordbreaks-tests: New file.
17359         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
17360
17361         Tests for module 'uniwbrk/u16-wordbreaks'.
17362         * modules/uniwbrk/u16-wordbreaks-tests: New file.
17363         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
17364
17365         Tests for module 'uniwbrk/u8-wordbreaks'.
17366         * modules/uniwbrk/u8-wordbreaks-tests: New file.
17367         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
17368
17369 2009-02-10  Bruno Haible  <bruno@clisp.org>
17370
17371         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
17372         property.
17373         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
17374         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
17375         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
17376
17377 2009-02-10  Simon Josefsson  <simon@josefsson.org>
17378
17379         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
17380         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
17381
17382 2009-02-10  Bruno Haible  <bruno@clisp.org>
17383
17384         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
17385         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
17386         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
17387         * lib/unilbrk/u8-possible-linebreaks.c: Update.
17388         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
17389         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
17390
17391 2009-02-09  Simon Josefsson  <simon@josefsson.org>
17392
17393         * lib/sockets.h (gl_fd_to_handle): New function.
17394
17395         * tests/test-sockets.c: Call gl_fd_to_handle.
17396
17397 2009-02-09  Bruno Haible  <bruno@clisp.org>
17398
17399         * doc/havelib.texi: Document the conventions on bi-arch systems.
17400
17401 2009-02-08  Bruno Haible  <bruno@clisp.org>
17402
17403         Document the AC_LIB_LINKFLAGS macro.
17404         * doc/havelib.texi: New file, mostly written on 2005-05-24.
17405         * doc/gnulib.texi: Include it.
17406
17407 2009-02-08  Bruno Haible  <bruno@clisp.org>
17408
17409         Fix wrong order of sections, compared to TOC.
17410         * doc/gnulib.texi: Include relocatable-maint.texi after the
17411         "Regular expressions" node, not before.
17412
17413 2009-02-08  Bruno Haible  <bruno@clisp.org>
17414
17415         Tests for module 'unicase/totitle'.
17416         * modules/unicase/totitle-tests: New file.
17417
17418         Tests for module 'unicase/tolower'.
17419         * modules/unicase/tolower-tests: New file.
17420
17421         Tests for module 'unicase/toupper'.
17422         * modules/unicase/toupper-tests: New file.
17423         * tests/unicase/test-mapping-part1.h: New file.
17424         * tests/unicase/test-mapping-part2.h: New file.
17425
17426         New module 'unicase/totitle'.
17427         * modules/unicase/totitle: New file.
17428         * lib/unicase/totitle.c: New file.
17429
17430         New module 'unicase/tolower'.
17431         * modules/unicase/tolower: New file.
17432         * lib/unicase/tolower.c: New file.
17433
17434         New module 'unicase/toupper'.
17435         * modules/unicase/toupper: New file.
17436         * lib/unicase/toupper.c: New file.
17437         * lib/unicase/simple-mapping.h: New file.
17438
17439         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
17440         (mapping_table): New structure.
17441         (output_simple_mapping): New function.
17442         (main): Invoke output_simple_mapping_test and output_simple_mapping.
17443         * modules/gen-uni-tables (Description): Update.
17444         * lib/unicase/toupper.h: New file, automatically generated by
17445         gen-uni-tables.
17446         * lib/unicase/tolower.h: New file, automatically generated by
17447         gen-uni-tables.
17448         * lib/unicase/totitle.h: New file, automatically generated by
17449         gen-uni-tables.
17450         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
17451         gen-uni-tables.
17452         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
17453         gen-uni-tables.
17454         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
17455         gen-uni-tables.
17456
17457         New module 'unicase/base'.
17458         * modules/unicase/base: New file.
17459         * lib/unicase.h: New file.
17460
17461 2009-02-08  Bruno Haible  <bruno@clisp.org>
17462
17463         New module 'uniwbrk/ulc-wordbreaks'.
17464         * modules/uniwbrk/ulc-wordbreaks: New file.
17465         * lib/uniwbrk/ulc-wordbreaks.c: New file.
17466
17467         New module 'uniwbrk/u32-wordbreaks'.
17468         * modules/uniwbrk/u32-wordbreaks: New file.
17469         * lib/uniwbrk/u32-wordbreaks.c: New file.
17470
17471         New module 'uniwbrk/u16-wordbreaks'.
17472         * modules/uniwbrk/u16-wordbreaks: New file.
17473         * lib/uniwbrk/u16-wordbreaks.c: New file.
17474
17475         New module 'uniwbrk/u8-wordbreaks'.
17476         * modules/uniwbrk/u8-wordbreaks: New file.
17477         * lib/uniwbrk/u8-wordbreaks.c: New file.
17478         * lib/uniwbrk/u-wordbreaks.h: New file.
17479
17480         New module 'uniwbrk/table'.
17481         * modules/uniwbrk/table: New file.
17482         * lib/uniwbrk/wbrktable.h: New file.
17483         * lib/uniwbrk/wbrktable.c: New file.
17484
17485         New module 'uniwbrk/wordbreak-property'.
17486         * modules/uniwbrk/wordbreak-property: New file.
17487         * lib/uniwbrk/wordbreak-property.c: New file.
17488
17489         * lib/gen-uni-tables.c (WBP_*): New enum items.
17490         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
17491         (unicode_org_wbp): New variable.
17492         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
17493         New functions.
17494         (wbp_table): New structure.
17495         (output_wbp, output_wbrk_tables): New functions.
17496         (main): Accept additional argument. Invoke fill_org_wbp,
17497         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
17498         output_wbrk_tables.
17499         * modules/gen-uni-tables (Description): Update.
17500         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
17501         gen-uni-tables.
17502
17503         New module 'uniwbrk/base'.
17504         * modules/uniwbrk/base: New file.
17505         * lib/uniwbrk.h: New file.
17506
17507 2009-02-08  Bruno Haible  <bruno@clisp.org>
17508
17509         Update to Unicode 5.1.0.
17510         * lib/gen-uni-tables.c (is_property_alphabetic): Include
17511         U+2185..U+2188.
17512         (is_property_default_ignorable_code_point): Don't include characters
17513         of category Cc or Cs and not-a-characters.
17514         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
17515         U+0D79, U+109E, U+109F, U+A60C.
17516         * lib/unictype/bidi_of.h: Regenerated.
17517         * lib/unictype/blocks.h: Regenerated.
17518         * lib/unictype/categ_C.h: Regenerated.
17519         * lib/unictype/categ_Cf.h: Regenerated.
17520         * lib/unictype/categ_Cn.h: Regenerated.
17521         * lib/unictype/categ_L.h: Regenerated.
17522         * lib/unictype/categ_Ll.h: Regenerated.
17523         * lib/unictype/categ_Lm.h: Regenerated.
17524         * lib/unictype/categ_Lo.h: Regenerated.
17525         * lib/unictype/categ_Lu.h: Regenerated.
17526         * lib/unictype/categ_M.h: Regenerated.
17527         * lib/unictype/categ_Mc.h: Regenerated.
17528         * lib/unictype/categ_Me.h: Regenerated.
17529         * lib/unictype/categ_Mn.h: Regenerated.
17530         * lib/unictype/categ_N.h: Regenerated.
17531         * lib/unictype/categ_Nd.h: Regenerated.
17532         * lib/unictype/categ_Nl.h: Regenerated.
17533         * lib/unictype/categ_No.h: Regenerated.
17534         * lib/unictype/categ_P.h: Regenerated.
17535         * lib/unictype/categ_Pd.h: Regenerated.
17536         * lib/unictype/categ_Pe.h: Regenerated.
17537         * lib/unictype/categ_Pf.h: Regenerated.
17538         * lib/unictype/categ_Pi.h: Regenerated.
17539         * lib/unictype/categ_Po.h: Regenerated.
17540         * lib/unictype/categ_Ps.h: Regenerated.
17541         * lib/unictype/categ_S.h: Regenerated.
17542         * lib/unictype/categ_Sk.h: Regenerated.
17543         * lib/unictype/categ_Sm.h: Regenerated.
17544         * lib/unictype/categ_So.h: Regenerated.
17545         * lib/unictype/categ_of.h: Regenerated.
17546         * lib/unictype/combining.h: Regenerated.
17547         * lib/unictype/ctype_alnum.h: Regenerated.
17548         * lib/unictype/ctype_alpha.h: Regenerated.
17549         * lib/unictype/ctype_graph.h: Regenerated.
17550         * lib/unictype/ctype_lower.h: Regenerated.
17551         * lib/unictype/ctype_print.h: Regenerated.
17552         * lib/unictype/ctype_punct.h: Regenerated.
17553         * lib/unictype/ctype_upper.h: Regenerated.
17554         * lib/unictype/decdigit.h: Regenerated.
17555         * lib/unictype/digit.h: Regenerated.
17556         * lib/unictype/mirror.h: Regenerated.
17557         * lib/unictype/numeric.h: Regenerated.
17558         * lib/unictype/pr_alphabetic.h: Regenerated.
17559         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
17560         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
17561         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
17562         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
17563         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
17564         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
17565         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
17566         * lib/unictype/pr_combining.h: Regenerated.
17567         * lib/unictype/pr_dash.h: Regenerated.
17568         * lib/unictype/pr_decimal_digit.h: Regenerated.
17569         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
17570         * lib/unictype/pr_deprecated.h: Regenerated.
17571         * lib/unictype/pr_diacritic.h: Regenerated.
17572         * lib/unictype/pr_extender.h: Regenerated.
17573         * lib/unictype/pr_format_control.h: Regenerated.
17574         * lib/unictype/pr_grapheme_base.h: Regenerated.
17575         * lib/unictype/pr_grapheme_extend.h: Regenerated.
17576         * lib/unictype/pr_grapheme_link.h: Regenerated.
17577         * lib/unictype/pr_id_continue.h: Regenerated.
17578         * lib/unictype/pr_id_start.h: Regenerated.
17579         * lib/unictype/pr_ideographic.h: Regenerated.
17580         * lib/unictype/pr_ignorable_control.h: Regenerated.
17581         * lib/unictype/pr_lowercase.h: Regenerated.
17582         * lib/unictype/pr_math.h: Regenerated.
17583         * lib/unictype/pr_numeric.h: Regenerated.
17584         * lib/unictype/pr_other_alphabetic.h: Regenerated.
17585         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
17586         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
17587         * lib/unictype/pr_other_id_continue.h: Regenerated.
17588         * lib/unictype/pr_other_lowercase.h: Regenerated.
17589         * lib/unictype/pr_other_math.h: Regenerated.
17590         * lib/unictype/pr_punctuation.h: Regenerated.
17591         * lib/unictype/pr_sentence_terminal.h: Regenerated.
17592         * lib/unictype/pr_soft_dotted.h: Regenerated.
17593         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
17594         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
17595         * lib/unictype/pr_unified_ideograph.h: Regenerated.
17596         * lib/unictype/pr_uppercase.h: Regenerated.
17597         * lib/unictype/pr_xid_continue.h: Regenerated.
17598         * lib/unictype/pr_xid_start.h: Regenerated.
17599         * lib/unictype/pr_zero_width.h: Regenerated.
17600         * lib/unictype/scripts.h: Regenerated.
17601         * lib/unictype/scripts_byname.gperf: Regenerated.
17602         * lib/unictype/sy_java_ident.h: Regenerated.
17603         * lib/unilbrk/lbrkprop1.h: Regenerated.
17604         * lib/unilbrk/lbrkprop2.h: Regenerated.
17605         * tests/unictype/test-categ_C.c: Regenerated.
17606         * tests/unictype/test-categ_Cf.c: Regenerated.
17607         * tests/unictype/test-categ_Cn.c: Regenerated.
17608         * tests/unictype/test-categ_L.c: Regenerated.
17609         * tests/unictype/test-categ_Ll.c: Regenerated.
17610         * tests/unictype/test-categ_Lm.c: Regenerated.
17611         * tests/unictype/test-categ_Lo.c: Regenerated.
17612         * tests/unictype/test-categ_Lu.c: Regenerated.
17613         * tests/unictype/test-categ_M.c: Regenerated.
17614         * tests/unictype/test-categ_Mc.c: Regenerated.
17615         * tests/unictype/test-categ_Me.c: Regenerated.
17616         * tests/unictype/test-categ_Mn.c: Regenerated.
17617         * tests/unictype/test-categ_N.c: Regenerated.
17618         * tests/unictype/test-categ_Nd.c: Regenerated.
17619         * tests/unictype/test-categ_Nl.c: Regenerated.
17620         * tests/unictype/test-categ_No.c: Regenerated.
17621         * tests/unictype/test-categ_P.c: Regenerated.
17622         * tests/unictype/test-categ_Pd.c: Regenerated.
17623         * tests/unictype/test-categ_Pe.c: Regenerated.
17624         * tests/unictype/test-categ_Pf.c: Regenerated.
17625         * tests/unictype/test-categ_Pi.c: Regenerated.
17626         * tests/unictype/test-categ_Po.c: Regenerated.
17627         * tests/unictype/test-categ_Ps.c: Regenerated.
17628         * tests/unictype/test-categ_S.c: Regenerated.
17629         * tests/unictype/test-categ_Sk.c: Regenerated.
17630         * tests/unictype/test-categ_Sm.c: Regenerated.
17631         * tests/unictype/test-categ_So.c: Regenerated.
17632         * tests/unictype/test-ctype_alnum.c: Regenerated.
17633         * tests/unictype/test-ctype_alpha.c: Regenerated.
17634         * tests/unictype/test-ctype_graph.c: Regenerated.
17635         * tests/unictype/test-ctype_lower.c: Regenerated.
17636         * tests/unictype/test-ctype_print.c: Regenerated.
17637         * tests/unictype/test-ctype_punct.c: Regenerated.
17638         * tests/unictype/test-ctype_upper.c: Regenerated.
17639         * tests/unictype/test-decdigit.h: Regenerated.
17640         * tests/unictype/test-digit.h: Regenerated.
17641         * tests/unictype/test-numeric.h: Regenerated.
17642         * tests/unictype/test-pr_alphabetic.c: Regenerated.
17643         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
17644         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
17645         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
17646         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
17647         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
17648         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
17649         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
17650         * tests/unictype/test-pr_combining.c: Regenerated.
17651         * tests/unictype/test-pr_dash.c: Regenerated.
17652         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
17653         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
17654         * tests/unictype/test-pr_deprecated.c: Regenerated.
17655         * tests/unictype/test-pr_diacritic.c: Regenerated.
17656         * tests/unictype/test-pr_extender.c: Regenerated.
17657         * tests/unictype/test-pr_format_control.c: Regenerated.
17658         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
17659         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
17660         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
17661         * tests/unictype/test-pr_id_continue.c: Regenerated.
17662         * tests/unictype/test-pr_id_start.c: Regenerated.
17663         * tests/unictype/test-pr_ideographic.c: Regenerated.
17664         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
17665         * tests/unictype/test-pr_lowercase.c: Regenerated.
17666         * tests/unictype/test-pr_math.c: Regenerated.
17667         * tests/unictype/test-pr_numeric.c: Regenerated.
17668         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
17669         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
17670         Regenerated.
17671         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
17672         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
17673         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
17674         * tests/unictype/test-pr_other_math.c: Regenerated.
17675         * tests/unictype/test-pr_punctuation.c: Regenerated.
17676         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
17677         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
17678         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
17679         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
17680         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
17681         * tests/unictype/test-pr_uppercase.c: Regenerated.
17682         * tests/unictype/test-pr_xid_continue.c: Regenerated.
17683         * tests/unictype/test-pr_xid_start.c: Regenerated.
17684         * tests/unictype/test-pr_zero_width.c: Regenerated.
17685
17686         Update to Unicode 5.1.0.
17687         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
17688         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
17689         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
17690         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
17691         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
17692         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
17693         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
17694         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
17695         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
17696         (nonspacing_table_ind): Update.
17697         * tests/uniwidth/test-uc_width2.sh: Update expected result.
17698
17699         Update to Unicode 5.1.0.
17700         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
17701         code transform.
17702         * lib/uniname/uniname.c (unicode_character_name,
17703         unicode_name_character): Add the range 0x1Fxxx to the code transform.
17704         * lib/uniname/uninames.h: Regenerated.
17705         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
17706
17707 2009-02-07  Bruno Haible  <bruno@clisp.org>
17708
17709         Merge gen-ctype and gen-lbrk into a single program.
17710         * lib/gen-uni-tables.c: New file, incorporating
17711         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
17712         Add directory prefixes to the names of the generated files.
17713         * lib/unictype/gen-ctype.c: Remove file.
17714         * lib/unilbrk/gen-lbrk.c: Remove file.
17715         * modules/gen-uni-tables: New file.
17716         * modules/unictype/gen-ctype: Remove file.
17717         * modules/unilbrk/gen-lbrk: Remove file.
17718
17719 2009-02-07  Bruno Haible  <bruno@clisp.org>
17720
17721         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
17722
17723         New module 'unistr/u32-strcoll'.
17724         * modules/unistr/u32-strcoll: New file.
17725         * lib/unistr/u32-strcoll.c: New file.
17726
17727         New module 'unistr/u16-strcoll'.
17728         * modules/unistr/u16-strcoll: New file.
17729         * lib/unistr/u16-strcoll.c: New file.
17730
17731         New module 'unistr/u8-strcoll'.
17732         * modules/unistr/u8-strcoll: New file.
17733         * lib/unistr/u8-strcoll.c: New file.
17734         * lib/unistr/u-strcoll.h: New file.
17735
17736 2009-02-07  Bruno Haible  <bruno@clisp.org>
17737
17738         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
17739         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
17740         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
17741         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
17742         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
17743         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
17744
17745 2009-02-07  Bruno Haible  <bruno@clisp.org>
17746
17747         Make 64-bit clean.
17748         * lib/unictype/gen-ctype.c (output_predicate, output_category,
17749         output_combclass, output_bidi_category, output_decimal_digit,
17750         output_digit, output_numeric, output_mirror, output_scripts,
17751         output_ident_category): Use proper width specifier in format strings.
17752
17753 2009-02-07  Bruno Haible  <bruno@clisp.org>
17754
17755         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
17756         failure behaviour.
17757
17758 2009-02-07  Jim Meyering  <meyering@redhat.com>
17759
17760         regex: avoid compilation failure with upcoming gcc-4.4
17761         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
17762         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
17763         "... error: integer overflow in preprocessor expression".
17764
17765 2009-02-05  Ben Pfaff  <blp@gnu.org>
17766
17767         Fix link errors on Windows when close module is used.
17768         * modules/close: Add $(LIB_CLOSE) to Link section.
17769         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
17770         $(LIB_CLOSE) on Windows.
17771
17772 2009-02-05  Jim Meyering  <meyering@redhat.com>
17773
17774         still avoid unused-parameter warnings, but do it cleanly
17775         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
17776         (get_fs_usage): Cast to void instead.
17777         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
17778         (dev_from_mount_options, read_file_system_list): Cast to void.
17779         Prompted by Bruno Haible.
17780
17781 2009-02-04  Jim Meyering  <meyering@redhat.com>
17782
17783         fsusage.c: correct copyright year
17784         * lib/fsusage.c: Reflect year in which the change is pushed into
17785
17786         avoid misc. warnings
17787         * lib/fsusage.c (UNUSED_PARAM): Define.
17788         (get_fs_usage): Mark parameter "disk" as unused.
17789         * lib/getugroups.c (getgrent): Use "void" in prototype.
17790         * lib/mountlist.c: Mark unused parameters.
17791         (read_file_system_list): Declare a local with "const".
17792         * lib/nanosleep.c (getnow): Declare static.
17793         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
17794
17795         dirfd: set errno upon failure
17796         * lib/dirfd.c: Include <errno.h>.
17797         Set errno to ENOTSUP when returning -1.
17798         * modules/dirfd (Depends-on): Add errno.
17799         Suggested by John Kodis <kodis@comcast.net>.
17800
17801 2009-02-01  Bruno Haible  <bruno@clisp.org>
17802
17803         Don't assume sizeof (long) >= sizeof (void *).
17804         * lib/memcmp.c: Include stdint.h.
17805         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
17806         srcp2 to 'const byte *'.
17807         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
17808         types to uintptr_t.
17809         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
17810         * modules/memcmp (Depends-on): Add stdint.
17811         Reported by Ozkan Sezer <sezeroz@gmail.com>.
17812
17813 2009-01-30  Eric Blake  <ebb9@byu.net>
17814
17815         fix more require-before-expand issues
17816         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
17817         expand, AC_PROG_AWK.
17818         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
17819
17820 2009-01-28  Eric Blake  <ebb9@byu.net>
17821
17822         version-etc: use consistent URL formatting
17823         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
17824         Improve formatting.  Use fputs for string without %.
17825
17826 2009-01-28  Jim Meyering  <meyering@redhat.com>
17827
17828         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
17829         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
17830         "underquoted definition of NAME" from autoconf-2.59.
17831
17832 2009-01-28  Bruno Haible  <bruno@clisp.org>
17833
17834         * doc/gnulib.texi: Add "Obsolete modules" to index.
17835
17836 2009-01-28  Jim Meyering  <meyering@redhat.com>
17837
17838         useless-if-before-free: recognize more variants
17839         * build-aux/useless-if-before-free: Also recognize e.g.,
17840         if (NULL != p) free (p);
17841
17842 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
17843
17844         test-getaddrinfo: skip (don't fail) this test when there's no network
17845         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
17846         on the presumption that it means you lack network access.
17847
17848 2009-01-26  Jim Meyering  <meyering@redhat.com>
17849
17850         fflush: avoid warnings on modern systems
17851         * lib/fflush.c (rpl_fflush): Move declarations of locals,
17852         pos and result, into scopes where they're used.
17853
17854 2009-01-26  Eric Blake  <ebb9@byu.net>
17855
17856         Silence warning reintroduced by recent extensions patch.
17857         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
17858         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
17859         autoconf.
17860
17861         Backport improved autoconf semantics of AC_DEFUN_ONCE.
17862         * m4/00gnulib.m4: New file.
17863         * gnulib-tool (func_get_filelist): Always use it.
17864         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
17865         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
17866
17867 2009-01-25  Bruno Haible  <bruno@clisp.org>
17868
17869         Make test-quotearg work on MacOS X and AIX.
17870         * tests/test-quotearg.sh: New file.
17871         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
17872         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
17873         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
17874         include <libintl.h>.
17875         (fake_locale): Remove variable.
17876         (gettext, dgettext, dcgettext): Remove functions.
17877         (main): Instead of setting a fake locale, set a real locale. Call
17878         textdomain and bindtextdomain.
17879         * modules/quotearg-tests (Files): Add the new files.
17880         (Depends-on): Add gettext, setenv, unsetenv.
17881         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
17882         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
17883         Augment TESTS_ENVIRONMENT.
17884
17885 2009-01-25  Bruno Haible  <bruno@clisp.org>
17886
17887         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
17888         fr_FR.ISO8859-1 locale on MacOS X.
17889         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
17890         ja_JP.eucJP locale on MacOS X.
17891         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
17892         zh_CN.GB18030 locale on MacOS X.
17893
17894 2009-01-25  Bruno Haible  <bruno@clisp.org>
17895
17896         Avoid link errors on MacOS X 10.3.
17897         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
17898         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
17899
17900 2009-01-25  Bruno Haible  <bruno@clisp.org>
17901
17902         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
17903         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
17904         * modules/pipe (Files): Remove m4/posix_spawn.m4.
17905         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
17906         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
17907         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
17908         posix_spawnattr_init, posix_spawnattr_setsigmask,
17909         posix_spawnattr_setflags, posix_spawnattr_destroy.
17910
17911         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
17912         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
17913         * modules/execute (Files): Remove m4/posix_spawn.m4.
17914         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
17915         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
17916         posix_spawnattr_init, posix_spawnattr_setsigmask,
17917         posix_spawnattr_setflags, posix_spawnattr_destroy.
17918
17919 2009-01-25  Bruno Haible  <bruno@clisp.org>
17920
17921         * lib/glthread/threadlib.c: Include <stdlib.h>.
17922
17923 2009-01-25  Bruno Haible  <bruno@clisp.org>
17924
17925         * lib/glthread/threadlib.c (dummy): New declaration.
17926
17927 2009-01-25  Bruno Haible  <bruno@clisp.org>
17928
17929         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
17930         multibyte characters also for the GB18030 encoding. Don't crash when
17931         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
17932
17933 2009-01-25  Bruno Haible  <bruno@clisp.org>
17934
17935         Avoid redefining 'struct random_data' on OSF/1 5.1.
17936         * lib/stdlib.in.h: Include <random.h> if it exists.
17937         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
17938         HAVE_RANDOM_H. Include <random.h> when testing whether
17939         'struct random_data' exists.
17940         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
17941
17942 2009-01-25  Bruno Haible  <bruno@clisp.org>
17943
17944         Don't install charset.alias on MacOS X >= 10.3.
17945         * lib/localcharset.c (DARWIN7): New macro.
17946         (get_charset_aliases): Hardcode the result for Darwin7.
17947         * modules/localcharset (install-exec-local): Don't install
17948         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
17949
17950 2009-01-25  Bruno Haible  <bruno@clisp.org>
17951
17952         Don't install charset.alias on mingw and Cygwin.
17953         * modules/localcharset (install-exec-local): Don't install
17954         charset.alias on mingw and Cygwin, if the file does not yet exist.
17955         The result for these platforms is hardcoded in localcharset.c.
17956
17957 2009-01-25  Bruno Haible  <bruno@clisp.org>
17958
17959         Make it possible again to use AC_GNU_SOURCE together with gnulib.
17960         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
17961         before requiring AC_USE_SYSTEM_EXTENSIONS.
17962
17963 2009-01-25  Jim Meyering  <meyering@redhat.com>
17964
17965         c-strtod: avoid warnings
17966         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
17967         "assignment discards qualifiers from pointer target type" warnings.
17968
17969 2009-01-24  Bruno Haible  <bruno@clisp.org>
17970
17971         Add support for non-UTF-8 locales on MacOS X.
17972         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
17973         canonical encodings. For Darwin 7 and newer, don't map traditional
17974         encodings to UTF-8.
17975         Reported by Vincent Lefevre <vincent@vinc17.org>
17976         at <http://savannah.gnu.org/bugs/?25235>.
17977
17978 2009-01-24  Bruno Haible  <bruno@clisp.org>
17979
17980         * doc/gnulib.texi (Obsolete modules): New section.
17981         Reported by Mike Frysinger <vapier@gentoo.org>.
17982
17983 2009-01-24  Bruno Haible  <bruno@clisp.org>
17984
17985         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
17986         (%.dvi): New rule.
17987
17988 2009-01-24  Bruno Haible  <bruno@clisp.org>
17989
17990         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
17991         Reported by Eric Blake.
17992
17993 2009-01-24  Bruno Haible  <bruno@clisp.org>
17994
17995         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
17996         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
17997         Reported by Gary V. Vaughan <gary@gnu.org>.
17998
17999 2009-01-24  Bruno Haible  <bruno@clisp.org>
18000
18001         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
18002
18003 2009-01-23  Bruno Haible  <bruno@clisp.org>
18004
18005         Make c-strtod, c-strtold usable in libraries.
18006         * lib/c-strtod.c: Include string.h instead of xalloc.h.
18007         (C_STRTOD): Call strdup instead of xstrdup.
18008         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
18009         * modules/c-strtold (Depends-on): Likewise.
18010         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
18011         * NEWS: Mention the change.
18012         Reported by Michael Gold <mgold@ncf.ca>.
18013
18014 2009-01-23  Jim Meyering  <meyering@redhat.com>
18015
18016         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
18017         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
18018         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
18019
18020 2009-01-23  Simon Josefsson  <simon@josefsson.org>
18021
18022         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
18023         GNU CoreUtils.
18024         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
18025         * modules/version-etc (Description): Update.
18026
18027 2009-01-22  Bruno Haible  <bruno@clisp.org>
18028
18029         Cache the C locale object.
18030         * lib/c-strtod.c (c_locale_cache): New variable.
18031         (c_locale): New function.
18032         (C_STRTOD): Use it, and don't call freelocale.
18033         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
18034         Suggested by Paolo Bonzini.
18035
18036 2009-01-21  Bruno Haible  <bruno@clisp.org>
18037
18038         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
18039         conditions other than overflow.
18040
18041 2009-01-21  Bruno Haible  <bruno@clisp.org>
18042
18043         * lib/c-strtod.c: Include errno.h.
18044         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
18045         value from STRTOD_L and STRTOD.
18046
18047 2009-01-21  Bruno Haible  <bruno@clisp.org>
18048         and Jim Meyering  <meyering@redhat.com>
18049
18050         nanosleep: skip configure test (fail it) for apple universal builds
18051         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
18052         universal builds, assume that nanosleep does not work.
18053         * modules/nanosleep (Depends-on): Add multiarch.
18054
18055         mktime: skip configure test (fail it) for apple universal builds
18056         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
18057         universal builds, assume that mktime does not work.
18058         * modules/mktime (Depends-on): Add multiarch.
18059
18060 2009-01-21  Eric Blake  <ebb9@byu.net>
18061
18062         multiarch: avoid expand-before-require warning
18063         * modules/multiarch (configure.ac): Require, rather than expand,
18064         gl_MULTIARCH.
18065         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
18066         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
18067         enforce that all clients require it.  Partial reversion of
18068         2008-12-29 patch.
18069
18070         error: avoid expand-before-require warning
18071         * modules/errno (configure.ac): Require, rather than expand,
18072         gl_HEADER_ERRNO_H.
18073         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
18074         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
18075         enforce that all clients require it.
18076
18077         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
18078         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
18079         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
18080         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
18081
18082 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
18083
18084         Revert:
18085         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
18086
18087         regex: do not depend on obsolete modules.
18088         * modules/regex: Remove memcmp and memmove.
18089
18090 2009-01-20  Bruno Haible  <bruno@clisp.org>
18091
18092         Make the 'link' module link on Windows NT 4.
18093         * lib/link.c (_WIN32_WINNT): Don't define.
18094         (CreateHardLinkFuncType): New type.
18095         (CreateHardLinkFunc, initialized): New variables.
18096         (initialize): New function.
18097         (link): Invoke CreateHardLink indirectly through the function pointer.
18098
18099 2009-01-20  Bruno Haible  <bruno@clisp.org>
18100
18101         Fix compilation failure on mingw.
18102         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
18103
18104 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
18105
18106         * doc/c-strtod.texi: Mention a couple of restrictions.
18107
18108 2009-01-20  Jim Meyering  <meyering@redhat.com>
18109
18110         gettimeofday: move more declarations out of functions
18111         * lib/gettimeofday.c: Move extern declarations of tzset and
18112         gmtime out of containing functions.  Prompted by Bruno Haible.
18113
18114 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
18115
18116         regex: do not depend on obsolete modules.
18117         * modules/regex: Remove memcmp and memmove.
18118
18119 2009-01-19  Bruno Haible  <bruno@clisp.org>
18120
18121         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
18122         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
18123         gl_BIGENDIAN, not AC_C_BIGENDIAN.
18124         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
18125         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
18126
18127 2009-01-19  Bruno Haible  <bruno@clisp.org>
18128
18129         * tests/test-link.c: Include <errno.h>.
18130         (main): Exit with code 77 when a hard link cannot be created due to
18131         the file system.
18132         * tests/test-link.sh: Skip test when a hard link cannot be created due
18133         to the file system.
18134         Suggested by Eric Blake.
18135
18136 2009-01-19  Martin Lambers  <marlam@marlam.de>
18137
18138         * modules/link-tests: New file.
18139         * tests/test-link.sh: New file.
18140         * tests/test-link.c: New file.
18141
18142 2009-01-19  Eric Blake  <ebb9@byu.net>
18143
18144         doc: mention another function added in cygwin 1.7.0
18145         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
18146         Another new function in cygwin 1.7.
18147
18148 2009-01-19  Bruno Haible  <bruno@clisp.org>
18149
18150         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
18151         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
18152         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
18153         gl_BIGENDIAN, not AC_C_BIGENDIAN.
18154         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
18155         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
18156         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
18157         * m4/md4.m4 (gl_MD4): Likewise.
18158         * m4/md5.m4 (gl_MD5): Likewise.
18159         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
18160         * m4/sha1.m4 (gl_SHA1): Likewise.
18161         * m4/sha256.m4 (gl_SHA256): Likewise.
18162         * m4/sha512.m4 (gl_SHA512): Likewise.
18163
18164 2009-01-19  Bruno Haible  <bruno@clisp.org>
18165
18166         * modules/uniname/uniname-tests (Depends-on): Add progname.
18167         * tests/uniname/test-uninames.c: Include progname.h.
18168         (main): Call set_program_name.
18169
18170         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
18171         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
18172         (main): Call set_program_name.
18173
18174         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
18175         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
18176         (main): Call set_program_name.
18177
18178         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
18179         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
18180         (main): Call set_program_name.
18181
18182         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
18183         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
18184         (main): Call set_program_name.
18185
18186         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
18187         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
18188         (main): Call set_program_name.
18189
18190         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
18191         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
18192         (main): Call set_program_name.
18193
18194         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
18195         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
18196         (main): Call set_program_name.
18197
18198         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
18199         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
18200         (main): Call set_program_name.
18201
18202 2009-01-19  Eric Blake  <ebb9@byu.net>
18203
18204         test-unistd: test previous patch
18205         * tests/test-unistd.c: Test *_FILENO macros.
18206
18207         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
18208         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
18209         Guarantee a definition.
18210         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
18211         * modules/unistd-safer (Depends-on): Add dependency on unistd.
18212         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
18213         * lib/dup-safer.c (STDERR_FILENO): Likewise.
18214         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
18215         Likewise.
18216         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
18217         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
18218         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
18219         Likewise.
18220         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
18221         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
18222         (STDERR_FILENO): Likewise.
18223         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
18224         (STDERR_FILENO): Likewise.
18225         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
18226         (STDERR_FILENO): Likewise.
18227         Reported by Elbert Pol.
18228
18229 2009-01-19  Eric Blake  <ebb9@byu.net>
18230
18231         doc: mention more functions added in cygwin 1.7.0
18232         * doc/posix-functions/abort.texi (abort): Update wording related
18233         to cygwin.
18234         * doc/posix-functions/daylight.texi (daylight): Likewise.
18235         * doc/posix-functions/optarg.texi (optarg): Likewise.
18236         * doc/posix-functions/optarg.texi (opterr): Likewise.
18237         * doc/posix-functions/optarg.texi (optind): Likewise.
18238         * doc/posix-functions/optarg.texi (optopt): Likewise.
18239         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
18240         worked in 1.5.x, and was withdrawn in 1.7.
18241         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
18242         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
18243         cygwin versions.
18244         * doc/posix-functions/perror.texi (perror): Likewise.
18245         * doc/posix-functions/printf.texi (printf): Likewise.
18246         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
18247         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
18248         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
18249         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
18250         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
18251         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
18252         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
18253         Likewise.
18254         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
18255         Likewise.
18256         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
18257         this function.
18258         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
18259         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
18260         Likewise.
18261         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
18262         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
18263         * doc/posix-functions/confstr.texi (confstr): Likewise.
18264         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
18265         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
18266         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
18267         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
18268         * doc/posix-functions/fputws.texi (fputws): Likewise.
18269         * doc/posix-functions/fwide.texi (fwide): Likewise.
18270         * doc/posix-functions/getwc.texi (getwc): Likewise.
18271         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
18272         * doc/posix-functions/putwc.texi (putwc): Likewise.
18273         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
18274         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
18275         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
18276         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
18277         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
18278         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
18279         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
18280         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
18281         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
18282         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
18283         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
18284
18285 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
18286
18287         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
18288         * lib/ioctl.c: Include <sys/ioctl.h>.
18289
18290 2009-01-19  Simon Josefsson  <simon@josefsson.org>
18291
18292         * modules/getdate-tests (Depends-on): Add progname.
18293         * tests/test-getdate.c: Use progname module, to avoid link errors
18294         on non-glibc systems.
18295
18296 2009-01-18  Simon Josefsson  <simon@josefsson.org>
18297
18298         * modules/filenamecat-tests (Depends-on): Add progname.
18299         * modules/fstrcmp-tests (Depends-on): Likewise.
18300
18301         * tests/test-filenamecat.c: Use progname module, to avoid link
18302         errors on non-glibc systems.
18303         * tests/test-fstrcmp.c: Likewise.
18304
18305 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
18306
18307         gettimeofday: avoid warning: nested extern declaration of 'localtime'
18308         * lib/gettimeofday.c: Move extern declaration out of function.
18309
18310 2009-01-18  Bruno Haible  <bruno@clisp.org>
18311
18312         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
18313         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
18314         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
18315
18316 2009-01-18  Bruno Haible  <bruno@clisp.org>
18317
18318         * lib/strftime.c (MEMPCPY): Remove unused macro.
18319         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
18320
18321 2009-01-18  Martin Lambers  <marlam@marlam.de>
18322
18323         New module 'link'.
18324         * lib/unistd.in.h (link): New declaration.
18325         * lib/link.c: New file.
18326         * m4/link.m4: New file.
18327         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
18328         HAVE_LINK.
18329         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
18330         * modules/link: New file.
18331         * doc/posix-functions/link.texi: Mention the new module.
18332
18333 2009-01-18  Bruno Haible  <bruno@clisp.org>
18334
18335         * tests/test-avltree_list.c (main): Call set_program_name.
18336         * tests/test-avltree_oset.c (main): Likewise.
18337         * tests/test-obstack-printf.c: Include progname.h.
18338         (main): Call set_program_name.
18339         * tests/test-quotearg.c: Include progname.h.
18340         (main): Call set_program_name.
18341         * tests/test-xmemdup0.c: Include progname.h.
18342         (main): Call set_program_name.
18343
18344 2009-01-18  Bruno Haible  <bruno@clisp.org>
18345
18346         New module 'alphasort'.
18347         * lib/dirent.in.h (alphasort): New declaration.
18348         * lib/alphasort.c: New file, from glibc with modifications.
18349         * m4/alphasort.m4: New file.
18350         * modules/alphasort: New file.
18351         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
18352         HAVE_ALPHASORT.
18353         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
18354         HAVE_ALPHASORT.
18355         * doc/posix-functions/alphasort.texi: Mention the new module and the
18356         portability problems.
18357
18358 2009-01-18  Bruno Haible  <bruno@clisp.org>
18359
18360         New module 'scandir'.
18361         * lib/dirent.in.h (scandir): New declaration.
18362         * lib/scandir.c: New file, from glibc with modifications.
18363         * m4/scandir.m4: New file.
18364         * modules/scandir: New file.
18365         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
18366         HAVE_SCANDIR.
18367         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
18368         HAVE_SCANDIR.
18369         * doc/posix-functions/scandir.texi: Mention the new module and the
18370         portability problems.
18371
18372 2009-01-17  Bruno Haible  <bruno@clisp.org>
18373
18374         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
18375         Update documentation.
18376         (func_remove_suffix): Escape all dots in the suffix. Update
18377         documentation.
18378         (func_filter_filelist): Update documentation.
18379         Reported by Ralf Wildenhues.
18380
18381 2009-01-17  Bruno Haible  <bruno@clisp.org>
18382
18383         * modules/dprintf-posix-tests: New file.
18384         * tests/test-dprintf-posix.sh: New file.
18385         * tests/test-dprintf-posix.c: New file.
18386
18387         New modules 'dprintf', 'dprintf-posix'.
18388         * lib/stdio.in.h (dprintf): New declaration.
18389         * lib/dprintf.c: New file.
18390         * m4/dprintf.m4: New file.
18391         * m4/dprintf-posix.m4: New file.
18392         * modules/dprintf: New file.
18393         * modules/dprintf-posix: New file.
18394         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
18395         HAVE_DPRINTF, REPLACE_DPRINTF.
18396         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
18397         HAVE_DPRINTF, REPLACE_DPRINTF.
18398         * doc/posix-functions/dprintf.texi: Mention the new modules.
18399
18400 2009-01-17  Bruno Haible  <bruno@clisp.org>
18401
18402         * modules/vdprintf-posix-tests: New file.
18403         * tests/test-vdprintf-posix.sh: New file.
18404         * tests/test-vdprintf-posix.c: New file.
18405
18406         New modules 'vdprintf', 'vdprintf-posix'.
18407         * lib/stdio.in.h (vdprintf): New declaration.
18408         * lib/vdprintf.c: New file.
18409         * m4/vdprintf.m4: New file.
18410         * m4/vdprintf-posix.m4: New file.
18411         * modules/vdprintf: New file.
18412         * modules/vdprintf-posix: New file.
18413         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
18414         HAVE_VDPRINTF, REPLACE_VDPRINTF.
18415         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
18416         HAVE_VDPRINTF, REPLACE_VDPRINTF.
18417         * doc/posix-functions/vdprintf.texi: Mention the new modules.
18418
18419 2009-01-17  Bruno Haible  <bruno@clisp.org>
18420
18421         Fix replacement of fopen on mingw.
18422         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
18423         mingw.
18424
18425 2009-01-17  Bruno Haible  <bruno@clisp.org>
18426
18427         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
18428         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
18429
18430 2009-01-17  Bruno Haible  <bruno@clisp.org>
18431
18432         Avoid test-fflush2.sh failure on mingw.
18433         * tests/test-fflush2.c: Include binary-io.h.
18434         (main): Put standard input into binary mode.
18435         * modules/fflush-tests (Depends-on): Add binary-io.
18436
18437 2009-01-17  Bruno Haible  <bruno@clisp.org>
18438
18439         * lib/wchar.in.h: In another particular situation, include only the
18440         system's <wchar.h> file.
18441         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
18442         Reported by Albert Chin-A-Young <china@thewrittenword.com>
18443         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
18444
18445 2009-01-17  Bruno Haible  <bruno@clisp.org>
18446
18447         Support for stripping executables in --enable-relocatable.
18448         * build-aux/install-reloc: Expect one more argument, or an environment
18449         variable RELOC_STRIP_PROG. If set, strip the destination program and
18450         its wrapper.
18451         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
18452         RELOC_STRIP_PROG.
18453         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
18454         to set RELOCATABLE_STRIP.
18455         * NEWS: Mention the new Makefile requirement.
18456
18457 2009-01-17  Bruno Haible  <bruno@clisp.org>
18458
18459         * build-aux/install-reloc: Remove debugging information left over by
18460         C compiler on MacOS X.
18461
18462 2009-01-17  Bruno Haible  <bruno@clisp.org>
18463
18464         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
18465         * lib/progreloc.c (find_executable): Fix type of pointer passed to
18466         _NSGetExecutablePath.
18467
18468 2009-01-16  Jim Meyering  <meyering@redhat.com>
18469
18470         strerror: avoid warnings about discarding "const"
18471         * lib/strerror.c (rpl_strerror): Instead of returning a const
18472         string from each and every "case", use a variable, and add a single
18473         cast after the switch.
18474
18475 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
18476
18477         * lib/arpa_inet.in.h: Add extern "C" block for C++.
18478
18479 2009-01-16  Bruno Haible  <bruno@clisp.org>
18480
18481         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
18482         array initializer syntax that also works in C++ mode.
18483         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
18484
18485 2009-01-16  Jim Meyering  <meyering@redhat.com>
18486
18487         poll: suppress a warning
18488         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
18489         to ignore "...unsigned expression < 0 is always false" warnings.
18490
18491 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
18492
18493         poll: remove declarations of unused variables
18494         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
18495         sockbuf and optlen.
18496
18497 2009-01-15  Bruno Haible  <bruno@clisp.org>
18498
18499         Make fflush-after-ungetc POSIX compliant on BSD systems.
18500         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
18501         (clear_ungetc_buffer): Implement also for other systems.
18502         (rpl_fflush): On glibc systems, invoke
18503         clear_ungetc_buffer_preserving_position. Otherwise, invoke
18504         clear_ungetc_buffer after fetching the stream's position, not before.
18505
18506 2009-01-15  Bruno Haible  <bruno@clisp.org>
18507
18508         Make fflush-after-ungetc POSIX compliant on glibc systems.
18509         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
18510         after ungetc.
18511         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
18512         (rpl_fflush): On glibc systems, simply call the system's fflush
18513         function after clearing the ungetc buffer.
18514         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
18515         Instead, lseek only to the end of file, then use the system's fseeko
18516         for the rest. On glibc systems, reset the EOF indicator bit.
18517
18518 2009-01-15  Jim Meyering  <meyering@redhat.com>
18519
18520         openmp.m4: revert quote-adding change, for portability to older autoconf
18521         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
18522         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
18523         Simon Josefsson noticed the problem when using autoconf-2.61.
18524
18525 2009-01-15  Bruno Haible  <bruno@clisp.org>
18526
18527         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
18528         * tests/test-fflush2.c (ASSERT): Always fail.
18529         (main): Add two tests for fflush() after ungetc(), taking into account
18530         the Austin Group's clarification.
18531         Suggested by Eric Blake.
18532
18533 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
18534
18535         mktime.m4: remove K&R-style function prototypes
18536         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
18537         for the Sun C++ compiler.
18538
18539 2009-01-14  Bruno Haible  <bruno@clisp.org>
18540
18541         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
18542         while including <wchar.h>.
18543         * lib/wchar.in.h: In two particular situations on HP-UX, include only
18544         the system's <wchar.h> file.
18545         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
18546
18547 2009-01-14  Bruno Haible  <bruno@clisp.org>
18548
18549         * m4/csharp.m4: Don't mention gettext on the serial number line.
18550         * m4/csharpexec.m4: Likewise.
18551         * m4/eaccess.m4: Likewise.
18552         * m4/javaexec.m4: Likewise.
18553         * m4/sig_atomic_t.m4: Likewise.
18554         * m4/tmpdir.m4: Likewise.
18555         * m4/intldir.m4: Bump gettext version.
18556         * m4/lib-ld.m4: Likewise.
18557
18558 2009-01-14  Bruno Haible  <bruno@clisp.org>
18559
18560         * lib/progname.c (set_program_name): Add more comments.
18561         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
18562
18563 2009-01-14  Simon Josefsson  <simon@josefsson.org>
18564
18565         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
18566         were sys/stat.h does not define it.
18567
18568 2009-01-14  Jim Meyering  <meyering@redhat.com>
18569
18570         many *.m4 files: improve m4 quoting
18571         99% of this change was performed by running the following commands:
18572         git ls-files | grep '\.m4$' | xargs perl -pi \
18573           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
18574           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
18575           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
18576           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
18577         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
18578         The remainder were to add Copyright dates, increment serial numbers,
18579         undo some changes in comments, exclude m4/intl.m4, and add quotes
18580         around the "1" in ",1" where the unusual spacing prohibited the
18581         above regexps from doing the job.  For more details, see
18582         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
18583         * m4/acl.m4: Modified.
18584         * m4/afs.m4: Likewise.
18585         * m4/alloca.m4: Likewise.
18586         * m4/argp.m4: Likewise.
18587         * m4/argz.m4: Likewise.
18588         * m4/atexit.m4: Likewise.
18589         * m4/bison-i18n.m4: Likewise.
18590         * m4/bison.m4: Likewise.
18591         * m4/byteswap.m4: Likewise.
18592         * m4/c-stack.m4: Likewise.
18593         * m4/c-strtod.m4: Likewise.
18594         * m4/calloc.m4: Likewise.
18595         * m4/canonicalize-lgpl.m4: Likewise.
18596         * m4/chown.m4: Likewise.
18597         * m4/clock_time.m4: Likewise.
18598         * m4/codeset.m4: Likewise.
18599         * m4/copy-file.m4: Likewise.
18600         * m4/csharp.m4: Likewise.
18601         * m4/csharpcomp.m4: Likewise.
18602         * m4/csharpexec.m4: Likewise.
18603         * m4/d-ino.m4: Likewise.
18604         * m4/d-type.m4: Likewise.
18605         * m4/dirfd.m4: Likewise.
18606         * m4/double-slash-root.m4: Likewise.
18607         * m4/eaccess.m4: Likewise.
18608         * m4/eealloc.m4: Likewise.
18609         * m4/environ.m4: Likewise.
18610         * m4/errno_h.m4: Likewise.
18611         * m4/euidaccess.m4: Likewise.
18612         * m4/execute.m4: Likewise.
18613         * m4/fatal-signal.m4: Likewise.
18614         * m4/fchdir.m4: Likewise.
18615         * m4/fcntl_h.m4: Likewise.
18616         * m4/fileblocks.m4: Likewise.
18617         * m4/filenamecat.m4: Likewise.
18618         * m4/findprog.m4: Likewise.
18619         * m4/flexmember.m4: Likewise.
18620         * m4/fnmatch.m4: Likewise.
18621         * m4/fopen.m4: Likewise.
18622         * m4/fpending.m4: Likewise.
18623         * m4/fprintf-posix.m4: Likewise.
18624         * m4/free.m4: Likewise.
18625         * m4/frexp.m4: Likewise.
18626         * m4/frexpl.m4: Likewise.
18627         * m4/fsusage.m4: Likewise.
18628         * m4/ftruncate.m4: Likewise.
18629         * m4/gc-camellia.m4: Likewise.
18630         * m4/gc-random.m4: Likewise.
18631         * m4/gc.m4: Likewise.
18632         * m4/getaddrinfo.m4: Likewise.
18633         * m4/getcwd-abort-bug.m4: Likewise.
18634         * m4/getcwd-path-max.m4: Likewise.
18635         * m4/getdate.m4: Likewise.
18636         * m4/getdomainname.m4: Likewise.
18637         * m4/getgroups.m4: Likewise.
18638         * m4/gethostname.m4: Likewise.
18639         * m4/gethrxtime.m4: Likewise.
18640         * m4/getline.m4: Likewise.
18641         * m4/getloadavg.m4: Likewise.
18642         * m4/getndelim2.m4: Likewise.
18643         * m4/getpass.m4: Likewise.
18644         * m4/gettext.m4: Likewise.
18645         * m4/gettime.m4: Likewise.
18646         * m4/gettimeofday.m4: Likewise.
18647         * m4/gnulib-common.m4: Likewise.
18648         * m4/group-member.m4: Likewise.
18649         * m4/host-os.m4: Likewise.
18650         * m4/iconv.m4: Likewise.
18651         * m4/iconv_open.m4: Likewise.
18652         * m4/inet_ntop.m4: Likewise.
18653         * m4/inet_pton.m4: Likewise.
18654         * m4/inline.m4: Likewise.
18655         * m4/intldir.m4: Likewise.
18656         * m4/intlmacosx.m4: Likewise.
18657         * m4/intmax.m4: Likewise.
18658         * m4/intmax_t.m4: Likewise.
18659         * m4/inttypes.m4: Likewise.
18660         * m4/inttypes_h.m4: Likewise.
18661         * m4/inttypes-pri.m4: Likewise.
18662         * m4/isapipe.m4: Likewise.
18663         * m4/isnand.m4: Likewise.
18664         * m4/isnanf.m4: Likewise.
18665         * m4/isnanl.m4: Likewise.
18666         * m4/javacomp.m4: Likewise.
18667         * m4/javaexec.m4: Likewise.
18668         * m4/jm-winsz1.m4: Likewise.
18669         * m4/jm-winsz2.m4: Likewise.
18670         * m4/lchown.m4: Likewise.
18671         * m4/lcmessage.m4: Likewise.
18672         * m4/ldexpl.m4: Likewise.
18673         * m4/lib-ld.m4: Likewise.
18674         * m4/lib-link.m4: Likewise.
18675         * m4/libsigsegv.m4: Likewise.
18676         * m4/link-follow.m4: Likewise.
18677         * m4/localcharset.m4: Likewise.
18678         * m4/locale-fr.m4: Likewise.
18679         * m4/locale-ja.m4: Likewise.
18680         * m4/locale-tr.m4: Likewise.
18681         * m4/locale-zh.m4: Likewise.
18682         * m4/lock.m4: Likewise.
18683         * m4/longlong.m4: Likewise.
18684         * m4/ls-mntd-fs.m4: Likewise.
18685         * m4/lstat.m4: Likewise.
18686         * m4/malloc.m4: Likewise.
18687         * m4/mathl.m4: Likewise.
18688         * m4/mbrtowc.m4: Likewise.
18689         * m4/mbstate_t.m4: Likewise.
18690         * m4/mbswidth.m4: Likewise.
18691         * m4/memchr.m4: Likewise.
18692         * m4/memcmp.m4: Likewise.
18693         * m4/memcpy.m4: Likewise.
18694         * m4/memmem.m4: Likewise.
18695         * m4/memmove.m4: Likewise.
18696         * m4/mempcpy.m4: Likewise.
18697         * m4/memrchr.m4: Likewise.
18698         * m4/memset.m4: Likewise.
18699         * m4/minmax.m4: Likewise.
18700         * m4/mkdir-slash.m4: Likewise.
18701         * m4/mkdtemp.m4: Likewise.
18702         * m4/mktime.m4: Likewise.
18703         * m4/mmap-anon.m4: Likewise.
18704         * m4/mountlist.m4: Likewise.
18705         * m4/nanosleep.m4: Likewise.
18706         * m4/nls.m4: Likewise.
18707         * m4/nocrash.m4: Likewise.
18708         * m4/open.m4: Likewise.
18709         * m4/openat.m4: Likewise.
18710         * m4/openmp.m4: Likewise.
18711         * m4/pathmax.m4: Likewise.
18712         * m4/perl.m4: Likewise.
18713         * m4/physmem.m4: Likewise.
18714         * m4/pipe.m4: Likewise.
18715         * m4/po.m4: Likewise.
18716         * m4/poll.m4: Likewise.
18717         * m4/posixtm.m4: Likewise.
18718         * m4/posixver.m4: Likewise.
18719         * m4/printf-frexp.m4: Likewise.
18720         * m4/printf-frexpl.m4: Likewise.
18721         * m4/printf-posix.m4: Likewise.
18722         * m4/printf-posix-rpl.m4: Likewise.
18723         * m4/printf.m4: Likewise.
18724         * m4/progtest.m4: Likewise.
18725         * m4/putenv.m4: Likewise.
18726         * m4/readline.m4: Likewise.
18727         * m4/readlink.m4: Likewise.
18728         * m4/readutmp.m4: Likewise.
18729         * m4/realloc.m4: Likewise.
18730         * m4/regex.m4: Likewise.
18731         * m4/relocatable.m4: Likewise.
18732         * m4/relocatable-lib.m4: Likewise.
18733         * m4/rename-dest-slash.m4: Likewise.
18734         * m4/rename.m4: Likewise.
18735         * m4/rmdir-errno.m4: Likewise.
18736         * m4/rmdir.m4: Likewise.
18737         * m4/roundf.m4: Likewise.
18738         * m4/roundl.m4: Likewise.
18739         * m4/rpmatch.m4: Likewise.
18740         * m4/save-cwd.m4: Likewise.
18741         * m4/selinux-selinux-h.m4: Likewise.
18742         * m4/setenv.m4: Likewise.
18743         * m4/settime.m4: Likewise.
18744         * m4/sig2str.m4: Likewise.
18745         * m4/sig_atomic_t.m4: Likewise.
18746         * m4/signalblocking.m4: Likewise.
18747         * m4/signbit.m4: Likewise.
18748         * m4/sigpipe.m4: Likewise.
18749         * m4/sockets.m4: Likewise.
18750         * m4/sockpfaf.m4: Likewise.
18751         * m4/st_dm_mode.m4: Likewise.
18752         * m4/stat-time.m4: Likewise.
18753         * m4/stdbool.m4: Likewise.
18754         * m4/stdint.m4: Likewise.
18755         * m4/stdint_h.m4: Likewise.
18756         * m4/stpcpy.m4: Likewise.
18757         * m4/stpncpy.m4: Likewise.
18758         * m4/strcase.m4: Likewise.
18759         * m4/strchrnul.m4: Likewise.
18760         * m4/strcspn.m4: Likewise.
18761         * m4/strdup.m4: Likewise.
18762         * m4/strftime.m4: Likewise.
18763         * m4/strndup.m4: Likewise.
18764         * m4/strnlen.m4: Likewise.
18765         * m4/strpbrk.m4: Likewise.
18766         * m4/strptime.m4: Likewise.
18767         * m4/strsep.m4: Likewise.
18768         * m4/strtod.m4: Likewise.
18769         * m4/strtoimax.m4: Likewise.
18770         * m4/strtok_r.m4: Likewise.
18771         * m4/strtol.m4: Likewise.
18772         * m4/strtoll.m4: Likewise.
18773         * m4/strtoul.m4: Likewise.
18774         * m4/strtoull.m4: Likewise.
18775         * m4/strtoumax.m4: Likewise.
18776         * m4/strverscmp.m4: Likewise.
18777         * m4/threadlib.m4: Likewise.
18778         * m4/timegm.m4: Likewise.
18779         * m4/tm_gmtoff.m4: Likewise.
18780         * m4/tmpdir.m4: Likewise.
18781         * m4/tmpfile.m4: Likewise.
18782         * m4/tzset.m4: Likewise.
18783         * m4/uintmax_t.m4: Likewise.
18784         * m4/unlinkdir.m4: Likewise.
18785         * m4/unlocked-io.m4: Likewise.
18786         * m4/uptime.m4: Likewise.
18787         * m4/userspec.m4: Likewise.
18788         * m4/utimbuf.m4: Likewise.
18789         * m4/utime.m4: Likewise.
18790         * m4/utimes-null.m4: Likewise.
18791         * m4/utimes.m4: Likewise.
18792         * m4/vararrays.m4: Likewise.
18793         * m4/vasnprintf.m4: Likewise.
18794         * m4/vfprintf-posix.m4: Likewise.
18795         * m4/vprintf-posix.m4: Likewise.
18796         * m4/wait-process.m4: Likewise.
18797         * m4/wchar_t.m4: Likewise.
18798         * m4/wint_t.m4: Likewise.
18799         * m4/write-any-file.m4: Likewise.
18800         * m4/yield.m4: Likewise.
18801
18802 2009-01-13  Bruno Haible  <bruno@clisp.org>
18803
18804         Avoid test-copy-file.sh failures when ACL support insufficient.
18805         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
18806         TESTS_ENVIRONMENT.
18807         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
18808         Reported by Jim Meyering.
18809
18810 2009-01-13  Bruno Haible  <bruno@clisp.org>
18811
18812         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
18813         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
18814         * modules/unistdio/u8-printf-parse (Files): Likewise.
18815         * modules/unistdio/u32-printf-parse (Files): Likewise.
18816         * modules/unistdio/ulc-printf-parse (Files): Likewise.
18817
18818 2009-01-13  Simon Josefsson  <simon@josefsson.org>
18819
18820         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
18821         and m4/inttypes_h.m4 too.
18822
18823 2009-01-12  Eric Blake  <ebb9@byu.net>
18824
18825         tests: IRIX 6.2 cc can't compile -0.0 into .data
18826         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
18827         rather than at compile-time.
18828         * tests/test-floorl.c (minus_zero): Likewise.
18829         * tests/test-frexpl.c (minus_zero): Likewise.
18830         * tests/test-isnan.c (minus_zerol): Likewise.
18831         * tests/test-isnanl.h (minus_zero): Likewise.
18832         * tests/test-ldexpl.c (minus_zero): Likewise.
18833         * tests/test-roundl.c (minus_zero): Likewise.
18834         * tests/test-signbit.c (minus_zerol): Likewise.
18835         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
18836         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
18837         * tests/test-truncl.c (minus_zero): Likewise.
18838         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
18839         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
18840         Reported by Tom G. Christensen and Nelson H. F. Beebe.
18841
18842 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18843
18844         regex: fix glibc bug 9697
18845         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
18846         handling.
18847
18848 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18849
18850         regex: fix glibc bug 697
18851         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
18852         being NULL also if there are no backreferences.
18853
18854 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
18855
18856         regex: merge glibc changes
18857         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
18858         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
18859         re_string_skip_chars, re_string_reconstruct): Likewise.
18860         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
18861
18862 2009-01-07  Jim Meyering  <meyering@redhat.com>
18863
18864         poll: filter through cppi
18865         * lib/poll.c: Indent cpp directives to reflect nesting.
18866
18867 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
18868
18869         poll: don't return uninitialized
18870         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
18871
18872 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
18873
18874         avoid compile failure on AIX 6.1
18875         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
18876         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
18877
18878 2009-01-04  Jim Meyering  <meyering@redhat.com>
18879
18880         remove duplicate inclusion of <stdio.h>
18881         * tests/test-fprintf-posix.c: Likewise.
18882         * tests/test-printf-posix.c: Likewise.
18883         * tests/test-snprintf-posix.c: Likewise.
18884         * tests/test-sprintf-posix.c: Likewise.
18885         * tests/test-vasprintf-posix.c: Likewise.
18886         * tests/test-vfprintf-posix.c: Likewise.
18887         * tests/test-vprintf-posix.c: Likewise.
18888         * tests/test-vsnprintf-posix.c: Likewise.
18889         * tests/test-vsprintf-posix.c: Likewise.
18890
18891 2009-01-03  Jim Meyering  <meyering@redhat.com>
18892
18893         gnulib-tool: fix sed-based filtering
18894         * gnulib-tool (func_filter_filelist): Remove extra backslash
18895         in sed_fff_filter definition.
18896
18897 2009-01-02  Jim Meyering  <meyering@redhat.com>
18898
18899         strftime: avoid compilation failure on Solaris 2.6
18900         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
18901         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
18902         Don't #define mbrlen or mbsinit, since now they're guaranteed to
18903         be available.  Reported by Tom G. Christensen.  Details in
18904         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
18905
18906 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18907             Bruno Haible  <bruno@clisp.org>
18908
18909         Speed up gnulib-tool by doing more string processing through shell
18910         built-ins.
18911         * gnulib-tool (fast_func_append): New variable.
18912         (func_remove_prefix, func_remove_suffix): New functions.
18913         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
18914         (func_filter_filelist): New function.
18915         (func_get_dependencies): Use func_remove_suffix instead of sed.
18916         (func_get_automake_snippet): Use func_filter_filelist instead of a
18917         subshell and sed invocation.
18918
18919 2009-01-01  Bruno Haible  <bruno@clisp.org>
18920
18921         Fix a security bug.
18922         * gnulib-tool (func_import, import, update): Don't allow the characters
18923         '"', '$', '`', '\' in macro arguments that become part of commands that
18924         are evaluated.
18925
18926 2009-01-01  Bruno Haible  <bruno@clisp.org>
18927
18928         * gnulib-tool (func_reset_sigpipe): Add more comments.
18929
18930 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18931
18932         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
18933         func_emit_tests_Makefile_am, func_import): Abort loops early if we
18934         already know the answer.
18935
18936 2009-01-01  Jim Meyering  <meyering@redhat.com>
18937
18938         * lib/version-etc.c (version_etc_va): Update copyright year.
18939
18940 2008-12-30  Bruno Haible  <bruno@clisp.org>
18941
18942         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
18943         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
18944         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
18945
18946 2008-12-29  Eric Blake  <ebb9@byu.net>
18947
18948         multiarch: avoid autoconf AC_REQUIRE bug
18949         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
18950         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
18951         2.63 and older.
18952         Reported by Bruno Haible, and analyzed in
18953         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
18954
18955 2008-12-29  Bruno Haible  <bruno@clisp.org>
18956
18957         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
18958         files in subdirectories correctly.
18959         Reported by Ralf Wildenhues.
18960
18961 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18962
18963         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
18964         rather than 'join FILE -', for Solaris join.
18965
18966 2008-12-29  Bruno Haible  <bruno@clisp.org>
18967
18968         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
18969         quoting.
18970         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
18971         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
18972         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
18973         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
18974         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
18975         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
18976         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
18977         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
18978         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
18979         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
18980         * m4/nls.m4 (AM_NLS): Likewise.
18981         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
18982         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
18983         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
18984         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
18985         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
18986         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
18987         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
18988         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
18989         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
18990         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
18991         * m4/xsize.m4 (gl_XSIZE): Likewise.
18992         Suggested by Jim Meyering.
18993
18994 2008-11-17  Bruce Korb  <bkorb@gnu.org>
18995
18996         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
18997         * lib/parse-duration.c: use a switch instead of cascading if's.
18998
18999 2008-12-29  Eric Blake  <ebb9@byu.net>
19000
19001         wchar.h: supply WEOF on Irix 5.3
19002         * lib/wchar.in.h (wint_t): Also supply WEOF.
19003         * lib/wctype.in.h (wint_t): Likewise.
19004         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
19005         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
19006         Reported by Tom G. Christensen.
19007
19008 2008-12-26  Bruno Haible  <bruno@clisp.org>
19009
19010         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
19011         i486, i586, i686.
19012
19013 2008-12-26  Bruno Haible  <bruno@clisp.org>
19014
19015         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
19016
19017 2008-12-26  Bruno Haible  <bruno@clisp.org>
19018
19019         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
19020         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
19021         not __STDC_CONSTANT_MACROS.
19022         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
19023
19024 2008-12-25  Bruno Haible  <bruno@clisp.org>
19025
19026         Add support for universal builds to vasnprintf.
19027         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
19028         universal builds, guess no.
19029         * modules/vasnprintf-posix (Depends-on): Add multiarch.
19030         * modules/vasprintf-posix (Depends-on): Likewise.
19031         * modules/fprintf-posix (Depends-on): Likewise.
19032         * modules/vfprintf-posix (Depends-on): Likewise.
19033         * modules/snprintf-posix (Depends-on): Likewise.
19034         * modules/vsnprintf-posix (Depends-on): Likewise.
19035         * modules/sprintf-posix (Depends-on): Likewise.
19036         * modules/vsprintf-posix (Depends-on): Likewise.
19037         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
19038         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
19039         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
19040         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
19041         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
19042         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
19043         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
19044
19045         Add support for universal builds to <inttypes.h>.
19046         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
19047         _SCNu64_PREFIX): In Apple
19048         universal builds, define directly, using _LP64.
19049         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
19050         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
19051         * modules/inttypes (Depends-on): Add multiarch.
19052         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
19053
19054         Add support for universal builds to <stdint.h>.
19055         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
19056         universal builds, define directly, using _LP64.
19057         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
19058         Apple universal builds, don't test for the size and suffix of ptrdiff_t
19059         and size_t.
19060         * modules/stdint (Depends-on): Add multiarch.
19061         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
19062
19063         New module 'multiarch'.
19064         * modules/multiarch: New file.
19065         * m4/multiarch.m4: New file.
19066
19067 2008-12-25  Bruno Haible  <bruno@clisp.org>
19068
19069         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
19070
19071 2008-12-25  Bruno Haible  <bruno@clisp.org>
19072
19073         * modules/btowc (License): Relicense under LGPLv2+.
19074         * modules/mbsinit (License): Likewise.
19075         * modules/mbrtowc (License): Likewise.
19076         * modules/wcrtomb (License): Likewise.
19077         * modules/streq (License): Likewise.
19078         Reported by David Lutterkort <lutter@redhat.com>.
19079
19080 2008-12-23  Bruno Haible  <bruno@clisp.org>
19081
19082         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
19083
19084 2008-12-23  Bruno Haible  <bruno@clisp.org>
19085
19086         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
19087         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
19088         GETADDRINFO_LIB, not in LIBS.
19089         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
19090         * modules/canon-host (Link): Likewise.
19091         * NEWS: Mention the change.
19092         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
19093         GETADDRINFO_LIB.
19094
19095 2008-12-22  Bruno Haible  <bruno@clisp.org>
19096
19097         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
19098         * doc/posix-functions/iswalpha_l.texi: Likewise.
19099         * doc/posix-functions/iswblank_l.texi: Likewise.
19100         * doc/posix-functions/iswcntrl_l.texi: Likewise.
19101         * doc/posix-functions/iswctype_l.texi: Likewise.
19102         * doc/posix-functions/iswdigit_l.texi: Likewise.
19103         * doc/posix-functions/iswgraph_l.texi: Likewise.
19104         * doc/posix-functions/iswlower_l.texi: Likewise.
19105         * doc/posix-functions/iswprint_l.texi: Likewise.
19106         * doc/posix-functions/iswpunct_l.texi: Likewise.
19107         * doc/posix-functions/iswspace_l.texi: Likewise.
19108         * doc/posix-functions/iswupper_l.texi: Likewise.
19109         * doc/posix-functions/iswxdigit_l.texi: Likewise.
19110         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
19111         * doc/posix-functions/open_wmemstream.texi: Likewise.
19112         * doc/posix-functions/swscanf.texi: Likewise.
19113         * doc/posix-functions/towctrans_l.texi: Likewise.
19114         * doc/posix-functions/towlower.texi: Likewise.
19115         * doc/posix-functions/towlower_l.texi: Likewise.
19116         * doc/posix-functions/towupper.texi: Likewise.
19117         * doc/posix-functions/towupper_l.texi: Likewise.
19118         * doc/posix-functions/vfwprintf.texi: Likewise.
19119         * doc/posix-functions/vfwscanf.texi: Likewise.
19120         * doc/posix-functions/vswscanf.texi: Likewise.
19121         * doc/posix-functions/vwprintf.texi: Likewise.
19122         * doc/posix-functions/vwscanf.texi: Likewise.
19123         * doc/posix-functions/wcpcpy.texi: Likewise.
19124         * doc/posix-functions/wcpncpy.texi: Likewise.
19125         * doc/posix-functions/wcscasecmp.texi: Likewise.
19126         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
19127         * doc/posix-functions/wcscoll_l.texi: Likewise.
19128         * doc/posix-functions/wcsdup.texi: Likewise.
19129         * doc/posix-functions/wcsncasecmp.texi: Likewise.
19130         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
19131         * doc/posix-functions/wcsnlen.texi: Likewise.
19132         * doc/posix-functions/wcsnrtombs.texi: Likewise.
19133         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
19134         * doc/posix-functions/wctrans_l.texi: Likewise.
19135         * doc/posix-functions/wctype_l.texi: Likewise.
19136         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
19137         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
19138         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
19139         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
19140         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
19141         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
19142         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
19143         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
19144         * doc/glibc-functions/wcschrnul.texi: Likewise.
19145         * doc/glibc-functions/wcsftime_l.texi: Likewise.
19146         * doc/glibc-functions/wcstod_l.texi: Likewise.
19147         * doc/glibc-functions/wcstof_l.texi: Likewise.
19148         * doc/glibc-functions/wcstol_l.texi: Likewise.
19149         * doc/glibc-functions/wcstold_l.texi: Likewise.
19150         * doc/glibc-functions/wcstoll_l.texi: Likewise.
19151         * doc/glibc-functions/wcstoq.texi: Likewise.
19152         * doc/glibc-functions/wcstoul_l.texi: Likewise.
19153         * doc/glibc-functions/wcstoull_l.texi: Likewise.
19154         * doc/glibc-functions/wcstouq.texi: Likewise.
19155         * doc/glibc-functions/wmempcpy.texi: Likewise.
19156
19157 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
19158             Eric Blake  <ebb9@byu.net>
19159             Paolo Bonzini  <bonzini@gnu.org>
19160             Bruno Haible  <bruno@clisp.org>
19161
19162         Make c-stack work on Haiku.
19163         * lib/c-stack.c (SA_ONSTACK): Define fallback.
19164         (c_stack_action): Use SA_ONSTACK flag.
19165
19166 2008-12-22  Bruno Haible  <bruno@clisp.org>
19167
19168         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
19169
19170 2008-12-22  Bruno Haible  <bruno@clisp.org>
19171
19172         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
19173         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
19174         being overridden.
19175         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
19176         New macros.
19177         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
19178         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
19179         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
19180         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
19181
19182 2008-12-22  Bruno Haible  <bruno@clisp.org>
19183
19184         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
19185         from test code.
19186
19187 2008-12-22  Eric Blake  <ebb9@byu.net>
19188
19189         Avoid gcc warnings on cygwin.
19190         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
19191         Avoid unused variable.
19192         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
19193         Likewise.
19194
19195 2008-12-22  Bruno Haible  <bruno@clisp.org>
19196
19197         Remove HAVE_MBRTOWC conditionals.
19198         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
19199         (mbscasecmp): Assume mbrtowc function.
19200         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
19201         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
19202         * lib/mbschr.c: Include mbuiter.h unconditionally.
19203         (mbschr): Assume mbrtowc function.
19204         * lib/mbscspn.c: Include mbuiter.h unconditionally.
19205         (mbscspn): Assume mbrtowc function.
19206         * lib/mbslen.c: Include mbuiter.h unconditionally.
19207         (mbslen): Assume mbrtowc function.
19208         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
19209         (mbsncasecmp): Assume mbrtowc function.
19210         * lib/mbsnlen.c: Include mbiter.h unconditionally.
19211         (mbsnlen): Assume mbrtowc function.
19212         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
19213         (mbspbrk): Assume mbrtowc function.
19214         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
19215         (mbspcasecmp): Assume mbrtowc function.
19216         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
19217         (mbsrchr): Assume mbrtowc function.
19218         * lib/mbssep.c: Include mbuiter.h unconditionally.
19219         (mbssep): Assume mbrtowc function.
19220         * lib/mbsspn.c: Include mbuiter.h unconditionally.
19221         (mbsspn): Assume mbrtowc function.
19222         * lib/mbsstr.c: Include mbuiter.h unconditionally.
19223         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
19224         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
19225         (mbstok_r): Assume mbrtowc function.
19226         * lib/propername.c: Include mbuiter.h unconditionally.
19227         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
19228         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
19229         (trim2): Assume mbrtowc function.
19230         * lib/mbswidth.c (mbsinit): Remove fallback definition.
19231         (mbsnwidth): Assume mbrtowc function.
19232         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
19233         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
19234         fallback definitions.
19235         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
19236
19237 2008-12-22  Bruno Haible  <bruno@clisp.org>
19238
19239         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
19240
19241 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
19242
19243         * modules/regex: Request emulations for the mb*/wc* functions we need.
19244         * m4/regex.m4: Don't look for those functions here.
19245         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
19246
19247 2008-12-22  Bruno Haible  <bruno@clisp.org>
19248
19249         * modules/fnmatch (Depends-on): Remove duplicated dependency.
19250
19251 2008-12-21  Bruno Haible  <bruno@clisp.org>
19252
19253         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
19254         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
19255         (Include): Remove conditionalization.
19256         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
19257         (Include): Remove conditionalization.
19258         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
19259         (Include): Remove conditionalization.
19260         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
19261         * m4/mbfile.m4 (gl_MBFILE): Likewise.
19262         * NEWS: Mention the change.
19263         Reported by Alan Hourihane <alanh@fairlite.co.uk>
19264         via Sergey Poznyakoff <gray@gnu.org.ua>.
19265
19266 2008-12-21  Bruno Haible  <bruno@clisp.org>
19267
19268         * MODULES.html.sh (Extended multibyte and wide character utilities
19269         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
19270         wcrtomb, wcsrtombs.
19271         (Support for systems lacking POSIX:2008): Add accept, bind, close,
19272         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
19273         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
19274         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
19275
19276 2008-12-21  Bruno Haible  <bruno@clisp.org>
19277
19278         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
19279
19280 2008-12-21  Bruno Haible  <bruno@clisp.org>
19281
19282         * modules/wcsnrtombs-tests: New file.
19283         * tests/test-wcsnrtombs1.sh: New file.
19284         * tests/test-wcsnrtombs2.sh: New file.
19285         * tests/test-wcsnrtombs3.sh: New file.
19286         * tests/test-wcsnrtombs4.sh: New file.
19287         * tests/test-wcsnrtombs.c: New file.
19288
19289         New module 'wcsnrtombs'.
19290         * lib/wchar.in.h (wcsnrtombs): New declaration.
19291         * lib/wcsnrtombs.c: New file.
19292         * lib/wcsrtombs-state.c: New file.
19293         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
19294         (internal_state): Remove variable.
19295         * m4/wcsnrtombs.m4: New file.
19296         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
19297         compilation units.
19298         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
19299         HAVE_WCSNRTOMBS.
19300         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
19301         HAVE_WCSNRTOMBS.
19302         * modules/wcsnrtombs: New file.
19303         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
19304         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
19305
19306 2008-12-21  Bruno Haible  <bruno@clisp.org>
19307
19308         * modules/wcsrtombs-tests: New file.
19309         * tests/test-wcsrtombs1.sh: New file.
19310         * tests/test-wcsrtombs2.sh: New file.
19311         * tests/test-wcsrtombs3.sh: New file.
19312         * tests/test-wcsrtombs4.sh: New file.
19313         * tests/test-wcsrtombs.c: New file.
19314
19315         New module 'wcsrtombs'.
19316         * lib/wchar.in.h (wcsrtombs): New declaration.
19317         * lib/wcsrtombs.c: New file.
19318         * m4/wcsrtombs.m4: New file.
19319         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
19320         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
19321         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
19322         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
19323         * modules/wcsrtombs: New file.
19324         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
19325         bugs.
19326
19327 2008-12-21  Bruno Haible  <bruno@clisp.org>
19328
19329         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
19330         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
19331         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
19332         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
19333         if not correct.
19334         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
19335         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
19336         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
19337         m4/locale-zh.m4, m4/codeset.m4.
19338         * doc/posix-functions/wcrtomb.texi: Document the bug.
19339
19340 2008-12-21  Bruno Haible  <bruno@clisp.org>
19341
19342         Work around a btowc() bug on IRIX 6.5.
19343         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
19344         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
19345         REPLACE_WTOBC if not.
19346         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
19347         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
19348         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
19349
19350 2008-12-21  Bruno Haible  <bruno@clisp.org>
19351
19352         * modules/wcrtomb-tests: New file.
19353         * tests/test-wcrtomb.sh: New file.
19354         * tests/test-wcrtomb.c: New file.
19355
19356         New module 'wcrtomb'.
19357         * lib/wchar.in.h (wcrtomb): New declaration.
19358         * lib/wcrtomb.c: New file.
19359         * m4/wcrtomb.m4: New file.
19360         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
19361         HAVE_WCRTOMB.
19362         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
19363         HAVE_WCRTOMB.
19364         * modules/wcrtomb: New file.
19365         * doc/posix-functions/wcrtomb.texi: Mention the new module.
19366
19367 2008-12-21  Bruno Haible  <bruno@clisp.org>
19368
19369         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
19370         * modules/mbsrtowcs (Files): Likewise.
19371         * modules/wctob (Files): Likewise.
19372         * modules/c-strcase-tests (Files): Likewise.
19373         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
19374         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
19375         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
19376         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
19377         * modules/vasnprintf-posix-tests (Files): Likewise.
19378
19379 2008-12-21  William Pursell  <bill.pursell@gmail.com>
19380
19381         gitlog-to-changelog: pass all command-line arguments to git-log
19382         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
19383         it is sometimes convenient to filter the commits in various ways.
19384         gitlog-to-changelog only allows --since to specify a start date,
19385         but git-log itself supports many other filtering mechanisms.
19386         At the moment, I want to filter by branch name.  Rather than
19387         adding a --branch option to gitlog-to-changelog, it seems more
19388         flexible to simply pass all options directly to git-log and let
19389         git do the work.  Notice that this effectively makes --since a
19390         redundant option for gitlog-to-changelog, but removing it would
19391         require current usage to change since calls would then require
19392         an additional '--'.
19393
19394 2008-12-21  Bruno Haible  <bruno@clisp.org>
19395
19396         * modules/mbsnrtowcs-tests: New file.
19397         * tests/test-mbsnrtowcs1.sh: New file.
19398         * tests/test-mbsnrtowcs2.sh: New file.
19399         * tests/test-mbsnrtowcs3.sh: New file.
19400         * tests/test-mbsnrtowcs4.sh: New file.
19401         * tests/test-mbsnrtowcs.c: New file.
19402
19403         New module 'mbsnrtowcs'.
19404         * lib/wchar.in.h (mbsnrtowcs): New declaration.
19405         * lib/mbsnrtowcs.c: New file.
19406         * lib/mbsrtowcs-state.c: New file.
19407         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
19408         (internal_state): Remove variable.
19409         * m4/mbsnrtowcs.m4: New file.
19410         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
19411         compilation units.
19412         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
19413         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
19414         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
19415         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
19416         * modules/mbsnrtowcs: New file.
19417         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
19418         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
19419         portability problem.
19420
19421 2008-12-21  Bruno Haible  <bruno@clisp.org>
19422
19423         Work around mbsrtowcs bug.
19424         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
19425         (gl_FUNC_MBSRTOWCS): Invoke it.
19426         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
19427         m4/locale-zh.m4.
19428         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
19429
19430 2008-12-21  Bruno Haible  <bruno@clisp.org>
19431
19432         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
19433
19434 2008-12-21  Bruno Haible  <bruno@clisp.org>
19435
19436         Update doc for AIX.
19437         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
19438         16-bit wchar_t type.
19439         * doc/posix-functions/btowc.texi: Likewise.
19440         * doc/posix-functions/fgetwc.texi: Likewise.
19441         * doc/posix-functions/fgetws.texi: Likewise.
19442         * doc/posix-functions/fputwc.texi: Likewise.
19443         * doc/posix-functions/fputws.texi: Likewise.
19444         * doc/posix-functions/fwide.texi: Likewise.
19445         * doc/posix-functions/fwprintf.texi: Likewise.
19446         * doc/posix-functions/fwscanf.texi: Likewise.
19447         * doc/posix-functions/getwchar.texi: Likewise.
19448         * doc/posix-functions/getwc.texi: Likewise.
19449         * doc/posix-functions/iswalnum.texi: Likewise.
19450         * doc/posix-functions/iswalpha.texi: Likewise.
19451         * doc/posix-functions/iswblank.texi: Likewise.
19452         * doc/posix-functions/iswcntrl.texi: Likewise.
19453         * doc/posix-functions/iswctype.texi: Likewise.
19454         * doc/posix-functions/iswdigit.texi: Likewise.
19455         * doc/posix-functions/iswgraph.texi: Likewise.
19456         * doc/posix-functions/iswlower.texi: Likewise.
19457         * doc/posix-functions/iswprint.texi: Likewise.
19458         * doc/posix-functions/iswpunct.texi: Likewise.
19459         * doc/posix-functions/iswspace.texi: Likewise.
19460         * doc/posix-functions/iswupper.texi: Likewise.
19461         * doc/posix-functions/iswxdigit.texi: Likewise.
19462         * doc/posix-functions/mbrtowc.texi: Likewise.
19463         * doc/posix-functions/mbsrtowcs.texi: Likewise.
19464         * doc/posix-functions/mbstowcs.texi: Likewise.
19465         * doc/posix-functions/mbtowc.texi: Likewise.
19466         * doc/posix-functions/putwchar.texi: Likewise.
19467         * doc/posix-functions/putwc.texi: Likewise.
19468         * doc/posix-functions/swprintf.texi: Likewise.
19469         * doc/posix-functions/tolower.texi: Likewise.
19470         * doc/posix-functions/toupper.texi: Likewise.
19471         * doc/posix-functions/towctrans.texi: Likewise.
19472         * doc/posix-functions/ungetwc.texi: Likewise.
19473         * doc/posix-functions/vswprintf.texi: Likewise.
19474         * doc/posix-functions/wcrtomb.texi: Likewise.
19475         * doc/posix-functions/wcscat.texi: Likewise.
19476         * doc/posix-functions/wcschr.texi: Likewise.
19477         * doc/posix-functions/wcscmp.texi: Likewise.
19478         * doc/posix-functions/wcscoll.texi: Likewise.
19479         * doc/posix-functions/wcscpy.texi: Likewise.
19480         * doc/posix-functions/wcscspn.texi: Likewise.
19481         * doc/posix-functions/wcsftime.texi: Likewise.
19482         * doc/posix-functions/wcslen.texi: Likewise.
19483         * doc/posix-functions/wcsncat.texi: Likewise.
19484         * doc/posix-functions/wcsncmp.texi: Likewise.
19485         * doc/posix-functions/wcsncpy.texi: Likewise.
19486         * doc/posix-functions/wcspbrk.texi: Likewise.
19487         * doc/posix-functions/wcsrchr.texi: Likewise.
19488         * doc/posix-functions/wcsrtombs.texi: Likewise.
19489         * doc/posix-functions/wcsspn.texi: Likewise.
19490         * doc/posix-functions/wcsstr.texi: Likewise.
19491         * doc/posix-functions/wcstod.texi: Likewise.
19492         * doc/posix-functions/wcstof.texi: Likewise.
19493         * doc/posix-functions/wcstoimax.texi: Likewise.
19494         * doc/posix-functions/wcstok.texi: Likewise.
19495         * doc/posix-functions/wcstold.texi: Likewise.
19496         * doc/posix-functions/wcstoll.texi: Likewise.
19497         * doc/posix-functions/wcstol.texi: Likewise.
19498         * doc/posix-functions/wcstombs.texi: Likewise.
19499         * doc/posix-functions/wcstoull.texi: Likewise.
19500         * doc/posix-functions/wcstoul.texi: Likewise.
19501         * doc/posix-functions/wcstoumax.texi: Likewise.
19502         * doc/posix-functions/wcswidth.texi: Likewise.
19503         * doc/posix-functions/wcsxfrm.texi: Likewise.
19504         * doc/posix-functions/wctob.texi: Likewise.
19505         * doc/posix-functions/wctomb.texi: Likewise.
19506         * doc/posix-functions/wctrans.texi: Likewise.
19507         * doc/posix-functions/wctype.texi: Likewise.
19508         * doc/posix-functions/wcwidth.texi: Likewise.
19509         * doc/posix-functions/wmemchr.texi: Likewise.
19510         * doc/posix-functions/wmemcmp.texi: Likewise.
19511         * doc/posix-functions/wmemcpy.texi: Likewise.
19512         * doc/posix-functions/wmemmove.texi: Likewise.
19513         * doc/posix-functions/wmemset.texi: Likewise.
19514         * doc/posix-functions/wprintf.texi: Likewise.
19515         * doc/posix-functions/wscanf.texi: Likewise.
19516
19517 2008-12-21  Bruno Haible  <bruno@clisp.org>
19518
19519         Update doc for HP-UX 11.11.
19520         * doc/posix-functions/btowc.texi: Clarify that the function is missing
19521         in HP-UX version 11.00, not in all versions of HP-UX 11.
19522         * doc/posix-functions/fwide.texi: Likewise.
19523         * doc/posix-functions/fwprintf.texi: Likewise.
19524         * doc/posix-functions/fwscanf.texi: Likewise.
19525         * doc/posix-functions/inet_ntop.texi: Likewise.
19526         * doc/posix-functions/inet_pton.texi: Likewise.
19527         * doc/posix-functions/mbrlen.texi: Likewise.
19528         * doc/posix-functions/mbrtowc.texi: Likewise.
19529         * doc/posix-functions/mbsinit.texi: Likewise.
19530         * doc/posix-functions/mbsrtowcs.texi: Likewise.
19531         * doc/posix-functions/swprintf.texi: Likewise.
19532         * doc/posix-functions/swscanf.texi: Likewise.
19533         * doc/posix-functions/towctrans.texi: Likewise.
19534         * doc/posix-functions/vfwprintf.texi: Likewise.
19535         * doc/posix-functions/vswprintf.texi: Likewise.
19536         * doc/posix-functions/vwprintf.texi: Likewise.
19537         * doc/posix-functions/wcrtomb.texi: Likewise.
19538         * doc/posix-functions/wcsrtombs.texi: Likewise.
19539         * doc/posix-functions/wcsstr.texi: Likewise.
19540         * doc/posix-functions/wctob.texi: Likewise.
19541         * doc/posix-functions/wctrans.texi: Likewise.
19542         * doc/posix-functions/wmemchr.texi: Likewise.
19543         * doc/posix-functions/wmemcmp.texi: Likewise.
19544         * doc/posix-functions/wmemcpy.texi: Likewise.
19545         * doc/posix-functions/wmemmove.texi: Likewise.
19546         * doc/posix-functions/wmemset.texi: Likewise.
19547         * doc/posix-functions/wprintf.texi: Likewise.
19548         * doc/posix-functions/wscanf.texi: Likewise.
19549
19550 2008-12-21  Bruno Haible  <bruno@clisp.org>
19551
19552         Work around a portability problem.
19553         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
19554         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
19555
19556 2008-12-20  Bruno Haible  <bruno@clisp.org>
19557
19558         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
19559         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
19560         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
19561         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
19562         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
19563
19564         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
19565         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
19566         set.
19567         (GNULIB_defined_mbstate_t): New macro.
19568         (mbsinit): Redefine if REPLACE_MBSINIT is set.
19569         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
19570         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
19571         reuses the system's mbrtowc function but works around the bugs.
19572         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
19573         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
19574         macros.
19575         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
19576         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
19577         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
19578         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
19579         REPLACE_MBSINIT if mbsinit needs to be overridden.
19580         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
19581         REPLACE_MBSINIT, REPLACE_MBRTOWC.
19582         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
19583         REPLACE_MBSINIT, REPLACE_MBRTOWC.
19584         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
19585         m4/locale-zh.m4.
19586         (Depends): Add mbsinit.
19587         * modules/mbsinit (Depends): Add mbrtowc.
19588         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
19589
19590 2008-12-20  Bruno Haible  <bruno@clisp.org>
19591
19592         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
19593         so that there are no conversion errors on AIX.
19594         * tests/test-mbsrtowcs.c (main): LIkewise.
19595
19596 2008-12-20  Bruno Haible  <bruno@clisp.org>
19597
19598         Work around wctob bug on Solaris <= 9.
19599         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
19600         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
19601         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
19602         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
19603         * modules/wctob (Files): Add m4/locale-fr.m4.
19604         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
19605
19606 2008-12-20  Bruno Haible  <bruno@clisp.org>
19607
19608         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
19609         /dev/null.
19610         * tests/test-select-in.sh: Likewise.
19611         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
19612
19613 2008-12-20  Bruno Haible  <bruno@clisp.org>
19614
19615         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
19616         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
19617         Cygwin 1.5.x.
19618
19619 2008-12-20  Bruno Haible  <bruno@clisp.org>
19620
19621         Ensure mbstate_t is defined on HP-UX 11.11.
19622         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
19623         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
19624         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
19625         AC_USE_SYSTEM_EXTENSIONS.
19626         * modules/fnmatch (Depends-on): Add extensions.
19627         * modules/mbrlen (Depends-on): Likewise.
19628         * modules/mbrtowc (Depends-on): Likewise.
19629         * modules/mbsinit (Depends-on): Likewise.
19630         * modules/mbsrtowcs (Depends-on): Likewise.
19631         * modules/mbswidth (Depends-on): Likewise.
19632         * modules/quotearg (Depends-on): Likewise.
19633         * modules/strftime (Depends-on): Likewise.
19634
19635 2008-12-20  Bruno Haible  <bruno@clisp.org>
19636
19637         Ensure wctob is declared on IRIX 6.5.
19638         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
19639         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
19640         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
19641         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
19642         of HAVE_WCTOB.
19643         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
19644         HAVE_WCTOB.
19645         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
19646
19647 2008-12-19  Bruno Haible  <bruno@clisp.org>
19648
19649         * modules/mbsrtowcs-tests: New file.
19650         * tests/test-mbsrtowcs1.sh: New file.
19651         * tests/test-mbsrtowcs2.sh: New file.
19652         * tests/test-mbsrtowcs3.sh: New file.
19653         * tests/test-mbsrtowcs4.sh: New file.
19654         * tests/test-mbsrtowcs.c: New file.
19655
19656         New module 'mbsrtowcs'.
19657         * lib/wchar.in.h (mbsrtowcs): New declaration.
19658         * lib/mbsrtowcs.c: New file.
19659         * m4/mbsrtowcs.m4: New file.
19660         * modules/mbsrtowcs: New file.
19661         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
19662         HAVE_MBSRTOWCS.
19663         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
19664         HAVE_MBSRTOWCS.
19665         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
19666
19667 2008-12-19  Bruno Haible  <bruno@clisp.org>
19668
19669         New module 'mbrlen'.
19670         * lib/wchar.in.h (mbrlen): New declaration.
19671         * lib/mbrlen.c: New file.
19672         * m4/mbrlen.m4: New file.
19673         * modules/mbrlen: New file.
19674         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
19675         HAVE_MBRLEN.
19676         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
19677         HAVE_MBRLEN.
19678         * doc/posix-functions/mbrlen.texi: Document the new module.
19679
19680 2008-12-19  Bruno Haible  <bruno@clisp.org>
19681
19682         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
19683         * modules/mbrtowc (Depends-on): Add verify.
19684         Suggested by Paul Eggert.
19685
19686 2008-12-18  Bruno Haible  <bruno@clisp.org>
19687
19688         * modules/mbsinit-tests: New file.
19689         * tests/test-mbsinit.sh: New file.
19690         * tests/test-mbsinit.c: New file.
19691
19692 2008-12-18  Bruno Haible  <bruno@clisp.org>
19693
19694         * modules/mbrtowc-tests: New file.
19695         * tests/test-mbrtowc1.sh: New file.
19696         * tests/test-mbrtowc2.sh: New file.
19697         * tests/test-mbrtowc3.sh: New file.
19698         * tests/test-mbrtowc4.sh: New file.
19699         * tests/test-mbrtowc.c: New file.
19700
19701         New module 'mbrtowc'.
19702         * lib/wchar.in.h (mbstate_t): Override when the system does not have
19703         mbsinit and mbrtowc.
19704         (mbrtowc): New declaration.
19705         * lib/mbrtowc.c: New file.
19706         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
19707         * modules/mbrtowc: New file.
19708         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
19709         HAVE_MBRTOWC.
19710         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
19711         HAVE_MBRTOWC.
19712         * doc/posix-functions/mbrtowc.texi: Document the new module.
19713
19714 2008-12-18  Bruno Haible  <bruno@clisp.org>
19715
19716         New module 'wctob'.
19717         * lib/wchar.in.h (wctob): New declaration.
19718         * lib/wctob.c: New file.
19719         * m4/wctob.m4: New file.
19720         * modules/wctob: New file.
19721         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
19722         HAVE_WCTOB.
19723         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
19724         * doc/posix-functions/wctob.texi: Document the new module.
19725
19726 2008-12-18  Bruno Haible  <bruno@clisp.org>
19727
19728         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
19729         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
19730
19731 2008-12-18  Simon Josefsson  <simon@josefsson.org>
19732
19733         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
19734         G. Christensen" <tgc@jupiterrise.com>.
19735
19736         * lib/flock.c: Need to include errno.h.  Reported by "Tom
19737         G. Christensen" <tgc@jupiterrise.com>.
19738
19739         * lib/flock.c: Need to include string.h.  Reported by "Tom
19740         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
19741         <ebb9@byu.net>.
19742
19743 2008-12-18  Bruno Haible  <bruno@clisp.org>
19744
19745         * m4/locale-ja.m4: New file, from GNU gettext.
19746
19747 2008-12-17  Bruno Haible  <bruno@clisp.org>
19748
19749         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
19750         Suggested by Eric Blake.
19751
19752 2008-12-17  Bruno Haible  <bruno@clisp.org>
19753
19754         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
19755
19756 2008-12-17  Bruno Haible  <bruno@clisp.org>
19757
19758         * lib/mbsinit.c: Include verify.h. Verify an assumption.
19759         * modules/mbsinit (Depends-on): Add verify.
19760         Suggested by Paul Eggert.
19761
19762 2008-12-17  Bruno Haible  <bruno@clisp.org>
19763
19764         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
19765         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
19766         gl_FUNC_MBRTOWC.
19767         * m4/mbiter.m4 (gl_MBITER): LIkewise.
19768         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
19769         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
19770         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
19771         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
19772         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
19773         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
19774         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
19775         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
19776         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
19777         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
19778         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
19779         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
19780         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
19781         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
19782         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
19783         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
19784         * modules/trim (configure.ac): Likewise.
19785
19786 2008-12-17  Bruno Haible  <bruno@clisp.org>
19787
19788         * modules/btowc-tests: New file.
19789         * tests/test-btowc1.sh: New file.
19790         * tests/test-btowc2.sh: New file.
19791         * tests/test-btowc.c: New file.
19792
19793         New module 'btowc'.
19794         * lib/wchar.in.h (btowc): New declaration.
19795         * lib/btowc.c: New file.
19796         * m4/btowc.m4: New file.
19797         * modules/btowc: New file.
19798         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
19799         HAVE_BTOWC.
19800         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
19801         * doc/posix-functions/btowc.texi: Document the new module.
19802
19803 2008-12-17  Bruno Haible  <bruno@clisp.org>
19804
19805         New module 'mbsinit'.
19806         * lib/wchar.in.h (mbsinit): New declaration.
19807         * lib/mbsinit.c: New file.
19808         * m4/mbsinit.m4: New file.
19809         * modules/mbsinit: New file.
19810         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
19811         HAVE_MBSINIT.
19812         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
19813         HAVE_MBSINIT.
19814         * doc/posix-functions/mbsinit.texi: Document the new module.
19815
19816 2008-12-16  Bruno Haible  <bruno@clisp.org>
19817
19818         * lib/unistd.in.h: Add comment.
19819         * tests/test-environ.c: Don't include <stdlib.h>.
19820
19821 2008-12-16  Bruno Haible  <bruno@clisp.org>
19822
19823         * lib/parse-duration.h (parse_duration): Document return value
19824         convention.
19825         * lib/parse-duration.c: Include specification header first. Add
19826         comments.
19827         (_): Remove macro.
19828         (parse_year_month_day, parse_hour_minute_second): Move side effects
19829         outside of strchr call.
19830         (parse_non_iso8601): Move side effects outside of isspace call.
19831         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
19832         call.
19833
19834 2008-12-16  Bruno Haible  <bruno@clisp.org>
19835
19836         * tests/test-parse-duration.sh: Produce no output when the test
19837         succeeds.
19838
19839 2008-12-16  Bruno Haible  <bruno@clisp.org>
19840
19841         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
19842         expressions.
19843
19844 2008-12-15  Bruno Haible  <bruno@clisp.org>
19845
19846         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
19847         * doc/glibc-functions/flistxattr.texi: Likewise.
19848         * doc/glibc-functions/fopencookie.texi: Likewise.
19849         * doc/glibc-functions/fremovexattr.texi: Likewise.
19850         * doc/glibc-functions/fsetxattr.texi: Likewise.
19851         * doc/glibc-functions/getxattr.texi: Likewise.
19852         * doc/glibc-functions/lgetxattr.texi: Likewise.
19853         * doc/glibc-functions/listxattr.texi: Likewise.
19854         * doc/glibc-functions/llistxattr.texi: Likewise.
19855         * doc/glibc-functions/lremovexattr.texi: Likewise.
19856         * doc/glibc-functions/lsetxattr.texi: Likewise.
19857         * doc/glibc-functions/removexattr.texi: Likewise.
19858         * doc/glibc-functions/setxattr.texi: Likewise.
19859         * doc/posix-functions/open_memstream.texi: Likewise.
19860
19861 2008-12-15  Eric Blake  <ebb9@byu.net>
19862
19863         Update doc for cygwin 1.7.
19864         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
19865         functions.
19866         * doc/posix-functions/fchmodat.texi: Likewise.
19867         * doc/posix-functions/fchownat.texi: Likewise.
19868         * doc/posix-functions/fdopendir.texi: Likewise.
19869         * doc/posix-functions/fmemopen.texi: Likewise.
19870         * doc/posix-functions/freeaddrinfo.texi: Likewise.
19871         * doc/posix-functions/fstatat.texi: Likewise.
19872         * doc/posix-functions/futimens.texi: Likewise.
19873         * doc/posix-functions/gai_strerror.texi: Likewise.
19874         * doc/posix-functions/getaddrinfo.texi: Likewise.
19875         * doc/posix-functions/getnameinfo.texi: Likewise.
19876         * doc/posix-functions/if_freenameindex.texi: Likewise.
19877         * doc/posix-functions/if_indextoname.texi: Likewise.
19878         * doc/posix-functions/if_nameindex.texi: Likewise.
19879         * doc/posix-functions/if_nametoindex.texi: Likewise.
19880         * doc/posix-functions/insque.texi: Likewise.
19881         * doc/posix-functions/linkat.texi: Likewise.
19882         * doc/posix-functions/llrint.texi: Likewise.
19883         * doc/posix-functions/llrintf.texi: Likewise.
19884         * doc/posix-functions/llrintl.texi: Likewise.
19885         * doc/posix-functions/lockf.texi: Likewise.
19886         * doc/posix-functions/lrintl.texi: Likewise.
19887         * doc/posix-functions/mkdirat.texi: Likewise.
19888         * doc/posix-functions/mkfifoat.texi: Likewise.
19889         * doc/posix-functions/mknodat.texi: Likewise.
19890         * doc/posix-functions/mq_close.texi: Likewise.
19891         * doc/posix-functions/mq_getattr.texi: Likewise.
19892         * doc/posix-functions/mq_notify.texi: Likewise.
19893         * doc/posix-functions/mq_open.texi: Likewise.
19894         * doc/posix-functions/mq_receive.texi: Likewise.
19895         * doc/posix-functions/mq_send.texi: Likewise.
19896         * doc/posix-functions/mq_setattr.texi: Likewise.
19897         * doc/posix-functions/mq_timedreceive.texi: Likewise.
19898         * doc/posix-functions/mq_timedsend.texi: Likewise.
19899         * doc/posix-functions/mq_unlink.texi: Likewise.
19900         * doc/posix-functions/open_memstream.texi: Likewise.
19901         * doc/posix-functions/openat.texi: Likewise.
19902         * doc/posix-functions/posix_fadvise.texi: Likewise.
19903         * doc/posix-functions/posix_fallocate.texi: Likewise.
19904         * doc/posix-functions/posix_madvise.texi: Likewise.
19905         * doc/posix-functions/posix_memalign.texi: Likewise.
19906         * doc/posix-functions/posix_openpt.texi: Likewise.
19907         * doc/posix-functions/readlinkat.texi: Likewise.
19908         * doc/posix-functions/remque.texi: Likewise.
19909         * doc/posix-functions/renameat.texi: Likewise.
19910         * doc/posix-functions/rintl.texi: Likewise.
19911         * doc/posix-functions/sem_unlink.texi: Likewise.
19912         * doc/posix-functions/shm_open.texi: Likewise.
19913         * doc/posix-functions/shm_unlink.texi: Likewise.
19914         * doc/posix-functions/signgam.texi: Likewise.
19915         * doc/posix-functions/sigset.texi: Likewise.
19916         * doc/posix-functions/stpcpy.texi: Likewise.
19917         * doc/posix-functions/stpncpy.texi: Likewise.
19918         * doc/posix-functions/strerror.texi: Likewise.
19919         * doc/posix-functions/strtod.texi: Likewise.
19920         * doc/posix-functions/symlinkat.texi: Likewise.
19921         * doc/posix-functions/unlinkat.texi: Likewise.
19922         * doc/posix-functions/utimensat.texi: Likewise.
19923         * doc/glibc-functions/bindresvport.texi: Likewise.
19924         * doc/glibc-functions/dn_expand.texi: Likewise.
19925         * doc/glibc-functions/exp10.texi: Likewise.
19926         * doc/glibc-functions/exp10f.texi: Likewise.
19927         * doc/glibc-functions/fgetxattr.texi: Likewise.
19928         * doc/glibc-functions/flistxattr.texi: Likewise.
19929         * doc/glibc-functions/fopencookie.texi: Likewise.
19930         * doc/glibc-functions/freeifaddrs.texi: Likewise.
19931         * doc/glibc-functions/fremovexattr.texi: Likewise.
19932         * doc/glibc-functions/fsetxattr.texi: Likewise.
19933         * doc/glibc-functions/getifaddrs.texi: Likewise.
19934         * doc/glibc-functions/getxattr.texi: Likewise.
19935         * doc/glibc-functions/lgetxattr.texi: Likewise.
19936         * doc/glibc-functions/listxattr.texi: Likewise.
19937         * doc/glibc-functions/llistxattr.texi: Likewise.
19938         * doc/glibc-functions/lremovexattr.texi: Likewise.
19939         * doc/glibc-functions/lsetxattr.texi: Likewise.
19940         * doc/glibc-functions/pow10.texi: Likewise.
19941         * doc/glibc-functions/pow10f.texi: Likewise.
19942         * doc/glibc-functions/rcmd_af.texi: Likewise.
19943         * doc/glibc-functions/removexattr.texi: Likewise.
19944         * doc/glibc-functions/res_init.texi: Likewise.
19945         * doc/glibc-functions/res_mkquery.texi: Likewise.
19946         * doc/glibc-functions/res_query.texi: Likewise.
19947         * doc/glibc-functions/res_querydomain.texi: Likewise.
19948         * doc/glibc-functions/res_send.texi: Likewise.
19949         * doc/glibc-functions/rresvport_af.texi: Likewise.
19950         * doc/glibc-functions/setxattr.texi: Likewise.
19951         * doc/glibc-functions/strcasestr.texi: Likewise.
19952
19953 2008-12-15  Bruno Haible  <bruno@clisp.org>
19954
19955         Fix compilation error on OSF/1 4.0.
19956         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
19957         <sys/time.h>, simply delegate to the system header.
19958         Reported by Daniel Richard G. <oss@teragram.com>.
19959
19960 2008-12-15  Bruno Haible  <bruno@clisp.org>
19961
19962         * doc/posix-functions/openat.texi: Mention the 'openat' module.
19963         * doc/posix-functions/fchmodat.texi: Likewise.
19964         * doc/posix-functions/fchownat.texi: Likewise.
19965         * doc/posix-functions/fdopendir.texi: Likewise.
19966         * doc/posix-functions/fstatat.texi: Likewise.
19967         * doc/posix-functions/mkdirat.texi: Likewise.
19968         * doc/posix-functions/unlinkat.texi: Likewise.
19969
19970 2008-12-14  Bruno Haible  <bruno@clisp.org>
19971
19972         Update doc for POSIX:2008.
19973         * doc/posix-functions/faccessat.texi: New file.
19974         * doc/posix-functions/fchmodat.texi: New file.
19975         * doc/posix-functions/fchownat.texi: New file.
19976         * doc/posix-functions/fdopendir.texi: New file.
19977         * doc/posix-functions/fstatat.texi: New file.
19978         * doc/posix-functions/futimens.texi: New file.
19979         * doc/posix-functions/linkat.texi: New file.
19980         * doc/posix-functions/mkdirat.texi: New file.
19981         * doc/posix-functions/mkfifoat.texi: New file.
19982         * doc/posix-functions/mknodat.texi: New file.
19983         * doc/posix-functions/open_wmemstream.texi: New file.
19984         * doc/posix-functions/openat.texi: New file.
19985         * doc/posix-functions/psiginfo.texi: New file.
19986         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
19987         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
19988         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
19989         * doc/posix-functions/readlinkat.texi: New file.
19990         * doc/posix-functions/renameat.texi: New file.
19991         * doc/posix-functions/strerror_l.texi: New file.
19992         * doc/posix-functions/symlinkat.texi: New file.
19993         * doc/posix-functions/unlinkat.texi: New file.
19994         * doc/posix-functions/utimensat.texi: New file.
19995         * doc/gnulib.texi (Function Substitutes): Add these subsections.
19996
19997 2008-12-14  Bruno Haible  <bruno@clisp.org>
19998
19999         Update doc for POSIX:2008.
20000         * doc/posix-functions/alphasort.texi: Renamed from
20001         doc/glibc-functions/alphasort.texi.
20002         * doc/posix-functions/dirfd.texi: Renamed from
20003         doc/glibc-functions/dirfd.texi.
20004         * doc/posix-functions/dprintf.texi: Renamed from
20005         doc/glibc-functions/dprintf.texi.
20006         * doc/posix-functions/duplocale.texi: Renamed from
20007         doc/glibc-functions/duplocale.texi.
20008         * doc/posix-functions/fexecve.texi: Renamed from
20009         doc/glibc-functions/fexecve.texi.
20010         * doc/posix-functions/fmemopen.texi: Renamed from
20011         doc/glibc-functions/fmemopen.texi.
20012         * doc/posix-functions/freelocale.texi: Renamed from
20013         doc/glibc-functions/freelocale.texi.
20014         * doc/posix-functions/getdate_err.texi: Renamed from
20015         doc/glibc-functions/getdate_err.texi.
20016         * doc/posix-functions/isalnum_l.texi: Renamed from
20017         doc/glibc-functions/isalnum_l.texi.
20018         * doc/posix-functions/isalpha_l.texi: Renamed from
20019         doc/glibc-functions/isalpha_l.texi.
20020         * doc/posix-functions/isblank_l.texi: Renamed from
20021         doc/glibc-functions/isblank_l.texi.
20022         * doc/posix-functions/iscntrl_l.texi: Renamed from
20023         doc/glibc-functions/iscntrl_l.texi.
20024         * doc/posix-functions/isdigit_l.texi: Renamed from
20025         doc/glibc-functions/isdigit_l.texi.
20026         * doc/posix-functions/isgraph_l.texi: Renamed from
20027         doc/glibc-functions/isgraph_l.texi.
20028         * doc/posix-functions/islower_l.texi: Renamed from
20029         doc/glibc-functions/islower_l.texi.
20030         * doc/posix-functions/isprint_l.texi: Renamed from
20031         doc/glibc-functions/isprint_l.texi.
20032         * doc/posix-functions/ispunct_l.texi: Renamed from
20033         doc/glibc-functions/ispunct_l.texi.
20034         * doc/posix-functions/isspace_l.texi: Renamed from
20035         doc/glibc-functions/isspace_l.texi.
20036         * doc/posix-functions/isupper_l.texi: Renamed from
20037         doc/glibc-functions/isupper_l.texi.
20038         * doc/posix-functions/iswalnum_l.texi: Renamed from
20039         doc/glibc-functions/iswalnum_l.texi.
20040         * doc/posix-functions/iswalpha_l.texi: Renamed from
20041         doc/glibc-functions/iswalpha_l.texi.
20042         * doc/posix-functions/iswblank_l.texi: Renamed from
20043         doc/glibc-functions/iswblank_l.texi.
20044         * doc/posix-functions/iswcntrl_l.texi: Renamed from
20045         doc/glibc-functions/iswcntrl_l.texi.
20046         * doc/posix-functions/iswctype_l.texi: Renamed from
20047         doc/glibc-functions/iswctype_l.texi.
20048         * doc/posix-functions/iswdigit_l.texi: Renamed from
20049         doc/glibc-functions/iswdigit_l.texi.
20050         * doc/posix-functions/iswgraph_l.texi: Renamed from
20051         doc/glibc-functions/iswgraph_l.texi.
20052         * doc/posix-functions/iswlower_l.texi: Renamed from
20053         doc/glibc-functions/iswlower_l.texi.
20054         * doc/posix-functions/iswprint_l.texi: Renamed from
20055         doc/glibc-functions/iswprint_l.texi.
20056         * doc/posix-functions/iswpunct_l.texi: Renamed from
20057         doc/glibc-functions/iswpunct_l.texi.
20058         * doc/posix-functions/iswspace_l.texi: Renamed from
20059         doc/glibc-functions/iswspace_l.texi.
20060         * doc/posix-functions/iswupper_l.texi: Renamed from
20061         doc/glibc-functions/iswupper_l.texi.
20062         * doc/posix-functions/iswxdigit_l.texi: Renamed from
20063         doc/glibc-functions/iswxdigit_l.texi.
20064         * doc/posix-functions/isxdigit_l.texi: Renamed from
20065         doc/glibc-functions/isxdigit_l.texi.
20066         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
20067         doc/glibc-functions/mbsnrtowcs.texi.
20068         * doc/posix-functions/mkdtemp.texi: Renamed from
20069         doc/glibc-functions/mkdtemp.texi.
20070         * doc/posix-functions/newlocale.texi: Renamed from
20071         doc/glibc-functions/newlocale.texi.
20072         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
20073         doc/glibc-functions/nl_langinfo_l.texi.
20074         * doc/posix-functions/open_memstream.texi: Renamed from
20075         doc/glibc-functions/open_memstream.texi.
20076         * doc/posix-functions/opterr.texi: Renamed from
20077         doc/glibc-functions/opterr.texi.
20078         * doc/posix-functions/optind.texi: Renamed from
20079         doc/glibc-functions/optind.texi.
20080         * doc/posix-functions/optopt.texi: Renamed from
20081         doc/glibc-functions/optopt.texi.
20082         * doc/posix-functions/psignal.texi: Renamed from
20083         doc/glibc-functions/psignal.texi.
20084         * doc/posix-functions/scandir.texi: Renamed from
20085         doc/glibc-functions/scandir.texi.
20086         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
20087         doc/glibc-functions/sched_get_priority_min.texi.
20088         * doc/posix-functions/signgam.texi: Renamed from
20089         doc/glibc-functions/signgam.texi.
20090         * doc/posix-functions/stpcpy.texi: Renamed from
20091         doc/glibc-functions/stpcpy.texi.
20092         * doc/posix-functions/stpncpy.texi: Renamed from
20093         doc/glibc-functions/stpncpy.texi.
20094         * doc/posix-functions/strcasecmp_l.texi: Renamed from
20095         doc/glibc-functions/strcasecmp_l.texi.
20096         * doc/posix-functions/strcoll_l.texi: Renamed from
20097         doc/glibc-functions/strcoll_l.texi.
20098         * doc/posix-functions/strfmon_l.texi: Renamed from
20099         doc/glibc-functions/strfmon_l.texi.
20100         * doc/posix-functions/strftime_l.texi: Renamed from
20101         doc/glibc-functions/strftime_l.texi.
20102         * doc/posix-functions/strncasecmp_l.texi: Renamed from
20103         doc/glibc-functions/strncasecmp_l.texi.
20104         * doc/posix-functions/strndup.texi: Renamed from
20105         doc/glibc-functions/strndup.texi.
20106         * doc/posix-functions/strnlen.texi: Renamed from
20107         doc/glibc-functions/strnlen.texi.
20108         * doc/posix-functions/strsignal.texi: Renamed from
20109         doc/glibc-functions/strsignal.texi.
20110         * doc/posix-functions/strxfrm_l.texi: Renamed from
20111         doc/glibc-functions/strxfrm_l.texi.
20112         * doc/posix-functions/timer_gettime.texi: Renamed from
20113         doc/glibc-functions/timer_gettime.texi.
20114         * doc/posix-functions/tolower_l.texi: Renamed from
20115         doc/glibc-functions/tolower_l.texi.
20116         * doc/posix-functions/toupper_l.texi: Renamed from
20117         doc/glibc-functions/toupper_l.texi.
20118         * doc/posix-functions/towctrans_l.texi: Renamed from
20119         doc/glibc-functions/towctrans_l.texi.
20120         * doc/posix-functions/towlower_l.texi: Renamed from
20121         doc/glibc-functions/towlower_l.texi.
20122         * doc/posix-functions/towupper_l.texi: Renamed from
20123         doc/glibc-functions/towupper_l.texi.
20124         * doc/posix-functions/uselocale.texi: Renamed from
20125         doc/glibc-functions/uselocale.texi.
20126         * doc/posix-functions/vdprintf.texi: Renamed from
20127         doc/glibc-functions/vdprintf.texi.
20128         * doc/posix-functions/wcpcpy.texi:
20129         Renamed from doc/glibc-functions/wcpcpy.texi.
20130         * doc/posix-functions/wcpncpy.texi: Renamed from
20131         doc/glibc-functions/wcpncpy.texi.
20132         * doc/posix-functions/wcscasecmp.texi: Renamed from
20133         doc/glibc-functions/wcscasecmp.texi.
20134         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
20135         doc/glibc-functions/wcscasecmp_l.texi.
20136         * doc/posix-functions/wcscoll_l.texi: Renamed from
20137         doc/glibc-functions/wcscoll_l.texi.
20138         * doc/posix-functions/wcsdup.texi: Renamed from
20139         doc/glibc-functions/wcsdup.texi.
20140         * doc/posix-functions/wcsncasecmp.texi: Renamed from
20141         doc/glibc-functions/wcsncasecmp.texi.
20142         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
20143         doc/glibc-functions/wcsncasecmp_l.texi.
20144         * doc/posix-functions/wcsnlen.texi: Renamed from
20145         doc/glibc-functions/wcsnlen.texi.
20146         * doc/posix-functions/wcsnrtombs.texi: Renamed from
20147         doc/glibc-functions/wcsnrtombs.texi.
20148         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
20149         doc/glibc-functions/wcsxfrm_l.texi.
20150         * doc/posix-functions/wctrans_l.texi: Renamed from
20151         doc/glibc-functions/wctrans_l.texi.
20152         * doc/posix-functions/wctype_l.texi: Renamed from
20153         doc/glibc-functions/wctype_l.texi.
20154         * doc/gnulib.texi (Function Substitutes): Add these subsections.
20155         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
20156         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
20157         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
20158         these subsections.
20159         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
20160         Remove sections.
20161
20162 2008-12-14  Bruno Haible  <bruno@clisp.org>
20163
20164         Update doc for POSIX:2008.
20165         * doc/posix-functions/*.texi: Update URL of POSIX specification.
20166
20167 2008-12-14  Bruno Haible  <bruno@clisp.org>
20168
20169         Update doc for POSIX:2008.
20170         * doc/pastposix-functions/bcmp.texi: Renamed from
20171         doc/posix-functions/bcmp.texi.
20172         * doc/pastposix-functions/bcopy.texi: Renamed from
20173         doc/posix-functions/bcopy.texi.
20174         * doc/pastposix-functions/bsd_signal.texi: Renamed from
20175         doc/posix-functions/bsd_signal.texi.
20176         * doc/pastposix-functions/bzero.texi: Renamed from
20177         doc/posix-functions/bzero.texi.
20178         * doc/pastposix-functions/ecvt.texi: Renamed from
20179         doc/posix-functions/ecvt.texi.
20180         * doc/pastposix-functions/fcvt.texi: Renamed from
20181         doc/posix-functions/fcvt.texi.
20182         * doc/pastposix-functions/ftime.texi: Renamed from
20183         doc/posix-functions/ftime.texi.
20184         * doc/pastposix-functions/gcvt.texi: Renamed from
20185         doc/posix-functions/gcvt.texi.
20186         * doc/pastposix-functions/getcontext.texi: Renamed from
20187         doc/posix-functions/getcontext.texi.
20188         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
20189         doc/posix-functions/gethostbyaddr.texi.
20190         * doc/pastposix-functions/gethostbyname.texi: Renamed from
20191         doc/posix-functions/gethostbyname.texi.
20192         * doc/pastposix-functions/getwd.texi: Renamed from
20193         doc/posix-functions/getwd.texi.
20194         * doc/pastposix-functions/h_errno.texi: Renamed from
20195         doc/posix-functions/h_errno.texi.
20196         * doc/pastposix-functions/index.texi: Renamed from
20197         doc/posix-functions/index.texi.
20198         * doc/pastposix-functions/makecontext.texi: Renamed from
20199         doc/posix-functions/makecontext.texi.
20200         * doc/pastposix-functions/mktemp.texi: Renamed from
20201         doc/posix-functions/mktemp.texi.
20202         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
20203         doc/posix-functions/pthread_attr_getstackaddr.texi.
20204         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
20205         doc/posix-functions/pthread_attr_setstackaddr.texi.
20206         * doc/pastposix-functions/rindex.texi: Renamed from
20207         doc/posix-functions/rindex.texi.
20208         * doc/pastposix-functions/scalb.texi: Renamed from
20209         doc/posix-functions/scalb.texi.
20210         * doc/pastposix-functions/setcontext.texi: Renamed from
20211         doc/posix-functions/setcontext.texi.
20212         * doc/pastposix-functions/swapcontext.texi: Renamed from
20213         doc/posix-functions/swapcontext.texi.
20214         * doc/pastposix-functions/ualarm.texi: Renamed from
20215         doc/posix-functions/ualarm.texi.
20216         * doc/pastposix-functions/usleep.texi: Renamed from
20217         doc/posix-functions/usleep.texi.
20218         * doc/pastposix-functions/vfork.texi: Renamed from
20219         doc/posix-functions/vfork.texi.
20220         * doc/pastposix-functions/wcswcs.texi: Renamed from
20221         doc/posix-functions/wcswcs.texi.
20222         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
20223         (Function Substitutes): Update.
20224
20225 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20226
20227         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
20228         m4/strerror.m4.
20229
20230 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20231             Bruno Haible  <bruno@clisp.org>
20232
20233         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
20234
20235 2008-12-13  Bruno Haible  <bruno@clisp.org>
20236
20237         * modules/strtoull (Depends-on): Remove unistd.
20238
20239 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20240
20241         * modules/strtoull (Depends-on): Add stdlib.
20242
20243 2008-12-11  Simon Josefsson  <simon@josefsson.org>
20244
20245         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
20246
20247 2008-12-10  Jim Meyering  <meyering@redhat.com>
20248
20249         gl_ASSERT: don't say assertions are disabled when they're not
20250         * m4/assert.m4 (gl_ASSERT): Do not make configure report
20251         "checking whether to enable assertions... no", when they are in
20252         fact enabled.  This is solely a bug in the output of configure.
20253         In spite of saying "no", NDEBUG was not defined in that case.
20254         Also, as noted by Eric Blake, leave assertions enabled upon
20255         --enable-assert=INVALID.
20256
20257 2008-12-10  Bruno Haible  <bruno@clisp.org>
20258
20259         Change MODULES.html to refer to POSIX:2008 where possible.
20260         * MODULES.html.sh (POSIX2008_URL): New variable.
20261         (posix_headers): Remove sys/timeb, ucontext.
20262         (posix2001_headers): New variable.
20263         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
20264         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
20265         index, makecontext, mktemp, pthread_attr_getstackaddr,
20266         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
20267         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
20268         (posix2001_functions): New variable.
20269         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
20270         otherwise.
20271
20272 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20273
20274         add missing include to parse-duration.c
20275         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
20276         * modules/parse-duration (Depends-on): Add xalloc.
20277
20278         fix sed script reading maint.mk
20279         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
20280         (syntax-check-rules): Use it.
20281
20282 2008-12-09  Bruno Haible  <bruno@clisp.org>
20283
20284         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
20285         MacOS X 10.4/PowerPC.
20286         Reported by Simon Josefsson.
20287
20288 2008-12-08  Jim Meyering  <meyering@redhat.com>
20289
20290         work around mingw's lack of some S_IF definitions
20291         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
20292         Reported by Simon Josefsson.
20293
20294 2008-12-08  Bruno Haible  <bruno@clisp.org>
20295
20296         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
20297         applied to variables. Needed on MacOS X 10.4/PowerPC.
20298         Reported by Simon Josefsson.
20299
20300 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
20301         and Eric Blake  <ebb9@byu.net>
20302
20303         assert: honor --enable-assert
20304         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
20305         order to honor --enable-assert, rather than treating it as a
20306         synonym for --disable-assert.
20307
20308 2008-12-08  Jim Meyering  <meyering@redhat.com>
20309
20310         * lib/posixtm.c: Remove now-useless declaration of mktime.
20311
20312         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
20313
20314 2008-12-07  Bruno Haible  <bruno@clisp.org>
20315
20316         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
20317         test_once): Mark functions as static.
20318         * tests/test-tls.c (test_tls): Likewise.
20319
20320 2008-12-07  Bruno Haible  <bruno@clisp.org>
20321
20322         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
20323         iconv_register_autodetect.
20324
20325 2008-12-07  Jim Meyering  <meyering@redhat.com>
20326
20327         posixtm.c: avoid a warning
20328         * lib/posixtm.c (posixtime): Don't initialize tm0.
20329         It's no longer needed to placate gcc4's -Wuninitialized,
20330         and the attempt to placate would elicit a new warning.
20331
20332         unicodeio.c: mark unused parameters
20333         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
20334         (fallback_failure_callback): Likewise.
20335
20336 2008-12-07  Bruno Haible  <bruno@clisp.org>
20337
20338         * gnulib-tool (func_create_testdir): When building the tests
20339         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
20340         Reported by Simon Josefsson.
20341
20342 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20343
20344         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
20345
20346 2008-12-06  Bruno Haible  <bruno@clisp.org>
20347
20348         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
20349         Suggested by Eric Blake.
20350
20351 2008-12-06  Bruno Haible  <bruno@clisp.org>
20352
20353         Fix a c-stack test failure on MacOS X.
20354         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
20355         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
20356         handler for SIGBUS as well.
20357         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
20358         install a signal handler for SIGBUS as well.
20359         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
20360
20361 2008-12-06  Bruno Haible  <bruno@clisp.org>
20362
20363         Advocacy documentation.
20364         * doc/gnulib-intro.texi (Benefits): New section.
20365         * doc/gnulib.texi: Update.
20366
20367 2008-12-06  Bruno Haible  <bruno@clisp.org>
20368
20369         Document the 'manywarnings' module.
20370         * doc/manywarnings.texi: New file.
20371         * doc/gnulib.texi: Include it.
20372
20373 2008-12-05  Eric Blake  <ebb9@byu.net>
20374
20375         tests: silence some gcc warnings
20376         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
20377         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
20378         type mismatches.
20379
20380 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20381             Bruno Haible  <bruno@clisp.org>
20382
20383         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
20384
20385 2008-11-29  Jim Meyering  <meyering@redhat.com>
20386
20387         unicodeio.c: mark unused parameters
20388         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
20389         (fallback_failure_callback): Likewise.
20390
20391         fts: fix a thinko
20392         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
20393         (set_stat_type): Return S_IF*-valued "type" directly.
20394         Prompted by James Youngman's spotting a related bug.
20395         Confirmed by further testing through find.
20396
20397         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
20398         * lib/fts.c (D_TYPE): Define.
20399         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
20400         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
20401         (s_ifmt_shift_bits): New function.
20402         (set_stat_type): New function.
20403         (fts_build): When not calling fts_stat, call set_stat_type
20404         to propagate dirent.d_type info to fts_read caller.
20405         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
20406         fts_statp->st_mode type information may be valid.
20407
20408 2008-11-28  Simon Josefsson  <simon@josefsson.org>
20409
20410         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
20411         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
20412         <sds@gnu.org>.
20413
20414 2008-11-20  Bruno Haible  <bruno@clisp.org>
20415
20416         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
20417         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
20418         INCLUDE_NEXT.
20419         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
20420         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
20421         * modules/math (Makefile.am): Substitute
20422         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
20423         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
20424
20425 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
20426             Bruno Haible  <bruno@clisp.org>
20427
20428         * lib/stdint.in.h: Define all type macros so that their expansion is
20429         a single typedef'ed token. Fixes a compilation failure in Boost which
20430         does "using ::int8_t;".
20431
20432 2008-11-18  Simon Josefsson  <simon@josefsson.org>
20433
20434         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
20435         gl_MANYWARN_ALL_GCC.
20436         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
20437         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
20438         * modules/manywarnings: New file.
20439         * MODULES.html.sh: Mention manywarnings module.
20440
20441 2008-11-18  Bruno Haible  <bruno@clisp.org>
20442
20443         * doc/gnulib-tool.texi (Unit tests): New section.
20444
20445 2008-11-18  Simon Josefsson  <simon@josefsson.org>
20446
20447         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
20448         paths like 'lib/po/foo.po'.
20449
20450 2008-11-17  Simon Josefsson  <simon@josefsson.org>
20451
20452         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
20453         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
20454
20455 2008-11-17  Simon Josefsson  <simon@josefsson.org>
20456
20457         * m4/warnings.m4: Use CPPFLAGS to really check whether the
20458         parameter works.
20459
20460 2008-11-17  Simon Josefsson  <simon@josefsson.org>
20461
20462         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
20463
20464 2008-11-17  Bruce Korb  <bkorb@gnu.org>
20465
20466         * modules/parse-duration-tests: New file.
20467         * tests/test-parse-duration.sh: New file.
20468         * tests/test-parse-duration.c: New file.
20469
20470         New module 'parse-duration'.
20471         * lib/parse-duration.h: New file.
20472         * lib/parse-duration.c: New file.
20473         * modules/parse-duration: New file.
20474
20475 2008-11-17  Bruno Haible  <bruno@clisp.org>
20476
20477         * tests/test-select-out.sh: Comment out the first pipe test.
20478         Reported by Simon Josefsson.
20479
20480 2008-11-17  Bruno Haible  <bruno@clisp.org>
20481
20482         * modules/getaddrinfo (Depends-on): Add servent, hostent.
20483         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
20484         gl_HOSTENT.
20485
20486 2008-11-17  Bruno Haible  <bruno@clisp.org>
20487
20488         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
20489         -lnetwork and -lnet. Needed for Haiku and BeOS.
20490
20491 2008-11-16  Bruno Haible  <bruno@clisp.org>
20492
20493         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
20494
20495 2008-11-16  Bruno Haible  <bruno@clisp.org>
20496
20497         Avoid test failure on Haiku.
20498         * tests/test-fsync.c: Include <errno.h>.
20499         (main): Don't require that fsync (0) fails.
20500
20501 2008-11-15  Bruno Haible  <bruno@clisp.org>
20502
20503         New module 'hostent'.
20504         * modules/hostent: New file.
20505         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
20506
20507 2008-11-15  Bruno Haible  <bruno@clisp.org>
20508
20509         New module 'servent'.
20510         * modules/servent: New file.
20511         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
20512
20513 2008-11-15  Bruno Haible  <bruno@clisp.org>
20514
20515         Avoid generating same test program with two different rules.
20516         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
20517         test-frexp to test-frexp-nolibm.
20518         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
20519         test-frexpl to test-frexpl-nolibm.
20520
20521 2008-11-15  Bruno Haible  <bruno@clisp.org>
20522
20523         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
20524         $(FREXPL_LIBM).
20525
20526 2008-11-15  Bruno Haible  <bruno@clisp.org>
20527
20528         * lib/netdb.in.h: Activate the definitions also when the system's
20529         <netdb.h> has 'struct addrinfo'.
20530         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
20531         EAI_OVERFLOW or AI_NUMERICSERV.
20532         * doc/posix-headers/netdb.texi: Document the problem.
20533
20534 2008-11-15  Bruno Haible  <bruno@clisp.org>
20535
20536         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
20537
20538         Make the 'sched' module work on platforms where <sched.h> exists but
20539         is incomplete (such as Haiku).
20540         * lib/sched.in.h; Include the system's <sched.h> if it exists.
20541         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
20542         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
20543         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
20544         HAVE_STRUCT_SCHED_PARAM.
20545         * modules/sched (Depends-on): Add include_next.
20546         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
20547         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
20548         * doc/posix-headers/sched.texi: Document the issue.
20549
20550 2008-11-13  Jim Meyering  <meyering@redhat.com>
20551
20552         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
20553         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
20554         test would fail due to the difference in the Report bugs to ...
20555         line.  The expected address is empty, "<>", while the actual
20556         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
20557
20558 2008-11-12  Bruno Haible  <bruno@clisp.org>
20559
20560         lstat: don't compile lstat.c on systems lacking lstat
20561         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
20562         which don't have lstat; this is handled by lib/sys_stat.in.h already.
20563         Reported by Daniel P. Berrange via Jim Meyering.
20564
20565 2008-11-12  Jim Meyering  <meyering@redhat.com>
20566
20567         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
20568
20569 2008-11-12  Simon Josefsson  <simon@josefsson.org>
20570
20571         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
20572         instead.
20573
20574 2008-11-12  Bruno Haible  <bruno@clisp.org>
20575
20576         * lib/unicodeio.c: Include unistr.h.
20577         (utf8_wctomb): Remove function.
20578         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
20579
20580 2008-11-12  Simon Josefsson  <simon@josefsson.org>
20581
20582         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
20583         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
20584         <bruno@clisp.org>.
20585         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
20586
20587 2008-11-12  Simon Josefsson  <simon@josefsson.org>
20588
20589         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
20590         * doc/gnulib.texi: Add section for warnings.
20591
20592 2008-11-11  Bruno Haible  <bruno@clisp.org>
20593
20594         * lib/sockets.h: Add a comment.
20595
20596 2008-11-11  Karl Berry  <karl@gnu.org>
20597
20598         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
20599
20600 2008-11-11  Eric Blake  <ebb9@byu.net>
20601
20602         fdl.texi: avoid git symlinks
20603         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
20604
20605 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
20606
20607         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
20608
20609 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
20610
20611         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
20612         (gl_WARN_ADD): Substitute $2 if literal.
20613
20614 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
20615
20616         * m4/warning.m4: Remove.
20617
20618 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
20619
20620         * m4/warnings.m4: Almost complete rewrite. :-)
20621
20622 2008-11-10  Simon Josefsson  <simon@josefsson.org>
20623
20624         * modules/warnings: New module.
20625         * m4/warnings.m4: New file.
20626         * MODULES.html.sh: Mention warnings module.
20627         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
20628         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
20629
20630 2008-11-10  Eric Blake  <ebb9@byu.net>
20631
20632         fdl.texi: make a symlink to the latest version
20633         * doc/standards.texi: Revert today's earlier change.
20634         * doc/fdl-1.2.texi: Rename from old fdl.texi...
20635         * doc/fdl.texi: ...and replace this with a symlink to the newer
20636         fdl-1.3.texi.
20637
20638 2008-11-10  Bruno Haible  <bruno@clisp.org>
20639
20640         * tests/test-select-fd.c (main): Accept the result file name as fourth
20641         argument.
20642         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
20643         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
20644
20645 2008-11-10  Bruno Haible  <bruno@clisp.org>
20646
20647         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
20648         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
20649         as autoconf-substituted macros.
20650         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
20651         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
20652         gl_NETDB_H_DEFAULTS. Set these variables.
20653         * modules/netdb (Makefile.am): Substitute these variables.
20654
20655 2008-11-10  Eric Blake  <ebb9@byu.net>
20656
20657         standards.texi: include correct file for FDL 1.3
20658         * doc/standards.texi (GNU Free Documentation License): Change
20659         include file to pull in FDL 1.3, not 1.2.
20660
20661         fdl.texi: revert accidental change to license
20662         * doc/fdl.texi: This is FDL 1.2, not 1.3.
20663
20664 2008-11-10  Bruno Haible  <bruno@clisp.org>
20665
20666         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
20667         cross-compiling guesses also when the native compile gives no result.
20668
20669 2008-11-10  Bruno Haible  <bruno@clisp.org>
20670
20671         * lib/spawni.c (__spawni): Force variable into the stack.
20672
20673 2008-11-10  Bruno Haible  <bruno@clisp.org>
20674
20675         Add support for Haiku.
20676         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
20677         glibc and BeOS, but also on Haiku.
20678         * lib/fpurge.c (fpurge): Likewise.
20679         * lib/freadable.c (freadable): Likewise.
20680         * lib/freadahead.c (freadahead): Likewise.
20681         * lib/freading.c (freading): Likewise.
20682         * lib/freadptr.c (freadptr): Likewise.
20683         * lib/freadseek.c (freadptrinc): Likewise.
20684         * lib/fseeko.c (rpl_fseeko): Likewise.
20685         * lib/fseterr.c (fseterr): Likewise.
20686         * lib/fwritable.c (fwritable): Likewise.
20687         * lib/fwriting.c (fwriting): Likewise.
20688         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
20689
20690 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
20691
20692         * lib/config.charset: Treat Haiku like BeOS.
20693
20694 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
20695
20696         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
20697         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
20698
20699 2008-11-08  Bruno Haible  <bruno@clisp.org>
20700
20701         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
20702         AC_CACHE_CHECK.
20703
20704 2008-11-08  Bruno Haible  <bruno@clisp.org>
20705
20706         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
20707
20708 2008-11-08  Bruno Haible  <bruno@clisp.org>
20709
20710         * tests/test-select-fd.c: New file.
20711         * tests/test-select-in.sh: New file.
20712         * tests/test-select-out.sh: New file.
20713         * tests/test-select-stdin.c: New file.
20714         * modules/select-tests (Files): Add the new files.
20715         (Depends-on): Add gettimeofday.
20716         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
20717         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
20718         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
20719
20720 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
20721             Bruno Haible  <bruno@clisp.org>
20722
20723         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
20724
20725 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
20726
20727         * build-aux/pmccabe2html: Added support for C++ source files.
20728
20729 2008-11-05  Ben Pfaff  <blp@gnu.org>
20730
20731         Fix lib/close.c build on Windows.
20732         * modules/close (Files): Add lib/w32sock.h.
20733
20734 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
20735
20736         Accept Bison's NEWS format.
20737         * build-aux/announce-gen (print_news_deltas): Tweak
20738         $re_prefix.
20739
20740 2008-11-04  Bruno Haible  <bruno@clisp.org>
20741
20742         * modules/random_r (Maintainer): Add glibc.
20743
20744 2008-11-04  Simon Josefsson  <simon@josefsson.org>
20745
20746         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
20747         by karl@freefriends.org (Karl Berry).
20748         * doc/alloca.texi: Likewise.
20749         * doc/c-ctype.texi: Likewise.
20750         * doc/c-strcase.texi: Likewise.
20751         * doc/c-strcaseeq.texi: Likewise.
20752         * doc/c-strcasestr.texi: Likewise.
20753         * doc/c-strstr.texi: Likewise.
20754         * doc/c-strtod.texi: Likewise.
20755         * doc/c-strtold.texi: Likewise.
20756         * doc/ctime.texi: Likewise.
20757         * doc/error.texi: Likewise.
20758         * doc/fdl.texi: Likewise.
20759         * doc/gcd.texi: Likewise.
20760         * doc/getdate.texi: Likewise.
20761         * doc/gnulib-intro.texi: Likewise.
20762         * doc/gnulib-tool.texi: Likewise.
20763         * doc/gnulib.texi: Likewise.
20764         * doc/inet_ntoa.texi: Likewise.
20765         * doc/maintain.texi: Likewise.
20766         * doc/make-stds.texi: Likewise.
20767         * doc/quote.texi: Likewise.
20768         * doc/regexprops-generic.texi: Likewise.
20769         * doc/standards.texi: Likewise.
20770         * doc/verify.texi: Likewise.
20771         * doc/visibility.texi: Likewise.
20772         * doc/gnulib.texi (GNU Free Documentation License): Include
20773         fdl-1.3.texi instead of fdl.texi.
20774
20775 2008-11-04  Simon Josefsson  <simon@josefsson.org>
20776
20777         * doc/fdl-1.3.texi: New file, from
20778         <http://www.gnu.org/licenses/fdl-1.3.texi>.
20779         * modules/fdl-1.3: Add.
20780         * MODULES.html.sh: Add fdl-1.3.
20781
20782 2008-11-03  Bruno Haible  <bruno@clisp.org>
20783
20784         Make determination of absolute name of header file work with AIX xlc.
20785         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
20786         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
20787         preprocessing.
20788         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
20789         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
20790
20791 2008-11-03  Simon Josefsson  <simon@josefsson.org>
20792
20793         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
20794         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
20795         <ludo@gnu.org>.
20796
20797 2008-11-02  Bruno Haible  <bruno@clisp.org>
20798
20799         Mark 'strpbrk' obsolete.
20800         * modules/strpbrk (Status, Notice): New sections.
20801         * modules/strtok_r (Depends-on): Add strpbrk.
20802
20803 2008-11-02  Bruno Haible  <bruno@clisp.org>
20804
20805         Mark 'strdup' obsolete.
20806         * modules/strdup (Status, Notice): New sections.
20807         * modules/findprog (Depends-on): Add strdup.
20808         * modules/getaddrinfo (Depends-on): Likewise.
20809         * modules/localename (Depends-on): Likewise.
20810         * modules/relocatable-lib (Depends-on): Likewise.
20811         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
20812         * modules/relocatable-prog (Depends-on): Likewise.
20813         * modules/trim (Depends-on): Likewise.
20814         * modules/unictype/gen-ctype (Depends-on): Likewise.
20815         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
20816
20817 2008-11-02  Bruno Haible  <bruno@clisp.org>
20818
20819         Mark 'strcspn' obsolete.
20820         * modules/strcspn (Status, Notice): New sections.
20821
20822 2008-11-02  Bruno Haible  <bruno@clisp.org>
20823
20824         Mark 'rmdir' obsolete.
20825         * modules/rmdir (Status, Notice): New sections.
20826         * modules/clean-temp (Depends-on): Add rmdir.
20827         * modules/openat (Depends-on): Likewise.
20828
20829 2008-11-02  Bruno Haible  <bruno@clisp.org>
20830
20831         Mark 'raise' obsolete.
20832         * modules/raise (Status, Notice): New sections.
20833         (Include): Specify <signal.h>.
20834         * modules/stdio (Depends-on): Add raise.
20835         * modules/write (Depends-on): Likewise.
20836
20837 2008-11-02  Bruno Haible  <bruno@clisp.org>
20838
20839         Mark 'memset' obsolete.
20840         * modules/memset (Status, Notice): New sections.
20841
20842 2008-11-02  Bruno Haible  <bruno@clisp.org>
20843
20844         Mark 'memmove' obsolete.
20845         * modules/memmove (Status, Notice): New sections.
20846         * modules/argp (Depends-on): Add memmove.
20847         * modules/argz (Depends-on): Likewise.
20848         * modules/canonicalize (Depends-on): Likewise.
20849         * modules/canonicalize-lgpl (Depends-on): Likewise.
20850         * modules/fts (Depends-on): Likewise.
20851         * modules/getcwd (Depends-on): Likewise.
20852         * modules/human (Depends-on): Likewise.
20853         * modules/regex (Depends-on): Likewise.
20854         * modules/striconveh (Depends-on): Likewise.
20855         * modules/trim (Depends-on): Likewise.
20856         * modules/unistr/u8-move (Depends-on): Likewise.
20857         * modules/unistr/u16-move (Depends-on): Likewise.
20858         * modules/unistr/u32-move (Depends-on): Likewise.
20859
20860 2008-11-02  Bruno Haible  <bruno@clisp.org>
20861
20862         Mark 'memcpy' obsolete.
20863         * modules/memcpy (Status, Notice): New sections.
20864
20865 2008-11-02  Bruno Haible  <bruno@clisp.org>
20866
20867         Mark 'memcmp' obsolete.
20868         * modules/memcmp (Status, Notice): New sections.
20869         * modules/argmatch (Depends-on): Add memchr.
20870         * modules/backupfile (Depends-on): Likewise.
20871         * modules/c-strcasestr (Depends-on): Likewise.
20872         * modules/crypto/des (Depends-on): Likewise.
20873         * modules/csharpcomp (Depends-on): Likewise.
20874         * modules/fnmatch (Depends-on): Likewise.
20875         * modules/git-merge-changelog (Depends-on): Likewise.
20876         * modules/isnand (Depends-on): Likewise.
20877         * modules/isnand-nolibm (Depends-on): Likewise.
20878         * modules/isnanf (Depends-on): Likewise.
20879         * modules/isnanf-nolibm (Depends-on): Likewise.
20880         * modules/isnanl (Depends-on): Likewise.
20881         * modules/isnanl-nolibm (Depends-on): Likewise.
20882         * modules/mbchar (Depends-on): Likewise.
20883         * modules/memcoll (Depends-on): Likewise.
20884         * modules/quotearg (Depends-on): Likewise.
20885         * modules/regex (Depends-on): Likewise.
20886         * modules/relocatable-prog (Depends-on): Likewise.
20887         * modules/same (Depends-on): Likewise.
20888         * modules/signbit (Depends-on): Likewise.
20889         * modules/strcasestr-simple (Depends-on): Likewise.
20890         * modules/unictype/gen-ctype (Depends-on): Likewise.
20891         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
20892         * modules/uniname/uniname (Depends-on): Likewise.
20893         * modules/unistr/u8-cmp (Depends-on): Likewise.
20894
20895 2008-11-02  Bruno Haible  <bruno@clisp.org>
20896
20897         Mark 'memchr' obsolete.
20898         * modules/memchr (Status, Notice): New sections.
20899         * modules/argp (Depends-on): Add memchr.
20900         * modules/base64 (Depends-on): Likewise.
20901         * modules/c-strcasestr (Depends-on): Likewise.
20902         * modules/chdir-long (Depends-on): Likewise.
20903         * modules/fnmatch (Depends-on): Likewise.
20904         * modules/getsubopt (Depends-on): Likewise.
20905         * modules/git-merge-changelog (Depends-on): Likewise.
20906         * modules/glob (Depends-on): Likewise.
20907         * modules/strcasestr-simple (Depends-on): Likewise.
20908         * modules/strnlen (Depends-on): Likewise.
20909
20910 2008-11-02  Bruno Haible  <bruno@clisp.org>
20911
20912         Mark 'atexit' obsolete.
20913         * modules/atexit (Status, Notice): New sections.
20914         * modules/chdir-long (Depends-on): Add atexit.
20915         * modules/wait-process (Depends-on): Likewise.
20916
20917 2008-11-02  Bruno Haible  <bruno@clisp.org>
20918
20919         * gnulib-tool: New option --with-obsolete.
20920         (func_usage): Document it.
20921         (func_modules_transitive_closure): Drop obsolete dependencies if
20922         incobsolete is not true.
20923         (func_import): Read and save the incobsolete variable to the cache.
20924
20925 2008-11-02  Bruno Haible  <bruno@clisp.org>
20926
20927         * modules/TEMPLATE-EXTENDED: New field 'Status'.
20928         * gnulib-tool: New option --extract-status.
20929         (func_usage): Document it.
20930         (sed_extract_prog): Recognize it.
20931         (func_get_status): New function.
20932
20933 2008-10-30  Simon Josefsson  <simon@josefsson.org>
20934
20935         * modules/sockets (License): Change from LGPL to LGPLv2+.
20936
20937 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20938
20939         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
20940
20941 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20942
20943         * MODULES.html.sh (Support for systems lacking POSIX:2001):
20944         Mention times and sys_times.
20945         * modules/sys_times, modules/sys_times-tests: New modules.
20946         * modules/times, modules/times-tests: Likewise
20947         * m4/sys_times_h.m4: New file.
20948         * lib/sys_times.in.h: Likewise
20949         * lib/times.c: Likewise.
20950         * tests/test-sys_times.c: Likewise.
20951         * tests/test-times.c: Likewise.
20952         * doc/posix-headers/sys_times.texi: Update.
20953         * doc/posix-functions/times.texi: Update.
20954
20955 2008-10-28  Jim Meyering  <meyering@redhat.com>
20956
20957         * modules/tempname (Depends-on): Add lstat.
20958
20959         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
20960
20961 2008-10-28  Simon Josefsson  <simon@josefsson.org>
20962
20963         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
20964         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
20965         using idiom used elsewhere in gnulib.
20966
20967 2008-10-27  Jim Meyering  <meyering@redhat.com>
20968
20969         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
20970
20971 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20972
20973         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
20974         TESTS_ENVIRONMENT, for shell scripts that needs to call built
20975         programs.
20976         * tests/test-argp-2.sh: Use $EXEEXT when needed.
20977
20978 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20979
20980         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
20981
20982 2008-10-27  Bruno Haible  <bruno@clisp.org>
20983
20984         * tests/test-lstat.c: Include <stdio.h>.
20985
20986 2008-10-27  Simon Josefsson  <simon@josefsson.org>
20987
20988         * modules/lstat-tests: New module.
20989         * tests/test-lstat.c: New file.
20990
20991 2008-10-26  Jim Meyering  <meyering@redhat.com>
20992
20993         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
20994
20995 2008-10-26  Simon Josefsson  <simon@josefsson.org>
20996             Bruno Haible  <bruno@clisp.org>
20997
20998         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
20999         * modules/configmake (Include): Add a note that the include must come
21000         after all system headers.
21001         * lib/javaversion.c: Include configmake.h after all other includes.
21002
21003 2008-10-26  Bruno Haible  <bruno@clisp.org>
21004
21005         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
21006         HAVE_STRUCT_RANDOM_DATA to 1.
21007         (gl_STDLIB_H): Simplify.
21008
21009 2008-10-26  Simon Josefsson  <simon@josefsson.org>
21010
21011         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
21012         substitute HAVE_STRUCT_RANDOM_DATA.
21013         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
21014         random_data.
21015         * modules/stdlib (Makefile.am): Substitute
21016         HAVE_STRUCT_RANDOM_DATA.
21017
21018 2008-10-26  Simon Josefsson  <simon@josefsson.org>
21019
21020         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
21021         * doc/gnulib-intro.texi (Copyright): Likewise.
21022
21023 2008-10-26  Simon Josefsson  <simon@josefsson.org>
21024
21025         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
21026         findings.
21027
21028 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
21029             Bruno Haible  <bruno@clisp.org>
21030
21031         * lib/unistd.in.h: Include <winsock2.h>.
21032         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
21033         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
21034         Provide dummy declarations.
21035         (gethostname): Override.
21036         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
21037         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
21038         gl_PREREQ_SYS_H_WINSOCK2.
21039         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
21040         * doc/posix-functions/gethostname.texi: More details.
21041
21042 2008-10-25  Bruno Haible  <bruno@clisp.org>
21043
21044         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
21045         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
21046         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
21047
21048         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
21049         here ...
21050         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
21051         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
21052         gl_UNISTD_H_DEFAULTS.
21053
21054 2008-10-25  Eric Blake  <ebb9@byu.net>
21055
21056         signbit: avoid spurious compiler failure
21057         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
21058         declarations inside function.
21059
21060 2008-10-24  Simon Josefsson  <simon@josefsson.org>
21061             Bruno Haible  <bruno@clisp.org>
21062
21063         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
21064         * modules/random_r (Depends-on): Add stdint.
21065
21066 2008-10-24  Bruno Haible  <bruno@clisp.org>
21067
21068         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
21069         Eggert.
21070         * modules/strerror (License): Likewise.
21071
21072 2008-10-24  Jim Meyering  <meyering@redhat.com>
21073
21074         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
21075         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
21076
21077 2008-10-24  Eric Blake  <ebb9@byu.net>
21078
21079         getgroups: fix compilation when getgroups is available
21080         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
21081         but with <config.h> override of getgroups disabled.
21082
21083 2008-10-24  Simon Josefsson  <simon@josefsson.org>
21084
21085         * doc/gnulib.texi (Header files): Add note about C++ problems.
21086         Explained by Bruno Haible <bruno@clisp.org>.
21087
21088 2008-10-23  Bruno Haible  <bruno@clisp.org>
21089
21090         Define a dummy SA_NODEFER macro on Interix.
21091         * lib/signal.in.h (SA_NODEFER): Define fallback.
21092         Reported by Aleksey Cheusov <cheusov@tut.by> via
21093         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
21094
21095 2008-10-23  Bruno Haible  <bruno@clisp.org>
21096
21097         * modules/freadahead (License): Change to LGPLv2+.
21098         Suggested by Simon Josefsson.
21099
21100 2008-10-23  Jim Meyering  <meyering@redhat.com>
21101
21102         random_r: new module
21103         * modules/random_r: New file.
21104         * m4/random_r.m4: New file.
21105         * lib/random_r.c: New file, from glibc.
21106         * modules/random_r-tests: New file.
21107         * tests/test-random_r.c: New file.
21108         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
21109          Declare.
21110         (RAND_MAX): Define.
21111         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
21112         * modules/stdlib: Substitute them, too.
21113         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
21114         * doc/glibc-functions/initstate_r.texi: Mention the new module.
21115         * doc/glibc-functions/random_r.texi: Likewise.
21116         * doc/glibc-functions/setstate_r.texi: Likewise.
21117         * doc/glibc-functions/srandom_r.texi: Likewise.
21118         * config/srclist.txt: Mention it.
21119
21120 2008-10-23  David Lutterkort  <lutter@redhat.com>
21121
21122         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
21123         link requirement
21124
21125 2008-10-23  Jim Meyering  <meyering@redhat.com>
21126
21127         selinux-h: mark parameters of stub functions as intentionally unused
21128         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
21129         * lib/se-context.in.h: Likewise.
21130
21131 2008-10-22  Simon Josefsson  <simon@josefsson.org>
21132
21133         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
21134
21135 2008-10-22  Simon Josefsson  <simon@josefsson.org>
21136
21137         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
21138
21139 2008-10-22  Eric Blake  <ebb9@byu.net>
21140
21141         glthread/thread: avoid compiler warning
21142         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
21143         Add unreachable abort to silence compiler.
21144
21145 2008-10-22  Eric Blake  <ebb9@byu.net>
21146
21147         netdb: also supply struct addrinfo for cygwin 1.5.x
21148         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
21149         older cygwin.
21150         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
21151         cygwin.
21152         * doc/posix-headers/netdb.texi (netdb.h): Document this.
21153
21154 2008-10-22  Bruno Haible  <bruno@clisp.org>
21155
21156         * users.txt: Update entry about pspp.
21157
21158 2008-10-21  Bruno Haible  <bruno@clisp.org>
21159
21160         Simplification.
21161         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
21162         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
21163
21164         Simplification.
21165         * lib/ioctl.c (ioctl): Don't undefine.
21166         * lib/socket.c (socket): Don't undefine.
21167
21168         Remove unused module indicator macros.
21169         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
21170         GNULIB_$1 as a C macro.
21171
21172         * doc/posix-functions/close.texi: Undo last change.
21173         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
21174         Windows platforms.
21175
21176 2008-10-21  Bruno Haible  <bruno@clisp.org>
21177
21178         Add gethostname() declaration to <unistd.h>.
21179         * lib/unistd.in.h (gethostname): New declaration.
21180         * lib/gethostname.c: Include <unistd.h>.
21181         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
21182         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
21183         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
21184         and HAVE_GETHOSTNAME.
21185         * modules/gethostname (Depends-on): Add unistd.
21186         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21187         (Include): Specify <unistd.h>.
21188         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
21189         HAVE_GETHOSTNAME.
21190         * tests/test-gethostname.c: Include <unistd.h> first.
21191
21192 2008-10-21  Bruno Haible  <bruno@clisp.org>
21193
21194         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
21195         * modules/select-tests (Depends-on): Likewise.
21196         Reported by Simon Josefsson.
21197
21198 2008-10-21  Simon Josefsson  <simon@josefsson.org>
21199
21200         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
21201         * lib/accept.c: New file, based on winsock.c.
21202         * lib/bind.c: New file, based on winsock.c.
21203         * lib/connect.c: New file, based on winsock.c.
21204         * lib/getpeername.c: New file, based on winsock.c.
21205         * lib/getsockname.c: New file, based on winsock.c.
21206         * lib/getsockopt.c: New file, based on winsock.c.
21207         * lib/ioctl.c: New file, based on winsock.c.
21208         * lib/listen.c: New file, based on winsock.c.
21209         * lib/recv.c: New file, based on winsock.c.
21210         * lib/recvfrom.c: New file, based on winsock.c.
21211         * lib/send.c: New file, based on winsock.c.
21212         * lib/sendto.c: New file, based on winsock.c.
21213         * lib/setsockopt.c: New file, based on winsock.c.
21214         * lib/shutdown.c: New file, based on winsock.c.
21215         * lib/socket.c: New file, based on winsock.c.
21216         * lib/w32sock.h: New file, based on winsock.c.
21217         * lib/winsock.c: Remove file.
21218         * modules/accept: Likewise.
21219         * modules/bind: Likewise.
21220         * modules/connect: Likewise.
21221         * modules/getpeername: Likewise.
21222         * modules/getsockname: Likewise.
21223         * modules/getsockopt: Likewise.
21224         * modules/ioctl: Likewise.
21225         * modules/listen: Likewise.
21226         * modules/recv: Likewise.
21227         * modules/recvfrom: Likewise.
21228         * modules/send: Likewise.
21229         * modules/sendto: Likewise.
21230         * modules/setsockopt: Likewise.
21231         * modules/shutdown: Likewise.
21232         * modules/socket: Use socket.c instead of winsock.c.
21233         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
21234         * doc/posix-functions/accept.texi: Doc fix.
21235         * doc/posix-functions/bind.texi: Doc fix.
21236         * doc/posix-functions/close.texi: Doc fix.
21237         * doc/posix-functions/connect.texi: Doc fix.
21238         * doc/posix-functions/getpeername.texi: Doc fix.
21239         * doc/posix-functions/getsockname.texi: Doc fix.
21240         * doc/posix-functions/getsockopt.texi: Doc fix.
21241         * doc/posix-functions/ioctl.texi: Doc fix.
21242         * doc/posix-functions/listen.texi: Doc fix.
21243         * doc/posix-functions/recv.texi: Doc fix.
21244         * doc/posix-functions/recvfrom.texi: Doc fix.
21245         * doc/posix-functions/send.texi: Doc fix.
21246         * doc/posix-functions/sendto.texi: Doc fix.
21247         * doc/posix-functions/setsockopt.texi: Doc fix.
21248         * doc/posix-functions/shutdown.texi: Doc fix.
21249         * doc/posix-functions/socket.texi: Doc fix.
21250
21251 2008-10-20  Bruno Haible  <bruno@clisp.org>
21252
21253         Take into account the role of SIGABRT_COMPAT on Windows 2008.
21254         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
21255         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
21256         as an alias for SIGABRT.
21257         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
21258         (sigaction): Map it to SIGABRT.
21259         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
21260
21261 2008-10-20  Bruno Haible  <bruno@clisp.org>
21262
21263         * lib/fts.c: Don't include lstat.h.
21264         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
21265
21266         Move the lstat() declaration to <sys/stat.h>.
21267         * lib/lstat.h: Remove file.
21268         * lib/sys_stat.in.h: Add special invocation convention.
21269         (lstat): New declaration.
21270         * lib/lstat.c (orig_lstat): New function.
21271         (rpl_lstat): Use orig_lstat instead of lstat.
21272         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
21273         AC_C_INLINE. Set REPLACE_LSTAT.
21274         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
21275         and REPLACE_LSTAT.
21276         * modules/lstat (Files): Remove lib/lstat.h.
21277         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
21278         (Include): Specify <sys/stat.h> instead of lstat.h.
21279         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
21280         REPLACE_LSTAT.
21281         * NEWS: Mention the change.
21282
21283 2008-10-20  Bruno Haible  <bruno@clisp.org>
21284
21285         * modules/posix_spawn-tests: New file.
21286         * tests/test-posix_spawn3.c: New file.
21287
21288 2008-10-20  Bruno Haible  <bruno@clisp.org>
21289
21290         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
21291         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
21292         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
21293         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
21294         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
21295
21296 2008-10-20  Bruno Haible  <bruno@clisp.org>
21297
21298         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
21299         of posix_spawn on AIX 5.3.
21300
21301 2008-10-20  Bruno Haible  <bruno@clisp.org>
21302
21303         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
21304
21305 2008-10-20  Bruno Haible  <bruno@clisp.org>
21306
21307         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
21308         of AC_LANG_PROGRAM.
21309
21310 2008-10-20  Simon Josefsson  <simon@josefsson.org>
21311
21312         * lib/netdb.in.h: Don't define GNU specific constants until they
21313         are supported or needed.  Reported by Bruno Haible
21314         <bruno@clisp.org>.
21315
21316 2008-10-20  Simon Josefsson  <simon@josefsson.org>
21317
21318         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
21319
21320 2008-10-20  Simon Josefsson  <simon@josefsson.org>
21321
21322         * lib/getaddrinfo.h: Remove file.
21323         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
21324         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
21325         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
21326         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
21327         * modules/netdb: Substitute GNULIB_GETADDRINFO.
21328         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
21329         * tests/test-getaddrinfo.c: Likewise.
21330         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
21331         * NEWS: Mention change.
21332
21333 2008-10-19  Bruno Haible  <bruno@clisp.org>
21334
21335         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
21336
21337 2008-10-19  Bruno Haible  <bruno@clisp.org>
21338
21339         * lib/wait-process.c: Include simply <sys/wait.h>.
21340         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
21341         WIFSTOPPED): Remove fallback definitions.
21342         * modules/wait-process (Depends-on): Add sys_wait.
21343
21344         New module 'sys_wait'.
21345         * modules/sys_wait: New file.
21346         * lib/sys_wait.in.h: New file, partially copied from
21347         lib/wait-process.c.
21348         * m4/sys_wait_h.m4: New file.
21349         * doc/posix-headers/sys_wait.texi: Mention the new module.
21350
21351 2008-10-19  Bruno Haible  <bruno@clisp.org>
21352
21353         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
21354
21355 2008-10-19  Bruno Haible  <bruno@clisp.org>
21356
21357         Assume that waitpid() fills an 'int' status, not a 'union wait'.
21358         * lib/wait-process.c (WAIT_T): Remove type.
21359         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
21360         (wait_subprocess): Update.
21361
21362 2008-10-19  Bruno Haible  <bruno@clisp.org>
21363
21364         New module 'atoll'.
21365         * modules/atoll: New file.
21366         * lib/stdlib.in.h (atoll): New declaration.
21367         * lib/atoll.c: New file, from glibc with modifications.
21368         * m4/atoll.m4: New file.
21369         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
21370         HAVE_ATOLL.
21371         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
21372         * doc/posix-functions/atoll.texi: Mention the new module.
21373
21374 2008-10-19  Bruno Haible  <bruno@clisp.org>
21375
21376         Add strtoull() declaration to <stdlib.h>.
21377         * lib/stdlib.in.h (strtoull): New declaration.
21378         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
21379         Set HAVE_STRTOULL.
21380         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
21381         HAVE_STRTOULL.
21382         * modules/strtoull (Depends-on): Add stdlib.
21383         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
21384         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
21385         HAVE_STRTOULL.
21386
21387 2008-10-19  Bruno Haible  <bruno@clisp.org>
21388
21389         Add strtoll() declaration to <stdlib.h>.
21390         * lib/stdlib.in.h (strtoll): New declaration.
21391         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
21392         Set HAVE_STRTOLL.
21393         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
21394         HAVE_STRTOLL.
21395         * modules/strtoll (Depends-on): Add stdlib.
21396         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
21397         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
21398
21399 2008-10-19  Bruno Haible  <bruno@clisp.org>
21400
21401         * modules/bcopy (Depends-on): Add strings.
21402         (Include): Specify <strings.h>.
21403
21404 2008-10-19  Bruno Haible  <bruno@clisp.org>
21405
21406         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
21407
21408 2008-10-19  Bruno Haible  <bruno@clisp.org>
21409
21410         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
21411         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
21412         mingw.
21413
21414 2008-10-19  Bruno Haible  <bruno@clisp.org>
21415
21416         * lib/atanl.c: Don't include isnanl.h.
21417         * lib/cosl.c: Likewise.
21418         * lib/ldexpl.c: Likewise.
21419         * lib/logl.c: Likewise.
21420         * lib/sinl.c: Likewise.
21421         * lib/sqrtl.c: Likewise.
21422         * lib/tanl.c: Likewise.
21423
21424         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
21425         * lib/isnanf.h: Remove file.
21426         * lib/isnand.h: Remove file.
21427         * lib/isnanl.h: Remove file.
21428         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
21429         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
21430         macros.
21431         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
21432         HAVE_ISNANF, don't define it as a C macro.
21433         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
21434         HAVE_ISNAND, don't define it as a C macro.
21435         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
21436         HAVE_ISNANL, don't define it as a C macro.
21437         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
21438         HAVE_ISNAN[FDL].
21439         * modules/isnanf (Files): Remove lib/isnanf.h.
21440         (Depends-on): Add math.
21441         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
21442         (Include): Specify <math.h> instead of isnanf.h.
21443         * modules/isnand (Files): Remove lib/isnand.h.
21444         (Depends-on): Add math.
21445         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
21446         (Include): Specify <math.h> instead of isnand.h.
21447         * modules/isnanl (Files): Remove lib/isnanl.h.
21448         (Depends-on): Add math.
21449         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
21450         (Include): Specify <math.h> instead of isnanl.h.
21451         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
21452         HAVE_ISNAN[FDL].
21453         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
21454         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
21455         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
21456         * NEWS: Mention the change.
21457
21458 2008-10-18  Bruno Haible  <bruno@clisp.org>
21459
21460         Add getusershell(), setusershell(), endusershell() declarations to
21461         <unistd.h>.
21462         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
21463         declarations.
21464         * lib/getusershell.c: Include unistd.h.
21465         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
21466         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
21467         HAVE_GETUSERSHELL.
21468         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
21469         and HAVE_GETUSERSHELL.
21470         * modules/getusershell (Depends-on): Add unistd, extensions.
21471         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21472         (Include): Specify <unistd.h>.
21473         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
21474         HAVE_GETUSERSHELL.
21475
21476 2008-10-18  Bruno Haible  <bruno@clisp.org>
21477
21478         Add a getloadavg() declaration to <stdlib.h>.
21479         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
21480         getloadavg declaration.
21481         (getloadavg): New declaration.
21482         * lib/getloadavg.c: Include <stdlib.h> first.
21483         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
21484         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
21485         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
21486         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
21487         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
21488         * modules/getloadavg (Depends-on): Add stdlib, extensions.
21489         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
21490         (Include): Specify <stdlib.h>.
21491         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
21492         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
21493
21494 2008-10-18  Bruno Haible  <bruno@clisp.org>
21495
21496         * lib/dirchownmod.c: Don't include lchmod.h.
21497
21498         Move the lchmod() declaration to <sys/stat.h>.
21499         * lib/lchmod.h: Remove file.
21500         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
21501         (lchmod): New declaration, moved here from lib/lchown.h.
21502         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
21503         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
21504         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
21505         and HAVE_LCHMOD.
21506         * modules/lchmod (Files): Remove lib/lchmod.h.
21507         (Depends-on): Add sys_stat, extensions.
21508         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
21509         (Include): Specify <sys/stat.h> instead of lchmod.h.
21510         * modules/sys_stat (Depends-on): Add link-warning.
21511         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
21512         definition of GL_LINK_WARNING.
21513         * NEWS: Mention the change.
21514
21515 2008-10-18  Bruno Haible  <bruno@clisp.org>
21516
21517         * lib/fchdir.c: Don't include dirfd.h.
21518         * lib/fts.c: Likewise.
21519         * lib/getcwd.c: Likewise.
21520         * lib/glob.c: Likewise.
21521
21522         Move the dirfd() declaration to <dirent.h>.
21523         * lib/dirfd.h: Remove file.
21524         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
21525         (dirfd): New declaration.
21526         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
21527         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
21528         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
21529         HAVE_DECL_DIRFD.
21530         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
21531         HAVE_DECL_DIRFD.
21532         * modules/dirfd (Files): Remove lib/dirfd.h.
21533         (Depends-on): Add dirent, extensions.
21534         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
21535         (Include): Specify <dirent.h> instead of dirfd.h.
21536         * modules/dirent (Depends-on): Add link-warning.
21537         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
21538         definition of GL_LINK_WARNING.
21539         * NEWS: Mention the change.
21540
21541 2008-10-18  Bruno Haible  <bruno@clisp.org>
21542
21543         Move the euidaccess() declaration to <unistd.h>.
21544         * lib/euidaccess.h: Remove file.
21545         * lib/unistd.in.h (euidaccess): New declaration.
21546         * lib/euidaccess.c: Don't include euidaccess.h.
21547         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
21548         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
21549         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
21550         and HAVE_EUIDACCESS.
21551         * modules/euidaccess (Files): Remove lib/euidaccess.h.
21552         (Depends-on): Add unistd.
21553         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21554         (Include): Specify <unistd.h> instead of euidaccess.h.
21555         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
21556         HAVE_EUIDACCESS.
21557         * NEWS: Mention the change.
21558
21559 2008-10-18  Bruno Haible  <bruno@clisp.org>
21560
21561         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
21562
21563         Move the getdomainname() declaration to <unistd.h>.
21564         * lib/getdomainname.h: Remove file.
21565         * lib/unistd.in.h (getdomainname): New declaration.
21566         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
21567         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
21568         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
21569         HAVE_GETDOMAINNAME.
21570         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21571         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
21572         * modules/getdomainname (Files): Remove lib/getdomainname.h.
21573         (Depends-on): Add unistd, extensions.
21574         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21575         (Includes): Specify <unistd.h> instead of getdomainname.h.
21576         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
21577         HAVE_GETDOMAINNAME.
21578         * NEWS: Mention the change.
21579
21580 2008-10-18  Bruno Haible  <bruno@clisp.org>
21581
21582         * modules/dirent: New file.
21583         * m4/dirent_h.m4: New file.
21584         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
21585         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
21586         * modules/fchdir (Files): Remove lib/dirent.in.h.
21587         (Depends-on): Add dirent.
21588         (Makefile.am): Move rules to modules/dirent.
21589         * doc/posix-headers/dirent.texi: Mention the new module.
21590
21591 2008-10-18  Bruno Haible  <bruno@clisp.org>
21592
21593         Avoid -Wunused-parameter warnings in public gnulib header files.
21594         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
21595         macro.
21596         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
21597
21598 2008-10-18  Bruno Haible  <bruno@clisp.org>
21599
21600         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
21601         * doc/glibc-functions/error.texi: Mention the module 'error'.
21602         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
21603         * doc/glibc-functions/getdomainname.texi: Mention the module
21604         'getdomainname'.
21605         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
21606         * doc/glibc-functions/getpagesize.texi: Mention the module
21607         'getpagesize'.
21608         * doc/glibc-functions/getusershell.texi: Mention the module
21609         'getusershell'.
21610         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
21611         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
21612         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
21613         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
21614         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
21615         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
21616         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
21617         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
21618         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
21619         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
21620         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
21621         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
21622         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
21623         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
21624
21625 2008-10-17  Bruno Haible  <bruno@clisp.org>
21626
21627         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
21628         HP-UX and IRIX, use -0.0L.
21629         * tests/test-ceill.c (minus_zero): Likewise.
21630         * tests/test-floorl.c (minus_zero): Likewise.
21631         * tests/test-frexpl.c (minus_zero): Likewise.
21632         * tests/test-isnan.c (minus_zerol): Likewise.
21633         * tests/test-isnanl.h (minus_zero): Likewise.
21634         * tests/test-ldexpl.c (minus_zero): Likewise.
21635         * tests/test-roundl.c (minus_zero): Likewise.
21636         * tests/test-signbit.c (minus_zerol): Likewise.
21637         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
21638         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
21639         * tests/test-truncl.c (minus_zero): Likewise.
21640         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
21641         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
21642         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
21643         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
21644
21645 2008-10-17  Bruno Haible  <bruno@clisp.org>
21646
21647         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
21648         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
21649         that it gets activated only for gcc >= 3.0.
21650         * lib/dirent.in.h: Likewise.
21651         * lib/errno.in.h: Likewise.
21652         * lib/fcntl.in.h: Likewise.
21653         * lib/float.in.h: Likewise.
21654         * lib/iconv.in.h: Likewise.
21655         * lib/inttypes.in.h: Likewise.
21656         * lib/locale.in.h: Likewise.
21657         * lib/math.in.h: Likewise.
21658         * lib/netdb.in.h: Likewise.
21659         * lib/netinet_in.in.h: Likewise.
21660         * lib/search.in.h: Likewise.
21661         * lib/signal.in.h: Likewise.
21662         * lib/spawn.in.h: Likewise.
21663         * lib/stdarg.in.h: Likewise.
21664         * lib/stdint.in.h: Likewise.
21665         * lib/stdio.in.h: Likewise.
21666         * lib/stdlib.in.h: Likewise.
21667         * lib/string.in.h: Likewise.
21668         * lib/strings.in.h: Likewise.
21669         * lib/sys_file.in.h: Likewise.
21670         * lib/sys_ioctl.in.h: Likewise.
21671         * lib/sys_select.in.h: Likewise.
21672         * lib/sys_socket.in.h: Likewise.
21673         * lib/sys_stat.in.h: Likewise.
21674         * lib/sys_time.in.h: Likewise.
21675         * lib/sysexits.in.h: Likewise.
21676         * lib/time.in.h: Likewise.
21677         * lib/unistd.in.h: Likewise.
21678         * lib/wchar.in.h: Likewise.
21679         * lib/wctype.in.h: Likewise.
21680         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21681
21682 2008-10-17  Jim Meyering  <meyering@redhat.com>
21683
21684         ignore-value: don't depend on inline module
21685         * modules/ignore-value (Depends-on): Remove 'inline'.
21686         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
21687         Suggestion from Bruno Haible.
21688
21689 2008-10-17  Bruno Haible  <bruno@clisp.org>
21690
21691         New implementation of condition variables for Win32.
21692         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
21693         (gl_linked_waitqueue_t): New type.
21694         (gl_cond_t): Use it.
21695         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
21696         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
21697         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
21698         (glthread_cond_init_func, glthread_cond_wait_func,
21699         glthread_cond_timedwait_func, glthread_cond_signal_func,
21700         glthread_cond_broadcast_func, glthread_cond_destroy_func):
21701         Reimplemented on the basis of gl_linked_waitqueue_t.
21702         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
21703         gl_waitqueue_t.
21704         (gl_rwlock_t): Update.
21705         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
21706
21707 2008-10-17  Simon Josefsson  <simon@josefsson.org>
21708
21709         * modules/recvfrom (Depends-on): Add dependency on getpeername.
21710         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
21711
21712 2008-10-17  Jim Meyering  <meyering@redhat.com>
21713
21714         ignore-value: new module
21715         * modules/ignore-value: New file.
21716         * lib/ignore-value.h: New file.
21717         * MODULES.html.sh (Compiler warning management): New section,
21718         just for this module.  More to come.
21719
21720 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
21721
21722         open-safer.c: avoid 'signed and unsigned in conditional...' warning
21723         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
21724         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
21725
21726 2008-10-16  Jim Meyering  <meyering@redhat.com>
21727
21728         openat-die.c: avoid 'no previous prototype' warning
21729         * lib/openat-die.c: Include "openat.h".
21730         Reported by Reuben Thomas <rrt@sc3d.org>.
21731
21732 2008-10-16  Simon Josefsson  <simon@josefsson.org>
21733
21734         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
21735         * lib/netdb.in.h: Fix typo.
21736         Reported by Bruno Haible  <bruno@clisp.org>
21737
21738         * lib/netdb.in.h: Include sys/socket.h for platforms without
21739         netdb.h, to get structures like hostent on MinGW.
21740         * modules/netdb (Depends-on): Add sys_socket.
21741
21742 2008-10-15  Simon Josefsson  <simon@josefsson.org>
21743
21744         * modules/netdb, modules/netdb-tests: New file.
21745         * m4/netdb_h.m4: New file.
21746         * lib/netdb.in.h: Add, currently just an empty file pending
21747         definitions.
21748         * tests/test-netdb.c: New file.
21749         * doc/posix-headers/netdb.texi: Mention that we replace it if
21750         needed.
21751         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
21752         netdb.
21753
21754 2008-10-15  Simon Josefsson  <simon@josefsson.org>
21755
21756         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
21757         with code.
21758
21759 2008-10-13  Bruno Haible  <bruno@clisp.org>
21760
21761         * lib/glthread/cond.c (glthread_cond_wait_func,
21762         glthread_cond_timedwait_func): Add a comment.
21763
21764 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21765
21766         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
21767         * tests/test-select.c: Likewise,
21768
21769 2008-10-13  Bruno Haible  <bruno@clisp.org>
21770
21771         * lib/glthread/cond.c (glthread_cond_wait_func,
21772         glthread_cond_timedwait_func): Fix variable name.
21773         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
21774
21775 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
21776
21777         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
21778         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
21779         struct sockaddr.sa_len.
21780         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
21781
21782 2008-10-13  Simon Josefsson  <simon@josefsson.org>
21783
21784         * build-aux/pmccabe2html: Add css and css_url parameters.
21785
21786 2008-10-12  Bruno Haible  <bruno@clisp.org>
21787
21788         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
21789         calling aclx_get.
21790         Reported by Rainer Tammer <tammer@tammer.net>.
21791
21792 2008-10-12  Bruno Haible  <bruno@clisp.org>
21793
21794         Use msvcrt aware primitives for creation/termination of Win32 threads.
21795         * lib/glthread/thread.c: Include <process.h>.
21796         (glthread_create_func): Use _beginthreadex instead of CreateThread.
21797         (wrapper_func): Update signature.
21798         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
21799
21800 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
21801             Bruno Haible  <bruno@clisp.org>
21802
21803         Provide a Win32 implementation of the 'cond' module.
21804         * lib/glthread/cond.h [USE_WIN32]: New implementation.
21805         * lib/glthread/cond.c (glthread_cond_init_func,
21806         glthread_cond_wait_func, glthread_cond_timedwait_func,
21807         glthread_cond_signal_func, glthread_cond_broadcast_func,
21808         glthread_cond_destroy_func) [USE_WIN32]: New functions.
21809         * modules/cond (Dependencies): Add gettimeofday.
21810
21811 2008-10-11  Bruno Haible  <bruno@clisp.org>
21812
21813         Make sleep work on older versions of mingw.
21814         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
21815         only whether it exists.
21816         * doc/posix-functions/sleep.texi: Mention the problem with older
21817         versions of mingw.
21818
21819 2008-10-11  Bruno Haible  <bruno@clisp.org>
21820
21821         New module 'shutdown'.
21822         * modules/shutdown: New file.
21823         * lib/sys_socket.in.h (shutdown): New declaration.
21824         * lib/winsock.c (shutdown): New function.
21825         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
21826         GNULIB_SHUTDOWN.
21827         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
21828         * doc/posix-functions/shutdown.texi: Document the new module.
21829
21830 2008-10-11  Jim Meyering  <meyering@redhat.com>
21831
21832         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
21833
21834 2008-10-11  Bruno Haible  <bruno@clisp.org>
21835
21836         New module 'fclose'.
21837         * modules/fclose: New file.
21838         * lib/stdio.in.h (fclose): New declaration.
21839         * lib/fclose.c: New file.
21840         * m4/fclose.m4: New file.
21841         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
21842         REPLACE_FCLOSE.
21843         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
21844         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
21845         REPLACE_FCLOSE.
21846         * modules/close (Depends-on): fclose.
21847         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
21848
21849 2008-10-11  Bruno Haible  <bruno@clisp.org>
21850
21851         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
21852         set errno and don't call _close.
21853
21854 2008-10-10  Bruno Haible  <bruno@clisp.org>
21855
21856         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
21857         ACL, not afterwards. Fixes test failure on Cygwin.
21858
21859 2008-10-09  Ben Pfaff  <blp@gnu.org>
21860
21861         * build-aux/announce-gen: Fix gnulib version related part of usage
21862         message.  Die with a useful error message if no tarballs are
21863         found.
21864
21865 2008-10-10  Jim Meyering  <meyering@redhat.com>
21866
21867         bootstrap: use git's --depth=N option only if it's supported
21868         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
21869         recognize the --depth option.  Reported by Pádraig Brady.
21870
21871 2008-10-09  Bruno Haible  <bruno@clisp.org>
21872
21873         New module 'ioctl'.
21874         * modules/ioctl: New file.
21875         * lib/sys_socket.in.h (ioctl): Remove declaration.
21876         * lib/winsock.c: Include <sys/ioctl.h>.
21877         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
21878         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
21879         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
21880         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
21881         * doc/posix-functions/ioctl.texi: Mention the new module.
21882
21883 2008-10-09  Bruno Haible  <bruno@clisp.org>
21884
21885         New module 'sys_ioctl'.
21886         * lib/sys_ioctl.in.h: New file.
21887         * m4/sys_ioctl_h.m4: New file.
21888         * modules/sys_ioctl: New file.
21889         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
21890
21891 2008-10-09  Bruno Haible  <bruno@clisp.org>
21892
21893         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
21894         * lib/winsock.c: Include <stdarg.h>.
21895         (rpl_ioctl): Change to second argument 'int' and then varargs.
21896
21897 2008-10-09  Bruno Haible  <bruno@clisp.org>
21898
21899         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
21900         when the sys_socket module is present and the system has <winsock2.h>.
21901
21902 2008-10-09  Bruno Haible  <bruno@clisp.org>
21903
21904         * doc/posix-functions/close.texi: Mention module 'close' instead of
21905         module 'sys_socket'.
21906
21907 2008-10-09  Bruno Haible  <bruno@clisp.org>
21908
21909         * doc/glibc-headers/sys_ioctl.texi: New file.
21910         * doc/gnulib.texi: Include it.
21911
21912 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21913             Bruno Haible  <bruno@clisp.org>
21914
21915         Combine the two replacements of 'close'.
21916         * lib/sys_socket.in.h (close): Define to a reminder to include
21917         <unistd.h>.
21918         (_gl_close_fd_maybe_socket): New declaration.
21919         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
21920         * lib/winsock.c (close): Remove undefinition.
21921         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
21922         needed for the gnulib module 'close'.
21923         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
21924         define to an error symbol or to a warning, if suitable.
21925         * lib/close.c: Include <sys/socket.h>.
21926         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
21927         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
21928         UNISTD_H_HAVE_WINSOCK2_H.
21929         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
21930         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
21931         UNISTD_H_HAVE_WINSOCK2_H.
21932         * modules/sys_socket (Files): Add m4/unistd_h.m4.
21933         (configure.ac): Set a module indicator.
21934         (Makefile.am): Substitute GNULIB_CLOSE.
21935         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
21936         * modules/poll-tests (Depends-on): Add close.
21937         * modules/select-tests (Depends-on): Likewise.
21938
21939 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21940             Bruno Haible  <bruno@clisp.org>
21941
21942         New module 'close'.
21943         * modules/close: New file.
21944         * lib/unistd.in.h (close): Move declaration out of the
21945         FCHDIR_REPLACEMENT scope.
21946         (_gl_unregister_fd): New declaration.
21947         * lib/close.c: New file.
21948         * lib/fchdir.c (rpl_close): Remove function.
21949         * m4/close.m4: New file.
21950         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
21951         close.
21952         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
21953         REPLACE_CLOSE.
21954         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
21955         REPLACE_CLOSE.
21956         * modules/fchdir (Depends-on): Add close.
21957
21958 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21959             Bruno Haible  <bruno@clisp.org>
21960
21961         * lib/fcntl.in.h (open): Simplify conditionals.
21962         (_gl_register_fd): New declaration.
21963         * lib/fchdir.c (rpl_open): Remove function.
21964         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
21965         also.
21966         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
21967         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
21968         open.
21969
21970 2008-10-09  Jim Meyering  <meyering@redhat.com>
21971
21972         GNUmakefile: use the more name-space-friendly "_version"
21973         * top/GNUmakefile (_dummy): Update.
21974         (_version): Rename from "version".
21975
21976 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21977             Bruno Haible  <bruno@clisp.org>
21978
21979         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
21980         rpl_close.
21981         (_gl_register_fd): New function, extracted from rpl_open.
21982         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
21983         (rpl_open, rpl_opendir): Use _gl_register_fd.
21984
21985 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
21986
21987         Fix organization of 'open' replacement.
21988         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
21989         (gl_FUNC_OPEN): Use it.
21990         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
21991
21992 2008-10-08  Bruno Haible  <bruno@clisp.org>
21993
21994         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
21995
21996 2008-10-08  Simon Josefsson  <simon@josefsson.org>
21997
21998         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
21999         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
22000         listen).
22001
22002 2008-10-08  Eric Blake  <ebb9@byu.net>
22003
22004         GNUmakefile: add 'make version' target
22005         * top/GNUmakefile (_curr-ver): Split version update rules...
22006         (version): ...into a target.
22007
22008 2008-10-07  Bruno Haible  <bruno@clisp.org>
22009
22010         Use a more portable replacement expression for -0.0L.
22011         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
22012         instead of -0.0L. Fix m4 quotation.
22013
22014         * tests/test-signbit.c: Include <float.h>.
22015         (minus_zero): New variable.
22016         (test_signbitl): Use minus_zero instead of -zero.
22017         * modules/signbit-tests (Depends-on): Add float.
22018
22019         * tests/test-ceill.c: Include <float.h>.
22020         (zero): Remove variable.
22021         (minus_zero): New variable.
22022         (main): Use minus_zero instead of -zero.
22023         * modules/ceill-tests (Depends-on): Add float.
22024
22025         * tests/test-floorl.c: Include <float.h>.
22026         (zero): Remove variable.
22027         (minus_zero): New variable.
22028         (main): Use minus_zero instead of -zero.
22029         * modules/floorl-tests (Depends-on): Add float.
22030
22031         * tests/test-roundl.c: Include <float.h>.
22032         (zero): Remove variable.
22033         (minus_zero): New variable.
22034         (main): Use minus_zero instead of -zero.
22035         * modules/roundl-tests (Depends-on): Add float.
22036
22037         * tests/test-truncl.c: Include <float.h>.
22038         (zero): Remove variable.
22039         (minus_zero): New variable.
22040         (main): Use minus_zero instead of -zero.
22041         * modules/truncl-tests (Depends-on): Add float.
22042
22043         * tests/test-frexpl.c (zero): Remove variable.
22044         (minus_zero): New variable.
22045         (main): Use minus_zero instead of -zero.
22046         * modules/frexpl-tests (Depends-on): Add float.
22047
22048         * tests/test-isnan.c (zerol): Remove variable.
22049         (minus_zerol): New variable.
22050         (test_long_double): Use minus_zerol instead of -zerol.
22051         * modules/isnan-tests (Depends-on): Add float.
22052
22053         * tests/test-isnanl.h (zero): Remove variable.
22054         (minus_zero): New variable.
22055         (main): Use minus_zero instead of -zero.
22056         * modules/isnanl-nolibm-tests (Depends-on): Add float.
22057         * modules/isnanl-tests (Depends-on): Add float.
22058
22059         * tests/test-ldexpl.c (zero): Remove variable.
22060         (minus_zero): New variable.
22061         (main): Use minus_zero instead of -zero.
22062         * modules/ldexpl-tests (Depends-on): Add float.
22063
22064         * tests/test-snprintf-posix.h (zerol): Remove variable.
22065         (minus_zerol): New variable.
22066         (test_function): Use minus_zerol instead of -zerol.
22067         * modules/snprintf-posix-tests (Depends-on): Add float.
22068         * modules/vsnprintf-posix-tests (Depends-on): Add float.
22069
22070         * tests/test-sprintf-posix.h (zerol): Remove variable.
22071         (minus_zerol): New variable.
22072         (test_function): Use minus_zerol instead of -zerol.
22073         * modules/sprintf-posix-tests (Depends-on): Add float.
22074         * modules/vsprintf-posix-tests (Depends-on): Add float.
22075
22076         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
22077         (minus_zerol): New variable.
22078         (test_function): Use minus_zerol instead of -zerol.
22079         * modules/vasnprintf-posix-tests (Depends-on): Add float.
22080
22081         * tests/test-vasprintf-posix.c (zerol): Remove variable.
22082         (minus_zerol): New variable.
22083         (test_function): Use minus_zerol instead of -zerol.
22084         * modules/vasprintf-posix-tests (Depends-on): Add float.
22085
22086 2008-10-07  Simon Josefsson  <simon@josefsson.org>
22087
22088         * MODULES.html.sh (Support for building documentation): Mention
22089         pmccabe2html.  Sort entries.
22090
22091         Add pmccabe2html module, from gnupdf.
22092         * build-aux/pmccabe.css: New file.
22093         * build-aux/pmccabe2html: New file.
22094         * m4/pmccabe2html.m4: New file.
22095         * modules/pmccabe2html: New file.
22096
22097 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
22098
22099         flock: new module
22100         * MODULES.html.sh: Add to list of modules.
22101         * lib/flock.c: flock implementation for Windows and Unix systems
22102         which have fcntl.
22103         * doc/glibc-functions/flock.texi: Update documentation.
22104         * lib/sys_file.in.h: <sys/file.h> header file.
22105         * m4/flock.m4: M4 macros.
22106         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
22107         * modules/flock: flock module.
22108         * modules/flock-tests: flock tests module.
22109         * modules/sys_file: sys/file.h module.
22110         * tests/test-flock.c: test suite for flock.
22111
22112 2008-10-06  Jim Meyering  <meyering@redhat.com>
22113
22114         bootstrap: check for LT_INIT more portably still ;-)
22115         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
22116         Spotted by Bruno Haible.
22117
22118 2008-10-06  Eric Blake  <ebb9@byu.net>
22119
22120         test-signbit: avoid tripping Irix cc bug on -0.0L
22121         * tests/test-signbit.c (minus_zerol): Delete, and replace with
22122         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
22123         entire testsuite consistent and avoids an Irix 6.2 bug.
22124
22125 2008-10-05  Bruno Haible  <bruno@clisp.org>
22126             Jim Meyering  <jim@meyering.net>
22127
22128         Add an option for ignoring EPIPE during close_stdout.
22129         * lib/closeout.h: Include <stdbool.h>.
22130         (close_stdout_set_ignore_EPIPE): New declaration.
22131         * lib/closeout.c: Include <stdbool.h>.
22132         (ignore_EPIPE): New variable.
22133         (close_stdout_set_ignore_EPIPE): New function.
22134         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
22135         * lib/close-stream.c (close_stream): Mention the possible EPIPE
22136         failure.
22137         * modules/closeout (Depends-on): Add stdbool.
22138
22139 2008-10-05  Bruno Haible  <bruno@clisp.org>
22140
22141         * modules/accept: New file.
22142         * modules/bind: New file.
22143         * modules/connect: New file.
22144         * modules/getpeername: New file.
22145         * modules/getsockname: New file.
22146         * modules/getsockopt: New file.
22147         * modules/listen: New file.
22148         * modules/recv: New file.
22149         * modules/recvfrom: New file.
22150         * modules/send: New file.
22151         * modules/sendto: New file.
22152         * modules/setsockopt: New file.
22153         * modules/socket: New file.
22154         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
22155         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
22156         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
22157         the particular module is requested. Add a link warning when the
22158         particular module is not requested.
22159         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
22160         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
22161         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
22162         the particular module is requested.
22163         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
22164         gl_SYS_SOCKET_H_DEFAULTS): New macros.
22165         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
22166         * modules/sys_socket (Depends-on): Add link-warning.
22167         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
22168         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
22169         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
22170         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
22171         GL_LINK_WARNING.
22172         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
22173         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
22174         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
22175         * doc/posix-functions/getpeername.texi: Mention the new module
22176         'getpeername'.
22177         * doc/posix-functions/getsockname.texi: Mention the new module
22178         'getsockname'.
22179         * doc/posix-functions/getsockopt.texi: Mention the new module
22180         'getsockopt'.
22181         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
22182         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
22183         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
22184         * doc/posix-functions/send.texi: Mention the new module 'send'.
22185         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
22186         * doc/posix-functions/setsockopt.texi: Mention the new module
22187         'setsockopt'.
22188         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
22189         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
22190         listen, connect, accept.
22191         * modules/select-tests (Depends-on): Likewise.
22192
22193 2008-10-05  Bruno Haible  <bruno@clisp.org>
22194
22195         * lib/winsock.c (strerror): Remove unused #undef.
22196         (rpl_close): Remove unused local variable.
22197
22198         * modules/sys_socket (Depends-on); Add errno.
22199
22200 2008-10-05  Bruno Haible  <bruno@clisp.org>
22201
22202         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
22203         (select): Add a link warning when the 'select' module is not used.
22204         * modules/sys_select (Depends-on): Add link-warning.
22205         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
22206         Suggested by Paolo Bonzini.
22207
22208 2008-10-05  Jim Meyering  <meyering@redhat.com>
22209
22210         bootstrap: check for LT_INIT more portably
22211         * build-aux/bootstrap: Avoid using grep -E, since it's not
22212         portable enough.  Suggestion from Bruno Haible.
22213
22214 2008-10-05  Bruno Haible  <bruno@clisp.org>
22215
22216         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
22217         as being fixed by gnulib.
22218
22219 2008-10-05  Bruno Haible  <bruno@clisp.org>
22220
22221         * modules/select-tests: New file, mostly copied from
22222         modules/sys_select-tests.
22223         * tests/test-select.c: New file, mostly copied from
22224         tests/test-sys_select.c.
22225         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
22226         * modules/sys_select-tests (Depends-on): Remove all dependencies.
22227         (Makefile.am): Remove test_sys_select_LDADD.
22228
22229         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
22230         to an undefined symbol, for an error message.
22231         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
22232         (gl_SYS_SELECT_H_DEFAULTS): New macro.
22233         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
22234         winsock-select.c here.
22235         * modules/sys_select (Files): Remove lib/winsock-select.c.
22236         (Depends-on): Remove alloca.
22237         (Makefile.am): Substitute GNULIB_SELECT.
22238         * modules/select: New file.
22239         * doc/posix-functions/select.texi: Update.
22240
22241 2008-10-05  Bruno Haible  <bruno@clisp.org>
22242
22243         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
22244         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
22245         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
22246         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
22247         getdtablesize.
22248         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
22249         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
22250
22251 2008-10-05  Bruno Haible  <bruno@clisp.org>
22252
22253         * modules/getdtablesize-tests: New file.
22254         * tests/test-getdtablesize.c: New file.
22255
22256         New module 'getdtablesize'.
22257         * lib/unistd.in.h (getdtablesize): New declaration.
22258         * lib/getdtablesize.c: New file.
22259         * m4/getdtablesize.m4: New file.
22260         * modules/getdtablesize: New file.
22261         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
22262         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
22263         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
22264         HAVE_GETDTABLESIZE.
22265         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
22266
22267 2008-10-05  Bruno Haible  <bruno@clisp.org>
22268
22269         * modules/sched (Makefile.am): Fix typo.
22270         Reported by Simon Josefsson.
22271
22272 2008-10-05  Jim Meyering  <meyering@redhat.com>
22273
22274         bootstrap: check for LT_INIT, too
22275         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
22276         are deprecated.  Suggestion from Ralf Wildenhues.
22277
22278 2008-10-05  Bruno Haible  <bruno@clisp.org>
22279
22280         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
22281         overriding them by ours.
22282         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
22283
22284 2008-10-05  Jim Meyering  <meyering@redhat.com>
22285
22286         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
22287         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
22288         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
22289
22290 2008-10-04  Bruno Haible  <bruno@clisp.org>
22291
22292         * modules/dup2 (License): Change to LGPLv2+.
22293         * modules/sleep (License): Likewise.
22294         * modules/perror (License): Likewise.
22295         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
22296         Blake.
22297         * modules/signal (License): Likewise.
22298         * modules/sigprocmask (License): Likewise.
22299         * modules/raise (License): Change to LGPLv2+, with approval by Jim
22300         Meyering.
22301
22302 2008-10-04  Bruno Haible  <bruno@clisp.org>
22303
22304         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
22305         Reported by Rainer Tammer <tammer@tammer.net>.
22306
22307 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
22308             Bruno Haible  <bruno@clisp.org>
22309
22310         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
22311         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
22312         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
22313
22314 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
22315
22316         filevercmp: new module
22317         * lib/filevercmp.h: New function filevercmp comparing version strings.
22318         * lib/filevercmp.c: Implementation of filevercmp function.
22319         * modules/filevercmp: Module metadata.
22320         * tests/test-filevercmp.c: Unit test for new module.
22321         * modules/filevercmp-tests: Unit test metadata.
22322         * MODULES.html.sh: Add filevercmp module.
22323
22324 2008-10-03  Bruno Haible  <bruno@clisp.org>
22325
22326         * lib/c-ctype.h: Add comment.
22327         Reported by Jim Meyering.
22328
22329 2008-10-02  Bruno Haible  <bruno@clisp.org>
22330
22331         * modules/posix_spawn-internal (Depends-on): Add 'open'.
22332
22333 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
22334
22335         * build-aux/bootstrap: Allow renaming bootstrap, and change the
22336         name of bootstrap.conf accordingly.
22337
22338 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
22339
22340         * build-aux/bootstrap: Install git-merge-changelog configuration
22341         items into .gitconfig if needed.
22342
22343 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
22344
22345         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
22346         git repository, and initialize/update it accordingly.
22347
22348 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
22349
22350         * modules/fsync-tests: New file.
22351         * tests/test-fsync.c: New file.
22352
22353         New module 'fsync'.
22354         * lib/fsync.c: New file.
22355         * m4/fsync.m4: New file.
22356         * modules/fsync: New file.
22357         * lib/unistd.in.h (fsync): New declaration.
22358         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
22359         GNULIB_FSYNC and HAVE_FSYNC.
22360         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
22361         * MODULES.html.sh (posix_functions): Add fsync.
22362         * doc/posix-functions/fsync.texi: Mention the new module.
22363
22364 2008-10-02  Jim Meyering  <meyering@redhat.com>
22365
22366         fts.c: sync with similar code from coreutils' remove.c
22367         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
22368         Guard also with "#if defined __linux__", since for now at least,
22369         this code is Linux-kernel-specific.
22370
22371 2008-10-02  Jim Meyering  <meyering@redhat.com>
22372
22373         fts: bug fixes
22374         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
22375         Include <sys/vfs.h>, not <sys/statfs.h>.
22376
22377         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
22378         Include <sys/vfs.h>, not <sys/statfs.h>.
22379
22380 2008-10-01  Bruno Haible  <bruno@clisp.org>
22381
22382         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
22383         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
22384         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
22385         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
22386         * doc/posix-functions/posix_spawnp.texi: Likewise.
22387         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
22388         whether posix_spawn actually works.
22389         * m4/pipe.m4 (gl_PIPE): Likewise.
22390         * modules/execute (Files): Add m4/posix_spawn.m4.
22391         * modules/pipe (Files): Add m4/posix_spawn.m4.
22392         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
22393
22394 2008-10-01  Jim Meyering  <meyering@redhat.com>
22395
22396         remove trailing spaces
22397         * NEWS: Likewise.
22398         * lib/poll.c (poll): Likewise.
22399         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
22400         * lib/winsock.c (rpl_close): Likewise.
22401         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
22402         * modules/yield: Likewise.
22403         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
22404         * tests/test-sys_select.c (connect_to_socket): Likewise.
22405
22406         fts.c: adjust a new interface to be more generally useful
22407         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
22408         (fts_build): Adjust caller.
22409
22410 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22411
22412         * modules/cond-tests: New file.
22413         * tests/test-cond.c: New file.
22414
22415 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22416             Bruno Haible  <bruno@clisp.org>
22417
22418         * modules/cond (Dependencies): Add errno, time.
22419         * lib/glthread/cond.h: Include <time.h>.
22420         (gl_cond_define, gl_cond_define_initialized): Use the same definition
22421         across platforms.
22422
22423 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22424             Bruno Haible  <bruno@clisp.org>
22425
22426         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
22427
22428 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22429             Bruno Haible  <bruno@clisp.org>
22430
22431         * modules/tls-tests (Depends-on): Add thread, yield.
22432         (configure.ac): Remove all checks.
22433         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
22434         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
22435         gl_thread_self): Remove definitions. Include glthread/thread.h and
22436         glthread/yield.h instead.
22437         (test_tls): Pass an additional NULL argument to gl_thread_join.
22438
22439 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22440             Bruno Haible  <bruno@clisp.org>
22441
22442         * modules/lock-tests (Depends-on): Add thread, yield.
22443         (configure.ac): Remove all checks.
22444         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
22445         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
22446         gl_thread_self): Remove definitions. Include glthread/thread.h and
22447         glthread/yield.h instead.
22448         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
22449         additional NULL argument to gl_thread_join.
22450
22451 2008-09-30  Bruno Haible  <bruno@clisp.org>
22452
22453         Fix the Win32 implementation of the 'thread' module.
22454         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
22455         pointer type.
22456         (gl_thread_self): Invoke gl_thread_self_func.
22457         (gl_thread_self_func): New declaration.
22458         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
22459         (do_init_self_key, init_self_key): New functions.
22460         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
22461         Remove some fields.
22462         (running_threads, running_lock): Remove variables.
22463         (get_current_thread_handle): New function.
22464         (gl_thread_self_func, wrapper_func, glthread_create_func,
22465         glthread_join_func, gl_thread_exit_func): Largely rewritten and
22466         simplified.
22467
22468 2008-09-30  Bruno Haible  <bruno@clisp.org>
22469
22470         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
22471         files.
22472
22473 2008-09-30  Jim Meyering  <meyering@redhat.com>
22474
22475         fts.m4: correct the test for statfs.f_type
22476         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
22477         when checking for statfs.f_type.
22478
22479 2008-09-15  Simon Josefsson  <simon@josefsson.org>
22480
22481         tests: avoid some compiler warnings
22482         * tests/test-memchr.c (main): Pass NULL indirectly.
22483         * tests/test-getdate.c (main): Remove unused variable 'ret'.
22484
22485 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
22486
22487         getdate.y: disallow countable dayshifts like "4 yesterday ago"
22488         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
22489         exactly specified dayshifts.
22490         (dayshift): New rule.
22491         (rel): Add dayshift.
22492         (relative_time_table) [tomorrow, yesterday, today, now]:
22493         Use tDAY_SHIFT in place of tDAY_UNIT.
22494         * tests/test-getdate.c: Add tests for now-disallowed countable
22495         dayshifts, e.g., "4 yesterday ago".
22496
22497 2008-09-29  Bruno Haible  <bruno@clisp.org>
22498
22499         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
22500         * tests/test-posix_spawn1.in.sh: Renamed from
22501         tests/test-posix_spawn.in.sh.
22502         * tests/test-posix_spawn2.c: New file.
22503         * tests/test-posix_spawn2.in.sh: New file.
22504         * modules/posix_spawnp-tests (Files): Update.
22505         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
22506
22507 2008-09-29  Bruno Haible  <bruno@clisp.org>
22508
22509         Propagate effects of putenv/setenv/unsetenv to child processes.
22510         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
22511         * lib/pipe.c (create_pipe): Likewise.
22512
22513 2008-09-29  Bruno Haible  <bruno@clisp.org>
22514
22515         Enable use of shell scripts as executables in mingw.
22516         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
22517         run the program as a shell script.
22518         * lib/pipe.c (create_pipe): Likewise.
22519         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
22520         resulting array.
22521
22522 2008-09-29  Eric Blake  <ebb9@byu.net>
22523
22524         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
22525
22526 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
22527
22528         * doc/posix-functions/accept.texi: Update mingw problems.
22529         * doc/posix-functions/bind.texi: Update mingw problems.
22530         * doc/posix-functions/close.texi: Update mingw problems.
22531         * doc/posix-functions/connect.texi: Update mingw problems.
22532         * doc/posix-functions/getpeername.texi: Update mingw problems.
22533         * doc/posix-functions/getsockname.texi: Update mingw problems.
22534         * doc/posix-functions/getsockopt.texi: Update mingw problems.
22535         * doc/posix-functions/ioctl.texi: Update mingw problems.
22536         * doc/posix-functions/listen.texi: Update mingw problems.
22537         * doc/posix-functions/recv.texi: Update mingw problems.
22538         * doc/posix-functions/recvfrom.texi: Update mingw problems.
22539         * doc/posix-functions/select.texi: Update mingw problems.
22540         * doc/posix-functions/send.texi: Update mingw problems.
22541         * doc/posix-functions/sendto.texi: Update mingw problems.
22542         * doc/posix-functions/setsockopt.texi: Update mingw problems.
22543         * doc/posix-functions/socket.texi: Update mingw problems.
22544
22545 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
22546             Bruno Haible  <bruno@clisp.org>
22547
22548         * lib/sys_select.in.h: Include sys/time.h.
22549         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
22550         * modules/sys_select: Depend on sys_time.
22551         * tests/test-sys_select.c: Test that sys/select.h defines struct
22552         timeval fully.
22553
22554 2008-09-29  Bruno Haible  <bruno@clisp.org>
22555
22556         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
22557         * lib/sys_select.in.h: Likewise.
22558
22559 2008-09-29  Bruno Haible  <bruno@clisp.org>
22560
22561         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
22562
22563 2008-09-29  Bruno Haible  <bruno@clisp.org>
22564
22565         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
22566         Set LIBSOCKET instead of augmenting LIBS.
22567         * modules/sockets (Link): New section.
22568         * modules/sockets-tests (test_sockets_LDADD): New variable.
22569         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
22570         * modules/poll-tests (test_poll_LDADD): New variable.
22571         * NEWS: Document the change.
22572
22573 2008-09-29  Bruno Haible  <bruno@clisp.org>
22574
22575         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
22576         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
22577         ARPA_INET_H directly.
22578         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
22579
22580 2008-09-28  Bruno Haible  <bruno@clisp.org>
22581
22582         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
22583         from gl_HEADER_SYS_SOCKET.
22584         (gl_HEADER_SYS_SOCKET): Invoke it.
22585         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
22586
22587 2008-09-28  Bruno Haible  <bruno@clisp.org>
22588
22589         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
22590         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
22591         Needed on OSF/1 4.0.
22592
22593 2008-09-28  Bruno Haible  <bruno@clisp.org>
22594
22595         Override open more carefully.
22596         * lib/open.c (orig_open): New function.
22597         (rpl_open): Use orig_open instead of open.
22598         * lib/fcntl.in.h: Add special invocation convention.
22599         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
22600         (gl_FUNC_OPEN): Invoke it.
22601
22602         Override freopen more carefully.
22603         * lib/freopen.c (orig_freopen): New function.
22604         (rpl_freopen): Use orig_freopen instead of freopen.
22605         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
22606         (gl_FUNC_FREOPEN): Invoke it.
22607
22608         Override fopen more carefully.
22609         * lib/fopen.c (orig_fopen): New function.
22610         (rpl_fopen): Use orig_fopen instead of fopen.
22611         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
22612         (gl_FUNC_FOPEN): Invoke it.
22613         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
22614
22615 2008-09-28  Bruno Haible  <bruno@clisp.org>
22616
22617         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
22618         SIGPIPE.
22619
22620 2008-09-28  Bruno Haible  <bruno@clisp.org>
22621
22622         * tests/test-sigaction.c (handler, main): Disable the check whether
22623         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
22624         glibc systems with LinuxThreads.
22625
22626 2008-09-28  Bruno Haible  <bruno@clisp.org>
22627
22628         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
22629
22630         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
22631         with AIX xlc.
22632         * lib/fcntl.in.h (open): Likewise.
22633         Reported by Rainer Tammer <tammer@tammer.net>.
22634
22635 2008-09-28  Bruno Haible  <bruno@clisp.org>
22636
22637         * modules/posix_spawnp-tests: New file.
22638         * tests/test-posix_spawn.c: New file.
22639         * tests/test-posix_spawn.in.sh: New file.
22640
22641         New module 'posix_spawnp'.
22642         * modules/posix_spawnp: New file.
22643         * lib/spawnp.c: New file, from GNU libc with modifications.
22644         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
22645
22646         New module 'posix_spawn'.
22647         * modules/posix_spawn: New file.
22648         * lib/spawn.c: New file, from GNU libc with modifications.
22649         * doc/posix-functions/posix_spawn.texi: Mention the new module.
22650
22651         New module 'posix_spawnattr_destroy'.
22652         * modules/posix_spawnattr_destroy: New file.
22653         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
22654         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
22655         module.
22656
22657         New module 'posix_spawnattr_setsigmask'.
22658         * modules/posix_spawnattr_setsigmask: New file.
22659         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
22660         modifications.
22661         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
22662         new module.
22663
22664         New module 'posix_spawnattr_getsigmask'.
22665         * modules/posix_spawnattr_getsigmask: New file.
22666         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
22667         modifications.
22668         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
22669         new module.
22670
22671         New module 'posix_spawnattr_setsigdefault'.
22672         * modules/posix_spawnattr_setsigdefault: New file.
22673         * lib/spawnattr_setdefault.c: New file, from GNU libc with
22674         modifications.
22675         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
22676         new module.
22677
22678         New module 'posix_spawnattr_getsigdefault'.
22679         * modules/posix_spawnattr_getsigdefault: New file.
22680         * lib/spawnattr_getdefault.c: New file, from GNU libc with
22681         modifications.
22682         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
22683         new module.
22684
22685         New module 'posix_spawnattr_setschedpolicy'.
22686         * modules/posix_spawnattr_setschedpolicy: New file.
22687         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
22688         modifications.
22689         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
22690         new module.
22691
22692         New module 'posix_spawnattr_getschedpolicy'.
22693         * modules/posix_spawnattr_getschedpolicy: New file.
22694         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
22695         modifications.
22696         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
22697         new module.
22698
22699         New module 'posix_spawnattr_setschedparam'.
22700         * modules/posix_spawnattr_setschedparam: New file.
22701         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
22702         modifications.
22703         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
22704         new module.
22705
22706         New module 'posix_spawnattr_getschedparam'.
22707         * modules/posix_spawnattr_getschedparam: New file.
22708         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
22709         modifications.
22710         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
22711         new module.
22712
22713         New module 'posix_spawnattr_setpgroup'.
22714         * modules/posix_spawnattr_setpgroup: New file.
22715         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
22716         modifications.
22717         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
22718         module.
22719
22720         New module 'posix_spawnattr_getpgroup'.
22721         * modules/posix_spawnattr_getpgroup: New file.
22722         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
22723         modifications.
22724         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
22725         module.
22726
22727         New module 'posix_spawnattr_setflags'.
22728         * modules/posix_spawnattr_setflags: New file.
22729         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
22730         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
22731         module.
22732
22733         New module 'posix_spawnattr_getflags'.
22734         * modules/posix_spawnattr_getflags: New file.
22735         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
22736         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
22737         module.
22738
22739         New module 'posix_spawnattr_init'.
22740         * modules/posix_spawnattr_init: New file.
22741         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
22742         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
22743         module.
22744
22745         New module 'posix_spawn_file_actions_destroy'.
22746         * modules/posix_spawn_file_actions_destroy: New file.
22747         * lib/spawn_faction_destroy.c: New file, from GNU libc with
22748         modifications.
22749         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
22750         the new module.
22751
22752         New module 'posix_spawn_file_actions_addopen'.
22753         * modules/posix_spawn_file_actions_addopen: New file.
22754         * lib/spawn_faction_addopen.c: New file, from GNU libc with
22755         modifications.
22756         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
22757         the new module.
22758
22759         New module 'posix_spawn_file_actions_adddup2'.
22760         * modules/posix_spawn_file_actions_adddup2: New file.
22761         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
22762         modifications.
22763         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
22764         the new module.
22765
22766         New module 'posix_spawn_file_actions_addclose'.
22767         * modules/posix_spawn_file_actions_addclose: New file.
22768         * lib/spawn_faction_addclose.c: New file, from GNU libc with
22769         modifications.
22770         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
22771         the new module.
22772
22773         New module 'posix_spawn_file_actions_init'.
22774         * modules/posix_spawn_file_actions_init: New file.
22775         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
22776         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
22777         new module.
22778
22779         New module 'posix_spawn-internal'.
22780         * modules/posix_spawn-internal: New file.
22781         * lib/spawn_int.h: New file, from GNU libc with modifications.
22782         * lib/spawni.c: New file, from GNU libc with modifications.
22783         * m4/posix_spawn.m4: New file.
22784
22785         New module 'spawn'.
22786         * modules/spawn: New file.
22787         * lib/spawn.in.h: New file, from GNU libc with modifications.
22788         * m4/spawn_h.m4: New file.
22789         * doc/posix-headers/spawn.texi: Mention the new module.
22790
22791 2008-09-28  Bruno Haible  <bruno@clisp.org>
22792
22793         * modules/sched-tests: New file.
22794         * tests/test-sched.c: New file.
22795
22796         New module 'sched'.
22797         * modules/sched: New file.
22798         * lib/sched.in.h: New file.
22799         * m4/sched_h.m4: New file.
22800         * doc/posix-headers/sched.texi: Mention the new module.
22801
22802 2008-09-27  Eric Blake  <ebb9@byu.net>
22803
22804         Fix previous patch, and tweak references to $0.
22805         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
22806         (func_version, func_gnulib_dir): Don't call this program
22807         gnulib-tool.
22808         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
22809         with using $0 in function.
22810         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
22811         (func_fatal_error): Reuse the name the user invoked us with.
22812
22813 2008-09-27  Bruno Haible  <bruno@clisp.org>
22814
22815         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
22816         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
22817         (gl_ICONV_H): Not here.
22818         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
22819         instead of assigning ICONV_H directly.
22820
22821         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
22822         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
22823         WCHAR_H directly.
22824
22825 2008-09-27  Bruno Haible  <bruno@clisp.org>
22826
22827         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
22828         * modules/arpa_inet (Depends-on): Add link-warning.
22829         (Makefile.am): Insert the definition of GL_LINK-WARNING.
22830         * modules/unistd (Makefile.am): Likewise.
22831
22832 2008-09-26  Bruno Haible  <bruno@clisp.org>
22833
22834         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
22835         variables.
22836         (func_version): Essentially copied from gnulib-tool.
22837         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
22838         func_readlink): Copied from gnulib-tool.
22839
22840 2008-09-26  Bruno Haible  <bruno@clisp.org>
22841
22842         * gnulib-tool (func_version): Change directory to $gnulib_dir before
22843         invoking git-version-gen.
22844
22845 2008-09-26  Bruno Haible  <bruno@clisp.org>
22846
22847         * posix-modules: Update to directory names changed on 2008-01-19.
22848         Remove commas in output before splitting into words. No more need to
22849         avoid 'ftruncate' since 2007-02-19.
22850
22851 2008-09-26  Bruno Haible  <bruno@clisp.org>
22852
22853         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
22854
22855 2008-09-26  Bruno Haible  <bruno@clisp.org>
22856
22857         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
22858         * modules/fwriteerror (Depends-on): Add errno.
22859
22860 2008-09-26  Bruno Haible  <bruno@clisp.org>
22861
22862         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
22863         * tests/test-vc-list-files-cvs.sh: Likewise.
22864
22865 2008-09-26  Bruno Haible  <bruno@clisp.org>
22866
22867         * doc/posix-headers/sys_resource.texi: Reorder items.
22868
22869 2008-09-26  Jim Meyering  <meyering@redhat.com>
22870
22871         fts: tweak inode comparison function
22872         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
22873         inode numbers, as documented.
22874
22875         fts: sort dirent entries on inode number before traversing
22876         This avoids a quadratic, seek-related performance penalty when
22877         operating on a directory containing many entries (measurable at 10k;
22878         3.5 hours at 2 million entries with a cold cache) on certain types
22879         of file systems, including ext3 and ext4, but not tmpfs.
22880         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
22881         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
22882         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
22883         (fs_handles_readdir_ordered_dirents_efficiently): New function.
22884         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
22885         (fts_build): Set the stat.st_ino member from D_INO.
22886         If it is likely to be useful, sort dirent entries on inode number.
22887
22888         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
22889         and the struct statfs.f_type member.
22890         * modules/fts (Depends-on): Add d-ino.
22891
22892 2008-09-26  Bruno Haible  <bruno@clisp.org>
22893
22894         * modules/sigpipe-die (Depends-on): Add sigpipe.
22895
22896         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
22897         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
22898         and GNULIB_STDIO_H_SIGPIPE are set.
22899         * lib/stdio-write.c: New file.
22900         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
22901         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22902         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22903         REPLACE_STDIO_WRITE_FUNCS.
22904         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
22905         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22906         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22907         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
22908         * modules/stdio (Files): Add lib/stdio-write.c.
22909         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
22910         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
22911         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
22912         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
22913         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
22914         REPLACE_FPRINTF_POSIX.
22915         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
22916         REPLACE_PRINTF_POSIX.
22917         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
22918         REPLACE_VFPRINTF_POSIX.
22919         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
22920         REPLACE_VPRINTF_POSIX.
22921         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
22922         SIGPIPE issue.
22923         * doc/posix-functions/fputc.texi: Likewise.
22924         * doc/posix-functions/fputs.texi: Likewise.
22925         * doc/posix-functions/fwrite.texi: Likewise.
22926         * doc/posix-functions/printf.texi: Likewise.
22927         * doc/posix-functions/putc.texi: Likewise.
22928         * doc/posix-functions/putchar.texi: Likewise.
22929         * doc/posix-functions/puts.texi: Likewise.
22930         * doc/posix-functions/vfprintf.texi: Likewise.
22931         * doc/posix-functions/vprintf.texi: Likewise.
22932
22933         * modules/safe-write (Depends-on): Add write.
22934
22935         * modules/sigpipe-tests: New file.
22936         * tests/test-sigpipe.c: New file.
22937         * tests/test-sigpipe.sh: New file.
22938
22939         * modules/write: New file.
22940         * lib/unistd.in.h: Include <sys/types.h>.
22941         (write): New declaration.
22942         * lib/write.c: New file.
22943         * m4/write.m4: New file.
22944         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
22945         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
22946         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
22947         GNULIB_WRITE, REPLACE_WRITE.
22948         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
22949         and the SIGPIPE issue.
22950
22951         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
22952         (raise): New declaration.
22953         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
22954         (ext_signal): New function.
22955         (rpl_raise): New function.
22956         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
22957         GNULIB_SIGNAL_H_SIGPIPE.
22958         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
22959         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
22960
22961         * modules/sigpipe: New file.
22962         * m4/sigpipe.m4: New file.
22963
22964 2008-09-25  Derek Price  <derek@ximbiot.com>
22965             Bruno Haible  <bruno@clisp.org>
22966
22967         * gnulib-tool (func_import): Report all license incompatibilities, not
22968         just the first one.
22969
22970 2008-09-25  Bruno Haible  <bruno@clisp.org>
22971
22972         * gnulib-tool (func_import): When computing the edits, consider not
22973         only the Makefile.ams that exist but also those that will be generated.
22974
22975 2008-09-25  Simon Josefsson  <simon@josefsson.org>
22976
22977         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
22978         fixes gnulib-tool --test warning about duplicate dependency.
22979
22980 2008-09-25  Bruno Haible  <bruno@clisp.org>
22981
22982         * gnulib-tool: Don't ask the user to perform edits in the generated
22983         Makefile.ams.
22984         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
22985         apply to the Makefile.am being generated.
22986         (func_emit_tests_Makefile_am): Execute edits that apply to the
22987         Makefile.am being generated.
22988         (func_import): Setup list of Makefile.am edits before emitting the
22989         Makefile.ams, not at the end.
22990         (func_create_testdir): Update.
22991         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
22992
22993 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22994
22995         * gnulib-tool (func_import): Store the --tests-base option in the
22996         comment in gnulib-cache.m4.
22997
22998 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
22999
23000         * NEWS: Document increased portability that sys_select now provides.
23001
23002         * lib/sys_select.in.h: Install select wrapper.
23003         * lib/sys_socket.in.h: Use more descriptive name when there is no
23004         select wrapper.
23005         * lib/winsock-select.c: New.
23006         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
23007         Require gl_HEADER_SYS_SOCKET.
23008         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
23009         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
23010         * tests/test-sys_select.c: Add functional tests.
23011
23012 2008-09-24  Eric Blake  <ebb9@byu.net>
23013
23014         open, fopen: close fd leak in last patch
23015         * lib/open.c (rpl_open): Close fd before returning error.
23016         * lib/fopen.c (rpl_fopen): Close fd before returning error.
23017         * doc/posix-functions/open.texi (open): Document that Irix also
23018         has the bug.
23019         * doc/posix-functions/fopen.texi (fopen): Likewise.
23020         Reported by Paolo Bonzini.
23021
23022 2008-09-24  Bruno Haible  <bruno@clisp.org>
23023
23024         Ensure that a filename ending in a slash cannot be used to access a
23025         non-directory.
23026         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
23027         to check whether it's really a directory.
23028         * lib/fopen.c: Include fcntl.h, unistd.h.
23029         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
23030         and fdopen().
23031         * modules/fopen (Depends-on): Add unistd.
23032         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
23033         * tests/test-fopen.c (main): Likewise.
23034         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
23035         * doc/posix-functions/fopen.texi: Likewise.
23036         Reported by Eric Blake.
23037
23038 2008-09-23  Eric Blake  <ebb9@byu.net>
23039
23040         c-stack: avoid compiler optimizations when provoking overflow
23041         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
23042         recursion harder to optimize, to ensure a stack overflow occurs.
23043         * tests/test-c-stack.c (recurse): Likewise.
23044         Borrowed from libsigsegv.
23045
23046         c-stack: work around Irix sigaltstack bug
23047         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
23048         whether sigaltstack uses wrong end of stack_t (copied in part from
23049         libsigsegv).
23050         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
23051         Irix bug, without requiring an over-allocation.
23052         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
23053         bug.
23054
23055         fopen: document mingw bug on directories
23056         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
23057         not allowing a stream visiting a directory, even though reading
23058         from such a stream is not portable.
23059
23060 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
23061
23062         * lib/poll.c: Rewrite.
23063         * modules/poll: Depend on alloca.
23064
23065 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
23066
23067         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
23068         instead define prototypes for a full set of wrappers.  Ensure
23069         that Cygwin does not use the compatibility code, which is only
23070         for MinGW.
23071         * lib/winsock.c: New.
23072         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
23073         * modules/sys_socket: Add lib/winsock.c.
23074
23075         * modules/poll-tests: Add errno and perror.
23076         * tests/test-poll.c: Use ioctl, not ioctlsocket.
23077
23078 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
23079
23080         * tests/test-poll.c: Downgrade minimum needed Winsock version.
23081
23082 2008-09-23  Bruno Haible  <bruno@clisp.org>
23083
23084         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
23085         * doc/glibc-functions/*: Likewise.
23086
23087 2008-09-23  Simon Josefsson  <simon@josefsson.org>
23088
23089         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
23090         success.
23091
23092 2008-09-22  Eric Blake  <ebb9@byu.net>
23093             Bruno Haible  <bruno@clisp.org>
23094
23095         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
23096         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
23097         supply %A but mishandle pseudo-NaN.
23098         Reported by Simon Josefsson.
23099
23100 2008-09-21  Bruno Haible  <bruno@clisp.org>
23101
23102         * tests/test-lock.c (main): Tweak skip message.
23103         * tests/test-tls.c (main): Likewise.
23104
23105 2008-09-21  Bruno Haible  <bruno@clisp.org>
23106
23107         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
23108         whether 'struct sigaction' has sa_sigaction here...
23109         (gl_PREREQ_SIG_HANDLER_H): ... not here.
23110         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
23111
23112 2008-09-21  Bruno Haible  <bruno@clisp.org>
23113
23114         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
23115         section.
23116         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
23117         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
23118         the new section.
23119         (Support for obsolete systems lacking POSIX:2001): New section.
23120         (String handling <string.h>): Move strdup to the new section.
23121         Suggested by Simon Josefsson and Paolo Bonzini.
23122
23123 2008-09-21  Bruno Haible  <bruno@clisp.org>
23124
23125         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
23126         exponents in %e and %g results on 'long double'. Needed for mingw's
23127         improved *printf functions.
23128         * tests/test-vasprintf-posix.c (test_function): Likewise.
23129         * tests/test-snprintf-posix.h (test_function): Likewise.
23130         * tests/test-sprintf-posix.h (test_function): Likewise.
23131         Reported by Eric Blake.
23132
23133 2008-09-21  Bruno Haible  <bruno@clisp.org>
23134
23135         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
23136         * tests/test-sprintf-posix.h (test_function): Likewise.
23137
23138 2008-09-21  Bruno Haible  <bruno@clisp.org>
23139
23140         * modules/getpass (Depends-on): Add strdup-posix.
23141
23142         New module 'strdup-posix'.
23143         * modules/strdup-posix: New file.
23144         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
23145         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
23146         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
23147         REPLACE_STRDUP.
23148         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
23149         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
23150         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
23151         strdup-posix.
23152
23153         * modules/strdup (Depends-on): Remove malloc-posix.
23154
23155 2008-09-20  Bruno Haible  <bruno@clisp.org>
23156
23157         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
23158         Wildenhues.
23159
23160 2008-09-20  Bruno Haible  <bruno@clisp.org>
23161
23162         Ensure that wint_t gets defined on IRIX 5.3.
23163         * lib/wchar.in.h (wint_t): Define if not defined by the system.
23164         * lib/wctype.in.h (wint_t): Likewise.
23165         (__wctype_wint_t): Remove type.
23166         (isw*): Use wint_t instead of __wctype_wint_t.
23167         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
23168         * modules/wchar (Files): Add m4/wint_t.m4.
23169         (Makefile.am): Substitute HAVE_WINT_T.
23170         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
23171         * tests/test-wctype.c: Check that wint_t is defined.
23172         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
23173         * doc/posix-headers/wctype.texi: Likewise.
23174         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
23175
23176 2008-09-18  Bruno Haible  <bruno@clisp.org>
23177
23178         * gnulib-tool (func_exit): Update comment.
23179
23180 2008-09-18  Simon Josefsson  <simon@josefsson.org>
23181
23182         * modules/getaddrinfo (Depends-on): Remove strdup, this module
23183         assumes strdup exists and does not depend on strdup to return
23184         ENOMEM on out of memory conditions.
23185
23186 2008-09-18  Bruno Haible  <bruno@clisp.org>
23187
23188         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
23189         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
23190         digits for the exponent.
23191
23192 2008-09-18  Jim Meyering  <meyering@redhat.com>
23193             Bruno Haible  <bruno@clisp.org>
23194
23195         * lib/vasnprintf.c (decimal_point_char): Define also if
23196         NEED_PRINTF_INFINITE_LONG_DOUBLE.
23197
23198 2008-09-16  Bruno Haible  <bruno@clisp.org>
23199         and Eric Blake  <ebb9@byu.net>
23200
23201         vasnprintf: support Irix 5.3
23202         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
23203         that mishandle long double infinity.
23204         Reported by Tom G. Christensen.
23205
23206 2008-09-16  Bruno Haible  <bruno@clisp.org>
23207
23208         * doc/glibc-functions/scandir.texi: Mention the function is missing on
23209         Solaris 9.
23210         * doc/glibc-functions/alphasort.texi: Likewise.
23211         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
23212
23213 2008-09-16  Jim Meyering  <meyering@redhat.com>
23214
23215         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
23216         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
23217         a umask modification leak out of a subshell.  Otherwise, the
23218         opensolaris /bin/sh would be accepted and thus cause unwarranted
23219         failures in the coreutils test suite.
23220
23221 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
23222
23223         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
23224         to succeed.
23225
23226 2008-09-16  Jim Meyering  <meyering@redhat.com>
23227
23228         avoid spurious test failure when library is built without ACL support
23229         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
23230         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
23231         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
23232         * tests/test-copy-acl.sh: Likewise.
23233
23234 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23235
23236         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
23237         based on character occurrence counts.
23238
23239 2008-09-15  Eric Blake  <ebb9@byu.net>
23240
23241         tests: avoid some compiler warnings
23242         * tests/test-memchr.c (main): Pass NULL indirectly.
23243         * tests/test-closein.c (main): Avoid unused variable.
23244
23245 2008-09-15  Bruno Haible  <bruno@clisp.org>
23246
23247         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
23248         are missing on OpenBSD 4.0 individually.
23249         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
23250
23251 2008-09-15  Bruno Haible  <bruno@clisp.org>
23252
23253         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
23254         * doc/posix-functions/strerror.texi: Mention also Cygwin.
23255         * doc/posix-functions/perror.texi: Likewise.
23256         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
23257         is missing.
23258         Reported by Eric Blake.
23259
23260         * lib/errno.in.h: Use replacement values >= 2000.
23261         Reported by Eric Blake.
23262
23263 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23264
23265         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
23266         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
23267         limit.
23268         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
23269         compareseq was aborted.
23270
23271 2008-09-14  Bruno Haible  <bruno@clisp.org>
23272
23273         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
23274         yvec_edit_count.
23275         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
23276         (fstrcmp_bounded): Simplify result computation accordingly.
23277
23278 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23279
23280         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
23281         (fstrcmp): Define in terms of fstrcmp_bounded.
23282         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
23283         lower_bound argument.
23284         Return quickly if the result is certainly < lower_bound.
23285         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
23286
23287 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23288
23289         * lib/diffseq.h (EARLY_ABORT): New macro.
23290         (compareseq): Change return type to bool. Return true when EARLY_ABORT
23291         evaluates to true.
23292
23293 2008-09-14  Bruno Haible  <bruno@clisp.org>
23294
23295         * modules/perror-tests: New file.
23296         * tests/test-perror.sh: New file.
23297         * tests/test-perror.c: New file.
23298
23299         New module 'perror'.
23300         * lib/stdio.in.h (perror): New declaration.
23301         * lib/perror.c: New file.
23302         * m4/perror.m4: New file.
23303         * modules/perror: New file.
23304         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
23305         * doc/posix-functions/perror.texi: Mention the perror module.
23306         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
23307         REPLACE_PERROR.
23308         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
23309         REPLACE_PERROR.
23310
23311 2008-09-14  Bruno Haible  <bruno@clisp.org>
23312
23313         * modules/stdio (Makefile.am): Reorder to match the order in
23314         lib/stdio.in.h.
23315         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
23316
23317 2008-09-13  Bruno Haible  <bruno@clisp.org>
23318
23319         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
23320
23321 2008-09-13  Bruno Haible  <bruno@clisp.org>
23322
23323         Extend strerror to cover the added errno values.
23324         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
23325         (rpl_strerror): Provide error messages for the added errno values and
23326         for the WSA* values.
23327         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
23328         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
23329         strerror.
23330         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
23331         * modules/strerror (Depends-on): Add errno.
23332         * doc/posix-functions/strerror.texi: Document the change.
23333         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
23334         and EOVERFLOW.
23335
23336 2008-09-13  Bruno Haible  <bruno@clisp.org>
23337
23338         * modules/EOVERFLOW: Remove file.
23339         * m4/eoverflow.m4: Remove file.
23340         * modules/EOVERFLOW-tests: Remove file.
23341         * tests/test-EOVERFLOW.c: Remove file.
23342         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
23343         * modules/ftell (Depends-on): Likewise.
23344         * modules/getdelim (Depends-on): Likewise.
23345         * modules/getugroups (Depends-on): Likewise.
23346         * modules/poll (Depends-on): Likewise.
23347         * modules/snprintf (Depends-on): Likewise.
23348         * modules/sprintf-posix (Depends-on): Likewise.
23349         * modules/vasnprintf (Depends-on): Likewise.
23350         * modules/vasprintf (Depends-on): Likewise.
23351         * modules/vfprintf-posix (Depends-on): Likewise.
23352         * modules/vsnprintf (Depends-on): Likewise.
23353         * modules/vsprintf-posix (Depends-on): Likewise.
23354         * modules/xvasprintf (Depends-on): Likewise.
23355         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
23356         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
23357         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
23358         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
23359         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
23360         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
23361         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
23362         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
23363         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
23364         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
23365         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
23366         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
23367         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
23368         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
23369         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
23370         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
23371         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
23372         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
23373         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
23374         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
23375         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
23376         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
23377         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
23378         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
23379         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
23380         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
23381         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
23382         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
23383         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
23384         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
23385         * MODULES.html.sh: Remove EOVERFLOW.
23386         * NEWS: Mention the change.
23387
23388 2008-09-13  Bruno Haible  <bruno@clisp.org>
23389
23390         * modules/errno-tests: New file.
23391         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
23392
23393         * lib/errno.in.h: New file.
23394         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
23395         * modules/errno: New file.
23396         * doc/posix-headers/errno.texi: Update documentation.
23397         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
23398
23399 2008-09-13  Bruno Haible  <bruno@clisp.org>
23400
23401         * tests/test-poll.c: Use #if for native Windows, rather than testing
23402         __MSVCRT__.
23403
23404 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23405             Bruno Haible  <bruno@clisp.org>
23406
23407         * lib/glob.c: Don't include <pwd.h> on native Windows.
23408         (WINDOWS32): New macro.
23409         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
23410
23411 2008-09-13  Bruno Haible  <bruno@clisp.org>
23412
23413         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
23414         (ETIMEDOUT): Remove macro.
23415         (glthread_cond_timedwait_multithreaded): New declaration.
23416         (glthread_cond_timedwait): Use it.
23417         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
23418         (glthread_cond_timedwait_multithreaded): New function.
23419
23420 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
23421
23422         * modules/poll-tests: Do not check for io.h.
23423         * tests/test-poll.c: Check for __MSVCRT__ instead.
23424
23425 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
23426
23427         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
23428         * modules/poll-tests: Add inet_pton, stdbool, sockets.
23429         * tests/test-poll.c: Use them.  Use _pipe on Windows.
23430
23431 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
23432
23433         * modules/poll-tests: New.
23434         * tests/test-poll.c: New.
23435
23436 2008-09-12  Eric Blake  <ebb9@byu.net>
23437
23438         frexp: test for NetBSD failure on -0.0
23439         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
23440         not all, bugs from NetBSD 3.0 have been fixed.
23441         * doc/posix-functions/frexp.texi (frexp): Document bug.
23442         Reported by Thomas Klausner.
23443
23444         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
23445         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
23446         literal -0.0.
23447         Reported by Jonathan C. Patschke <jp@centtech.com>.
23448
23449 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23450
23451         * lib/glthread/cond.h: Use dummy implementation also if
23452         USE_WIN32_THREADS.
23453
23454 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23455
23456         * modules/fnmatch-posix (License): Change to LGPLv2+.
23457         * modules/fnmatch-gnu (License): Likewise.
23458
23459 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23460
23461         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
23462
23463 2008-09-11  Jim Meyering  <meyering@redhat.com>
23464
23465         * users.txt: Add gtk-vnc.
23466
23467 2008-09-08  Simon Josefsson  <simon@josefsson.org>
23468
23469         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
23470         rotate amounts.
23471
23472         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
23473         required for 16-bit and 8-bit rotates.
23474         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
23475         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
23476         UINT8_MAX instead of hard-coded constants.
23477         Suggested by Paul Eggert.
23478
23479 2008-09-07  Bruno Haible  <bruno@clisp.org>
23480
23481         * tests/test-striconveh.c (main): Check behaviour when converting from
23482         UTF-7.
23483
23484         Make striconveh work better with stateful encodings.
23485         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
23486         that iconv does not increment the inptr when returning -1/EINVAL.
23487
23488 2008-09-07  Bruno Haible  <bruno@clisp.org>
23489
23490         * build-aux/config.rpath: Update according to libtool-2.2.6.
23491         * build-aux/config.libpath: Likewise.
23492
23493 2008-09-06  Bruno Haible  <bruno@clisp.org>
23494
23495         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
23496         * lib/freadptr.c (freadptr): Likewise.
23497         * lib/freadseek.c (freadptrinc): Likewise.
23498         Reported by Simon Josefsson.
23499
23500 2008-09-06  Bruno Haible  <bruno@clisp.org>
23501
23502         * modules/freadptr (License): Change to LGPLv2+.
23503         * modules/freadseek (License): Likewise.
23504         Suggested by Eric Blake.
23505
23506         * modules/memchr2 (License): Change to LGPLv2+.
23507         Approved by Eric Blake.
23508
23509 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23510             Bruno Haible  <bruno@clisp.org>
23511
23512         Make gnulib-tool work with native 'sed' on AIX.
23513         * gnulib-tool (sed_noop): New variable.
23514         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
23515         func_add_or_update, func_create_testdir): Use it to initialize sed
23516         script variables.
23517         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23518
23519 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
23520             Bruno Haible  <bruno@clisp.org>
23521
23522         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
23523         also works after #include directives.
23524
23525 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
23526
23527         getdate.y: reject an out-of-range timezone value
23528         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
23529         the range [-24...+24].  When specified with only one or two digits,
23530         * tests/test-getdate.c: Tests for the fix.
23531         * doc/getdate.texi: Document this change.
23532
23533 2008-09-03  Bruno Haible  <bruno@clisp.org>
23534
23535         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
23536
23537 2008-09-02  Simon Josefsson  <simon@josefsson.org>
23538
23539         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
23540         <bruce.korb@gmail.com> with ideas from Ben Pfaff
23541         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
23542         Blake <ebb9@byu.net>.
23543
23544         * tests/test-bitrotate.c: Add more test vectors.
23545
23546 2008-09-02  Eric Blake  <ebb9@byu.net>
23547
23548         vasnprintf-posix: handle large precision via %.*d
23549         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
23550         when handling it ourselves.
23551         * tests/test-vasnprintf-posix.c (test_function): Add test.
23552         * tests/test-snprintf-posix.h (test_function): Likewise.
23553         * tests/test-sprintf-posix.h (test_function): Likewise.
23554         * tests/test-vasprintf-posix.c (test_function): Likewise.
23555         Reported by Alain Guibert.
23556
23557 2008-09-01  Eric Blake  <ebb9@byu.net>
23558
23559         c-stack: make configure-time check more robust
23560         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
23561         successful sigaction call.
23562         Reported by Tom G. Christensen.
23563
23564 2008-09-01  Bruno Haible  <bruno@clisp.org>
23565
23566         New module 'findprog-lgpl'.
23567         * modules/findprog-lgpl: New file.
23568         * lib/findprog-lgpl.c: New file.
23569         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
23570         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
23571         to decide whether to use strdup or xstrdup, concatenated_filename or
23572         xconcatenated_filename.
23573
23574 2008-09-01  Bruno Haible  <bruno@clisp.org>
23575
23576         Split module 'concat-filename' into 'concat-filename' (LGPL) and
23577         'xconcat-filename' (GPL).
23578         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
23579         (License): Change to LGPLv2+.
23580         * modules/xconcat-filename: New file.
23581         * lib/concat-filename.h (concatenated_filename): Change specification.
23582         (xconcatenated_filename): New declaration.
23583         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
23584         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
23585         memory situations.
23586         * lib/xconcat-filename.c: New file.
23587         * NEWS: Mention the change.
23588         * lib/findprog.c: Include concat-filename.h, not filename.h.
23589         (find_in_path): Use xconcatenated_filename instead of
23590         concatenated_filename.
23591         * lib/javacomp.c: Include concat-filename.h, not filename.h.
23592         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
23593         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
23594         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
23595         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
23596         instead of concatenated_filename.
23597         * lib/javaexec.c: Include concat-filename.h, not filename.h.
23598         (execute_java_class): Use xconcatenated_filename instead of
23599         concatenated_filename.
23600         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
23601         * modules/javacomp (Depends-on): Likewise.
23602         * modules/javaexec (Depends-on): Likewise.
23603
23604 2008-09-01  Bruno Haible  <bruno@clisp.org>
23605
23606         Split module 'filename' into 'filename' and 'concat-filename'.
23607         * modules/filename: Keep only lib/filename.h.
23608         (License): Change to LGPLv2+.
23609         * modules/concat-filename: New file, extracted from modules/filename.
23610         * lib/filename.h (concatenated_filename): Remove declaration.
23611         * lib/concat-filename.h: New file, extracted from lib/filename.h.
23612         * lib/concat-filename.c: Include concat-filename.h.
23613         * NEWS: Mention the change.
23614
23615 2008-09-01  Simon Josefsson  <simon@josefsson.org>
23616
23617         * lib/bitrotate.h (rotl8, rotr8): Add.
23618
23619         * modules/bitrotate (configure.ac): Need
23620         AC_REQUIRE([AC_C_INLINE]).
23621         (Description): Mention stdint.h.  Reported by Bruno Haible
23622         <bruno@clisp.org>.
23623
23624         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
23625         Paolo Bonzini <bonzini@gnu.org>.
23626
23627 2008-08-31  Bruno Haible  <bruno@clisp.org>
23628
23629         Assume Solaris specific bi-arch conventions on Solaris systems.
23630         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
23631         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
23632         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
23633         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
23634         like acl_libdirstem.
23635         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
23636         acl_libdirstem.
23637         * NEWS: Mention the change.
23638         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
23639
23640 2008-08-31  Jim Meyering  <meyering@redhat.com>
23641
23642         * lib/strftime.h: Add comments describing the two added arguments.
23643
23644         remove duplicate #include directives
23645         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
23646         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
23647
23648 2008-08-31  Bruno Haible  <bruno@clisp.org>
23649
23650         New module 'sigpipe-die'.
23651         * modules/sigpipe-die: New file.
23652         * lib/sigpipe-die.h: New file.
23653         * lib/sigpipe-die.c: New file.
23654         * MODULES.html.sh (Signal handling): Add sigpipe-die.
23655
23656 2008-08-31  Bruno Haible  <bruno@clisp.org>
23657
23658         Don't override previously installed signal handlers.
23659         * lib/fatal-signal.c (saved_sigactions): New variable.
23660         (uninstall_handlers): Reset the signal to the saved handler, not
23661         to SIG_DFL (except when ignored).
23662         (install_handlers): Save the previous handlers.
23663
23664 2008-08-30  Bruno Haible  <bruno@clisp.org>
23665
23666         * gnulib-tool (func_reset_sigpipe): New function.
23667         (func_get_automake_snippet, func_modules_transitive_closure,
23668         func_import): Invoke it before a join command that reads from stdin,
23669         to avoid "echo: write error: Broken pipe" error messages on stderr.
23670         Reported by Sam Steingold <sds@gnu.org>.
23671
23672 2008-08-30  Bruno Haible  <bruno@clisp.org>
23673
23674         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
23675         Code copied from m4/open.m4.
23676         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
23677         access and the filename ends in a slash. Code copied from lib/open.c.
23678         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
23679         * tests/test-fopen.c (main): Check against bug with trailing slash.
23680
23681 2008-08-29  Bruno Haible  <bruno@clisp.org>
23682
23683         Avoid some "gcc -pedantic" warnings.
23684         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
23685         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
23686         * lib/dirent.in.h: Likewise.
23687         * lib/fcntl.in.h: Likewise.
23688         * lib/float.in.h: Likewise.
23689         * lib/iconv.in.h: Likewise.
23690         * lib/inttypes.in.h: Likewise.
23691         * lib/locale.in.h: Likewise.
23692         * lib/math.in.h: Likewise.
23693         * lib/netinet_in.in.h: Likewise.
23694         * lib/search.in.h: Likewise.
23695         * lib/signal.in.h: Likewise.
23696         * lib/stdarg.in.h: Likewise.
23697         * lib/stdint.in.h: Likewise.
23698         * lib/stdio.in.h: Likewise.
23699         * lib/stdlib.in.h: Likewise.
23700         * lib/string.in.h: Likewise.
23701         * lib/strings.in.h: Likewise.
23702         * lib/sys_select.in.h: Likewise.
23703         * lib/sys_socket.in.h: Likewise.
23704         * lib/sys_stat.in.h: Likewise.
23705         * lib/sys_time.in.h: Likewise.
23706         * lib/sysexits.in.h: Likewise.
23707         * lib/time.in.h: Likewise.
23708         * lib/unistd.in.h: Likewise.
23709         * lib/wchar.in.h: Likewise.
23710         * lib/wctype.in.h: Likewise.
23711         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
23712         * modules/fchdir (Makefile.am): Likewise.
23713         * modules/fcntl (Makefile.am): Likewise.
23714         * modules/float (Makefile.am): Likewise.
23715         * modules/iconv_open (Makefile.am): Likewise.
23716         * modules/inttypes (Makefile.am): Likewise.
23717         * modules/locale (Makefile.am): Likewise.
23718         * modules/math (Makefile.am): Likewise.
23719         * modules/netinet_in (Makefile.am): Likewise.
23720         * modules/search (Makefile.am): Likewise.
23721         * modules/signal (Makefile.am): Likewise.
23722         * modules/stdarg (Makefile.am): Likewise.
23723         * modules/stdint (Makefile.am): Likewise.
23724         * modules/stdio (Makefile.am): Likewise.
23725         * modules/stdlib (Makefile.am): Likewise.
23726         * modules/string (Makefile.am): Likewise.
23727         * modules/strings (Makefile.am): Likewise.
23728         * modules/sys_select (Makefile.am): Likewise.
23729         * modules/sys_socket (Makefile.am): Likewise.
23730         * modules/sys_stat (Makefile.am): Likewise.
23731         * modules/sys_time (Makefile.am): Likewise.
23732         * modules/sysexits (Makefile.am): Likewise.
23733         * modules/time (Makefile.am): Likewise.
23734         * modules/unistd (Makefile.am): Likewise.
23735         * modules/wchar (Makefile.am): Likewise.
23736         * modules/wctype (Makefile.am): Likewise.
23737         Reported by Reuben Thomas <rrt@sc3d.org>.
23738
23739 2008-08-29  Bruno Haible  <bruno@clisp.org>
23740
23741         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
23742         any more.
23743
23744 2008-08-29  Simon Josefsson  <simon@josefsson.org>
23745
23746         * MODULES.html.sh (Misc): Add bitrotate.
23747
23748         * modules/bitrotate: New file.
23749
23750         * lib/bitrotate.h: New file.
23751
23752         * modules/bitrotate-tests: New file.
23753
23754         * tests/test-bitrotate.c: New file.
23755
23756         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
23757         on the bitrotate module.
23758
23759         * lib/arctwo.c: Use new bitrotate module.
23760
23761 2008-08-29  Jim Meyering  <meyering@redhat.com>
23762
23763         bootstrap: merge changes from coreutils
23764         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
23765         of copied files.  Remove a kludge, now that this is fixed.
23766         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
23767         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
23768         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
23769
23770 2008-08-29  Bruno Haible  <bruno@clisp.org>
23771
23772         * MODULES.html.sh: Remove --cvs-urls option.
23773
23774 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
23775
23776         maint.mk: adjust to file name change
23777         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
23778
23779 2008-08-28  Jim Meyering  <meyering@redhat.com>
23780
23781         * modules/getndelim2 (License): Relicense to LGPLv2+.
23782         Approved by Richard Stallman for the version of 1995, and by
23783         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
23784
23785 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
23786
23787         * lib/getdelim.c (flockfile, funlockfile): Make all of them
23788         dummy if one is not available.  Do not touch them if
23789         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
23790         (getc_maybe_unlocked): New.
23791         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
23792
23793 2008-08-26  Eric Blake  <ebb9@byu.net>
23794
23795         doc/INSTALL: resync from autoconf
23796         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
23797         (INSTALL_PRELUDE): Delete; this is done more efficiently by
23798         moving...
23799         * install.texi [!autoconf]: ...here.  Resync from autoconf.
23800         * INSTALL: Regenerate.
23801         * INSTALL.ISO: New file.
23802         * INSTALL.UTF-8: Likewise.
23803
23804 2008-08-26  Jim Meyering  <meyering@redhat.com>
23805
23806         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
23807         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
23808         these definitions conditional, so that they may be overridden, too.
23809
23810 2008-08-26  Bruno Haible  <bruno@clisp.org>
23811
23812         Generate INSTALL file variants with prettier quotes.
23813         * doc/Makefile (INSTALL_PRELUDE): New macro.
23814         (INSTALL): Use it.
23815         (INSTALL.ISO, INSTALL.UTF-8): New rules.
23816
23817 2008-08-26  Bruno Haible  <bruno@clisp.org>
23818
23819         Run makeinfo in an English locale.
23820         * doc/Makefile (MAKEINFO): New variable.
23821
23822 2008-08-26  Bruno Haible  <bruno@clisp.org>
23823
23824         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
23825         Suggested by Eric Blake.
23826
23827 2008-08-25  Bruno Haible  <bruno@clisp.org>
23828
23829         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
23830
23831 2008-08-25  Eric Blake  <ebb9@byu.net>
23832
23833         c-stack: test that stack overflow can be caught
23834         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
23835         that platform allows handling stack overflow; at least OS/2 EMX
23836         has sigaltstack, but crashes before transferring control to
23837         handler on stack overflow.
23838         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
23839         check for HAVE_STACK_OVERFLOW_HANDLING.
23840         Reported by Elbert Pol.
23841
23842 2008-08-25  Bruno Haible  <bruno@clisp.org>
23843
23844         * doc/posix-functions/strftime.texi: Fix description of strftime
23845         module.
23846
23847 2008-08-24  Bruno Haible  <bruno@clisp.org>
23848
23849         * tests/uniwidth/test-uc_width2.c: New file.
23850         * tests/uniwidth/test-uc_width2.sh: New file.
23851         * modules/uniwidth/width-tests (Files): Add the new files.
23852         (TESTS): Add uniwidth/test-uc_width2.sh.
23853         (TESTS_ENVIRONMENT): New variable.
23854         (check_PROGRAMS): Add test-uc_width2.
23855         (test_uc_width2_SOURCES): New variable.
23856
23857         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
23858         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
23859         not 0x00AB.
23860         Reported by Alexander V. Lukyanov <lav@netis.ru>.
23861
23862 2008-08-22  Eric Blake  <ebb9@byu.net>
23863
23864         test-lock, test-tls: mention why a test is skipped
23865         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
23866         skipped.
23867         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
23868
23869         count-one-bits: relax license
23870         * modules/count-one-bits (License): Relicense to LGPLv2+.
23871         Suggested by Ludovic Courtès, approved by Ben Pfaff.
23872
23873 2008-08-22  Andreas Schwab  <schwab@suse.de>
23874
23875         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
23876         Remove spurious space in assignment.
23877
23878 2008-08-21  Simon Josefsson  <simon@josefsson.org>
23879
23880         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
23881         Paul Eggert <eggert@CS.UCLA.EDU>.
23882
23883 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
23884
23885         * modules/gettext: Add m4/threadlib.m4.
23886
23887 2008-08-19  Eric Blake  <ebb9@byu.net>
23888
23889         test-c-stack: fix compilation failure on FreeBSD 5.0
23890         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
23891         headers before <sys/resource.h>.
23892         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
23893         the bug.
23894         Reported by Nelson H. F. Beebe.
23895
23896         strverscmp: migrate from "strverscmp.h" to <string.h>
23897         * modules/string (Makefile.am): Add new hooks.
23898         * modules/strverscmp (Files): Remove strverscmp.h.
23899         (Depends-on): Add string.
23900         (configure.ac): Add indicator.
23901         (Include): Mention new header.
23902         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
23903         defaults.
23904         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
23905         results.
23906         * lib/strverscmp.h: Delete.
23907         * lib/string.in.h (strverscmp): Provide declaration, when needed.
23908         * tests/test-strverscmp.c (includes): Adjust client.
23909         * lib/check-version.c (includes): Likewise.
23910         * NEWS: Document the change.
23911
23912         strverscmp: add unit test
23913         * modules/strverscmp-tests: New file.
23914         * tests/test-strverscmp.c: Likewise.
23915
23916 2008-08-19  Simon Josefsson  <simon@josefsson.org>
23917
23918         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
23919         regarding Windows crypto stuff, from Mono.
23920
23921 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
23922
23923         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
23924         if present, for intel RND.  Return error on failures.
23925
23926 2008-08-18  Ben Pfaff  <blp@gnu.org>
23927
23928         gitlog-to-changelog: give better diagnostic for failed pipe-open
23929         * build-aux/gitlog-to-changelog: Improve error message: suggest
23930         that the version of Git may be too old.
23931
23932 2008-08-18  Simon Josefsson  <simon@josefsson.org>
23933
23934         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
23935         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
23936
23937 2008-08-18  Bruno Haible  <bruno@clisp.org>
23938
23939         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
23940         pthread_in_use().
23941
23942 2008-08-18  Bruno Haible  <bruno@clisp.org>
23943
23944         * lib/glthread/threadlib.c: Include <pthread.h>.
23945
23946 2008-08-18  Bruno Haible  <bruno@clisp.org>
23947
23948         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
23949         glthread_recursive_lock_* macros.
23950         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
23951         Fix syntax error.
23952
23953 2008-08-18  Bruno Haible  <bruno@clisp.org>
23954
23955         * lib/glthread/thread.c: Avoid forcing a context switch right after
23956         thread creation.
23957
23958 2008-08-17  Bruno Haible  <bruno@clisp.org>
23959
23960         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
23961         * lib/glthread/thread.h: Provide Win32 specific implementation.
23962         * modules/thread (Files): Add lib/glthread/thread.c.
23963         (Depends-on): Add lock.
23964         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
23965
23966 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23967
23968         New module 'yield'.
23969         * modules/yield: New file.
23970         * lib/glthread/yield.h: New file.
23971         * m4/yield.m4: New file.
23972         * MODULES.html.sh (Multithreading): Add yield.
23973
23974 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23975
23976         New module 'thread'.
23977         * modules/thread: New file.
23978         * lib/glthread/thread.h: New file.
23979         * m4/thread.m4: New file.
23980         * MODULES.html.sh (Multithreading): Add thread.
23981
23982 2008-08-17  Bruno Haible  <bruno@clisp.org>
23983
23984         * lib/glthread/lock.h: Include <stdlib.h> always.
23985         * lib/glthread/tls.h: Likewise.
23986         * lib/glthread/cond.h: Likewise.
23987
23988 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
23989
23990         New module 'cond'.
23991         * modules/cond: New file.
23992         * lib/glthread/cond.h: New file.
23993         * lib/glthread/cond.c: New file.
23994         * m4/cond.m4: New file.
23995         * MODULES.html.sh (Multithreading): Add cond.
23996
23997 2008-08-16  Eric Blake  <ebb9@byu.net>
23998
23999         c-stack: fix regression on Irix 5.3 from 2008-06-21
24000         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
24001         sa_sigaction...
24002         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
24003         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
24004         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
24005         * modules/signal (Makefile.am): Use the value.
24006         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
24007         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
24008         * doc/posix-headers/signal.texi (signal.h): Document this
24009         portability issue.
24010         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
24011         Reported by Tom G. Christensen.
24012
24013 2008-08-17  Bruno Haible  <bruno@clisp.org>
24014
24015         New module 'threadlib'.
24016         * modules/threadlib: New file.
24017         * lib/glthread/threadlib.c: New file, extracted from
24018         lib/glthread/lock.c.
24019         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
24020         functions.
24021         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
24022         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
24023         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
24024         macros.
24025         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
24026         (gl_DISABLE_THREADS): Remove macro.
24027         * modules/lock (Files): Remove build-aux/config.rpath.
24028         (Depends-on): Remove havelib. Add threadlib.
24029         (configure.ac-early): Remove section.
24030         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
24031         * modules/tls (Depends-on): Remove lock. Add threadlib.
24032         (Link): New section, copied from threadlib.
24033         * MODULES.html.sh (Multithreading): Add threadlib.
24034
24035 2008-08-14  Bruno Haible  <bruno@clisp.org>
24036
24037         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
24038         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
24039         glthread_rwlock_unlock, glthread_rwlock_destroy,
24040         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
24041         glthread_recursive_lock_destroy): Define as macros always.
24042         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
24043         glthread_lock_lock.
24044         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
24045         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
24046         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
24047         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
24048         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
24049         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
24050         (glthread_recursive_lock_lock_func): Renamed from
24051         glthread_recursive_lock_lock.
24052         (glthread_recursive_lock_unlock_func): Renamed from
24053         glthread_recursive_lock_unlock.
24054         (glthread_recursive_lock_destroy_func): Renamed from
24055         glthread_recursive_lock_destroy.
24056
24057 2008-08-14  Bruno Haible  <bruno@clisp.org>
24058
24059         * lib/glthread/lock.h: Renamed from lib/lock.h.
24060         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
24061         * lib/glthread/tls.h: Renamed from lib/tls.h.
24062         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
24063         * lib/fstrcmp.c: Update includes.
24064         * lib/strsignal.c: Update includes.
24065         * modules/lock (Files, Makefile.am): Update.
24066         (Include): Change to "glthread/lock.h".
24067         * modules/tls (Files, Makefile.am): Update.
24068         (Include): Change to "glthread/tls.h".
24069         * tests/test-lock.c: Update includes.
24070         * tests/test-tls.c: Update includes.
24071         * NEWS: Mention the renamed header files.
24072
24073 2008-08-11  Jim Meyering  <meyering@redhat.com>
24074
24075         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
24076
24077 2008-08-11  Eric Blake  <ebb9@byu.net>
24078
24079         test-c-stack: avoid C99-ism
24080         * tests/test-c-stack.c (main): Fix whitespace, move declaration
24081         before statement.
24082         Reported by Alain Guibert.
24083
24084 2008-08-10  Jim Meyering  <meyering@redhat.com>
24085
24086         ensure that return value of uinttostr et al are not ignored
24087         * lib/inttostr.h (__GNUC_PREREQ): Define.
24088         (__attribute_warn_unused_result__): Define.
24089         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
24090
24091 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
24092
24093         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
24094         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
24095
24096 2008-08-07  Jim Meyering  <meyering@redhat.com>
24097
24098         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
24099
24100         * modules/mkstemp (License): Relicense under LGPLv2+.
24101         * modules/tempname (License): Likewise.
24102
24103 2008-08-06  Bruno Haible  <bruno@clisp.org>
24104
24105         * lib/poll.c (poll): Further micro-optimization.
24106
24107 2008-08-06  Jim Meyering  <meyering@redhat.com>
24108
24109         inet_pton.c: use locale-independent tolower
24110         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
24111         (inet_pton6): Use c_tolower rather than tolower.
24112         * modules/inet_pton (Depends-on): Add c-ctype.
24113
24114 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
24115
24116         * lib/poll.c (poll): Avoid division when timeout is 0, cache
24117         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
24118
24119 2008-08-06  Jim Meyering  <meyering@redhat.com>
24120
24121         * modules/inet_pton (License): Relicense under LGPLv2+.
24122
24123 2008-08-03  Bruno Haible  <bruno@clisp.org>
24124
24125         Additional non-aborting API for lock and tls.
24126         * lib/lock.h: Include <errno.h>.
24127         (glthread_lock_init): New macro/function.
24128         (gl_lock_init): Define as wrapper around glthread_lock_init.
24129         (glthread_lock_lock): New macro/function.
24130         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
24131         (glthread_lock_unlock): New macro/function.
24132         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
24133         (glthread_lock_destroy): New macro/function.
24134         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
24135         (glthread_rwlock_init): New macro/function.
24136         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
24137         (glthread_rwlock_rdlock): New macro/function.
24138         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
24139         (glthread_rwlock_wrlock): New macro/function.
24140         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
24141         (glthread_rwlock_unlock): New macro/function.
24142         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
24143         (glthread_rwlock_destroy): New macro/function.
24144         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
24145         (glthread_recursive_lock_init): New macro/function.
24146         (gl_recursive_lock_init): Define as wrapper around
24147         glthread_recursive_lock_init.
24148         (glthread_recursive_lock_lock): New macro/function.
24149         (gl_recursive_lock_lock): Define as wrapper around
24150         glthread_recursive_lock_lock.
24151         (glthread_recursive_lock_unlock): New macro/function.
24152         (gl_recursive_lock_unlock): Define as wrapper around
24153         glthread_recursive_lock_unlock.
24154         (glthread_recursive_lock_destroy): New macro/function.
24155         (gl_recursive_lock_destroy): Define as wrapper around
24156         glthread_recursive_lock_destroy.
24157         (glthread_once): New macro/function.
24158         (gl_once): Define as wrapper around glthread_once.
24159         Update function declarations.
24160         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
24161         glthread_rwlock_init. Return error code.
24162         (glthread_rwlock_rdlock_multithreaded): Renamed from
24163         glthread_rwlock_rdlock. Return error code.
24164         (glthread_rwlock_wrlock_multithreaded): Renamed from
24165         glthread_rwlock_wrlock. Return error code.
24166         (glthread_rwlock_unlock_multithreaded): Renamed from
24167         glthread_rwlock_unlock. Return error code.
24168         (glthread_rwlock_destroy_multithreaded): Renamed from
24169         glthread_rwlock_destroy. Return error code.
24170         (glthread_recursive_lock_init_multithreaded): Renamed from
24171         glthread_recursive_lock_init. Return error code.
24172         (glthread_recursive_lock_lock_multithreaded): Renamed from
24173         glthread_recursive_lock_lock. Return error code.
24174         (glthread_recursive_lock_unlock_multithreaded): Renamed from
24175         glthread_recursive_lock_unlock. Return error code.
24176         (glthread_recursive_lock_destroy_multithreaded): Renamed from
24177         glthread_recursive_lock_destroy. Return error code.
24178         (glthread_once_call): Make static.
24179         (glthread_once_multithreaded): Renamed from glthread_once.
24180         * lib/tls.h: Include <errno.h>.
24181         (glthread_tls_key_init): New macro/function.
24182         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
24183         (glthread_tls_set): New macro/function.
24184         (gl_tls_set): Define as wrapper around glthread_tls_set.
24185         (glthread_tls_key_destroy): New macro/function.
24186         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
24187         Update function declarations.
24188         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
24189         glthread_tls_get.
24190         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
24191
24192 2008-08-04  Eric Blake  <ebb9@byu.net>
24193
24194         gnumakefile: use space, not TAB, outside of targets
24195         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
24196
24197 2008-08-02  Jim Meyering  <meyering@redhat.com>
24198
24199         getdate.y: avoid locale-dependent date parsing failure
24200         In Turkish locales, getdate would fail to recognize keywords
24201         containing a lowercase "i".  The solution is not to rely on
24202         locale-sensitive case-conversion.
24203         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
24204         (lookup_word): Use c_toupper in place of toupper.
24205         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
24206         Reported by Vefa Bicakci <bicave@superonline.com> in
24207         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
24208         * modules/getdate (Depends-on): Add c-ctype.
24209
24210 2008-08-02  Bruno Haible  <bruno@clisp.org>
24211
24212         * gnulib-tool (func_import): When updating or creating a .gitignore
24213         file, prepend each added line with a slash, and ignore leading slashes
24214         from the existing lines.
24215         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
24216
24217 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24218
24219         Portability fix for GNU make 3.79.1.
24220         * top/GNUmakefile: Avoid 'else COND', which older GNU make
24221         versions do not understand.
24222
24223 2008-08-01  Bruno Haible  <bruno@clisp.org>
24224
24225         Work around bug of HP-UX 10.20 cc with -0.0 literal.
24226         * tests/test-isnanf.h (zero): New variable.
24227         (main): Avoid literal -0.0f.
24228         * tests/test-isnand.h (zero): New variable.
24229         (main): Avoid literal -0.0.
24230         * tests/test-isnanl.h (zero): New variable.
24231         (main): Avoid literal -0.0L.
24232         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
24233         (test_float, test_double, test_long_double): Avoid literals -0.0f,
24234         -0.0, -0.0L.
24235         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
24236         (test_signbitd): Avoid literal -0.0.
24237         (test_signbitl): Avoid literal -0.0L.
24238         * tests/test-ceilf1.c (zero): New variable.
24239         (main): Avoid literal -0.0f.
24240         * tests/test-ceill.c (zero): New variable.
24241         (main): Avoid literal -0.0L.
24242         * tests/test-floorf1.c (zero): New variable.
24243         (main): Avoid literal -0.0f.
24244         * tests/test-floorl.c (zero): New variable.
24245         (main): Avoid literal -0.0L.
24246         * tests/test-roundf1.c (zero): New variable.
24247         (main): Avoid literal -0.0f.
24248         * tests/test-round1.c (zero): New variable.
24249         (main): Avoid literal -0.0.
24250         * tests/test-roundl.c (zero): New variable.
24251         (main): Avoid literal -0.0L.
24252         * tests/test-truncf1.c (zero): New variable.
24253         (main): Avoid literal -0.0f.
24254         * tests/test-trunc1.c (zero): New variable.
24255         (main): Avoid literal -0.0.
24256         * tests/test-truncl.c (zero): New variable.
24257         (main): Avoid literal -0.0L.
24258         * tests/test-frexp.c (zero): New variable.
24259         (main): Avoid literal -0.0.
24260         * tests/test-frexpl.c (zero): New variable.
24261         (main): Avoid literal -0.0L.
24262         * tests/test-ldexpl.c (zero): New variable.
24263         (main): Avoid literal -0.0L.
24264         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
24265         (zerod, zerol): New variables.
24266         (test_function): Avoid literals -0.0, -0.0L.
24267         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
24268         (zerod, zerol): New variables.
24269         (test_function): Avoid literals -0.0, -0.0L.
24270         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
24271         (zerod, zerol): New variables.
24272         (test_function): Avoid literals -0.0, -0.0L.
24273         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
24274         (zerod, zerol): New variables.
24275         (test_function): Avoid literals -0.0, -0.0L.
24276         * tests/test-strtod.c (zero): New variable.
24277         (main): Avoid literal -0.0.
24278         Reported by Jonathan C. Patschke <jp@centtech.com>.
24279
24280 2008-07-31  Jim Meyering  <meyering@redhat.com>
24281
24282         sha256.h: correct definition of SHA224_DIGEST_SIZE
24283         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
24284         Reported by Paulie Pena IV <paulie4@gmail.com>.
24285         Define as 224 / 8, rather than as a literal.
24286         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
24287         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
24288         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
24289
24290 2008-07-31  Bruno Haible  <bruno@clisp.org>
24291
24292         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
24293         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
24294         Reported by Jonathan Patschke <jp@centtech.com>.
24295
24296 2008-07-31  Bruno Haible  <bruno@clisp.org>
24297
24298         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
24299         Reported by Paolo Bonzini <bonzini@gnu.org>.
24300
24301 2008-07-30  Eric Blake  <ebb9@byu.net>
24302
24303         test-strtod: allow compilation without -lm
24304         * tests/test-strtod.c (main): Avoid link dependence on fabs.
24305         Reported by Dennis Clarke <blastwave@gmail.com>.
24306
24307 2008-07-28  Jim Meyering  <meyering@redhat.com>
24308
24309         bootstrap: work also when there are no .po files in po/
24310         * build-aux/bootstrap (update_po_files): Complete the change
24311         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
24312
24313 2008-07-27  Jim Meyering  <meyering@redhat.com>
24314
24315         * users.txt: Add zile.
24316
24317 2008-07-26  Ben Pfaff  <blp@gnu.org>
24318
24319         Add missing dependencies on new m4/exponent[fdl].m4 files.
24320         * modules/isnanf-nolibm: Add m4/exponentf.m4.
24321         * modules/isnand-nolibm: Add m4/exponentd.m4.
24322         * modules/isnanl-nolibm: Add m4/exponentl.m4.
24323         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
24324         m4/isnan[fdl].m4, because the macros actually used moved.
24325         Reported by Jim Meyering.
24326
24327 2008-07-14  Ben Pfaff  <blp@gnu.org>
24328
24329         Add isinf module.
24330         * lib/isinf.c: New file.
24331         * lib/math.in.h: Define isinf macro if we have decided to replace
24332         it.
24333         * m4/isinf.m4: New file.
24334         * m4/math_h.m4: Initialize and substitute variables for isinf
24335         module.
24336         * modules/isinf: New file.
24337         * modules/isinf-tests: New file.
24338         * modules/math: Add substitutions for new module.
24339         * tests/test-isinf.c: New file.
24340         * doc/posix-functions/isinf.texi: Mention new module.
24341         * MODULES.html.sh: Mention new module.
24342
24343 2008-07-14  Ben Pfaff  <blp@gnu.org>
24344
24345         Factor out some macros for use by additional modules.
24346         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
24347         exponentf.m4.
24348         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
24349         exponentd.m4.
24350         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
24351         file exponentl.m4.
24352         * m4/exponentf.m4: New file.
24353         * m4/exponentd.m4: New file.
24354         * m4/exponentl.m4: New file.
24355         * modules/isnanf: Use new file m4/exponentf.m4.
24356         * modules/isnand: Use new file m4/exponentd.m4.
24357         * modules/isnanl: Use new file m4/exponentl.m4.
24358
24359 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
24360
24361         mktime.c: normalize tp->tm_isdst value to -1/0/1.
24362         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
24363         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
24364         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
24365
24366         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
24367         readlink on platforms without PATH_MAX.
24368
24369 2008-07-21  Eric Blake  <ebb9@byu.net>
24370
24371         Warn, not fail, on stale version.
24372         * top/GNUmakefile (_curr-ver): Tone down previous patch.
24373
24374         Don't allow installation with stale devel version number.
24375         * top/GNUmakefile (_is-install-target): New macro.
24376         (_curr-ver): Forbid installation with stale version number.
24377
24378 2008-07-20  Bruno Haible  <bruno@clisp.org>
24379
24380         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
24381         TESTS_ENVIRONMENT.
24382         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
24383
24384 2008-07-20  Bruno Haible  <bruno@clisp.org>
24385
24386         * lib/c-stack.h (c_stack_action): Add documentation.
24387         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
24388
24389 2008-07-20  Bruno Haible  <bruno@clisp.org>
24390
24391         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
24392         * modules/readlink (License): Likewise.
24393
24394 2008-07-17  Eric Blake  <ebb9@byu.net>
24395
24396         * modules/c-stack (Link): Fix typo.
24397
24398         Make c-stack use libsigsegv, when available.
24399         * modules/c-stack (Depends-on): Add libsigsegv.
24400         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
24401         needed.
24402         * lib/c-stack.c (SIGSTKSZ): Define fallback.
24403         (segv_handler, overflow_handler, c_stack_action)
24404         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
24405         implementation when libsigsegv is available, but only when using
24406         the library is necessary.
24407         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
24408         comment, explaining why XSI check fails on Linux.
24409         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
24410         * tests/test-c-stack2.sh: Tweak skip message.
24411         * NEWS: Document new link-time requirements.
24412
24413 2008-07-16  Eric Blake  <ebb9@byu.net>
24414
24415         c-stack: Expose false positives when not using libsigsegv.
24416         * modules/c-stack-tests (Files): Expand test.
24417         * tests/test-c-stack.c (main): Add means to conditionally trigger
24418         non-overflow SIGSEGV.
24419         * tests/test-c-stack2.sh: New file.
24420
24421 2008-07-14  Bruno Haible  <bruno@clisp.org>
24422
24423         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
24424         Reported by Eric Blake.
24425
24426 2008-07-14  Sam Steingold  <sds@gnu.org>
24427             Bruno Haible  <bruno@clisp.org>
24428
24429         New module libsigsegv.
24430         * modules/libsigsegv: New file.
24431         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
24432         modifications.
24433         * MODULES.html.sh (Signal handling): New section.
24434
24435 2008-07-14  Bruno Haible  <bruno@clisp.org>
24436
24437         * modules/unictype/ctype-* (Description): Add the word "function".
24438         Improves the resulting doc in MODULES.html.
24439
24440 2008-07-12  Ben Pfaff  <blp@gnu.org>
24441
24442         Add longlong module.
24443         * modules/longlong: New file.
24444
24445 2008-07-12  Bruno Haible  <bruno@clisp.org>
24446
24447         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
24448         to empty.
24449
24450 2008-07-10  Ben Pfaff  <blp@gnu.org>
24451
24452         Add isnan module.
24453         * doc/posix-functions/isnan.texi: Mention new module.
24454         * lib/math.in.h: Define isnan macro if we have decided to replace
24455         it.
24456         * m4/isnan.m4: New file.
24457         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
24458         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
24459         also.
24460         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
24461         redundancy.
24462         * m4/math_h.m4: Initialize and substitute variables for isnan
24463         module.
24464         * modules/isnan: New file.
24465         * modules/isnan-tests: New file.
24466         * modules/math: Add substitutions for new module.
24467         * tests/test-isnan.c: New file.
24468         * MODULES.html.sh: Mention new module.
24469
24470 2008-07-10  Ben Pfaff  <blp@gnu.org>
24471
24472         Add isnanf module.
24473         * lib/isnanf.m4: New file.
24474         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
24475         (gl_HAVE_ISNANF_IN_LIBM): New macro.
24476         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
24477         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
24478         * modules/isnanf: New file.
24479         * modules/isnanf-tests: New file.
24480         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
24481         files.
24482         * tests/test-isnanf-nolibm.c: factored most of its contents into
24483         new file tests/test-isnanf.h.
24484         * tests/test-isnanf.h: New file.
24485         * tests/test-isnanf.c: New file.
24486         * MODULES.html.sh: Mention new module.
24487         * doc/glibc-functions/isnanf.texi: Mention new module.
24488
24489 2008-07-10  Ben Pfaff  <blp@gnu.org>
24490
24491         Add isnand module.
24492         * lib/isnand.h: New file.
24493         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
24494         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
24495         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
24496         functionality also.
24497         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
24498         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
24499         (gl_HAVE_ISNAND_IN_LIBM): New macro.
24500         * modules/isnand: New file.
24501         * modules/isnand-tests: New file.
24502         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
24503         files.
24504         * tests/test-isnand-nolibm.c: factored most of its contents into
24505         new file tests/test-isnand.h.
24506         * tests/test-isnand.h: New file.
24507         * tests/test-isnand.c: New file.
24508         * MODULES.html.sh: Mention new module.
24509
24510 2008-07-10  Ben Pfaff  <blp@gnu.org>
24511
24512         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
24513         * lib/isnand.h: Rename lib/isnand-nolibm.h.
24514         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
24515         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
24516         * modules/isnanf-nolibm: Update references to renamed files.
24517         * modules/isnand-nolibm: Likewise.
24518         * modules/isnanf-nolibm-tests: Likewise.
24519         * modules/isnand-nolibm-tests: Likewise.
24520         * lib/frexp.c: Likewise.
24521         * lib/isfinite.c: Likewise.
24522         * lib/signbitd.c: Likewise.
24523         * lib/signbitf.c: Likewise.
24524         * lib/vasnprintf.c: Likewise.
24525         * tests/test-ceilf1.c: Likewise.
24526         * tests/test-ceilf2.c: Likewise.
24527         * tests/test-floorf1.c: Likewise.
24528         * tests/test-floorf2.c: Likewise.
24529         * tests/test-frexp.c: Likewise.
24530         * tests/test-round1.c: Likewise.
24531         * tests/test-round2.c: Likewise.
24532         * tests/test-roundf1.c: Likewise.
24533         * tests/test-strtod.c: Likewise.
24534         * tests/test-trunc1.c: Likewise.
24535         * tests/test-trunc2.c: Likewise.
24536         * tests/test-truncf1.c: Likewise.
24537         * tests/test-truncf2.c: Likewise.
24538         * NEWS: Mention the renamed header files.
24539
24540 2008-07-11  Jim Meyering  <meyering@redhat.com>
24541
24542         vc-list-files: make the last-resort awk code more portable
24543         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
24544         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
24545         does not support it.
24546
24547 2008-07-10  Eric Blake  <ebb9@byu.net>
24548
24549         Work with tar's bootstrap.
24550         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
24551         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
24552         an m4 comment.
24553
24554 2008-07-09  Jim Meyering  <meyering@redhat.com>
24555
24556         posix-shell.m4: fix typo that made this test malfunction
24557         * m4/posix-shell.m4: Remove capitalization in variable name.
24558
24559 2008-07-08  Bruno Haible  <bruno@clisp.org>
24560
24561         * m4/onceonly.m4: Update comments.
24562         Reported by Ben Pfaff <blp@cs.stanford.edu>.
24563
24564 2008-07-04  Jim Meyering  <meyering@redhat.com>
24565
24566         * users.txt: Add vc-dwim.
24567         (bison, coreutils): Use the gitweb URL.
24568
24569 2008-07-03  Jim Meyering  <meyering@redhat.com>
24570
24571         * users.txt: Add libffcall.  From Sam Steingold.
24572
24573 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
24574
24575         getdate.y: do not ignore TZ with relative day, month or year offset
24576         * lib/getdate.y (get_date): Move the tz-handling block to follow the
24577         relative-date-handling, since otherwise, the latter would clobber the
24578         sole output (an updated Start value) of the tz-handling block.
24579         * tests/test-getdate.c: Tests for the fix
24580
24581 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24582
24583         Recognize 'foo_LIBRARIES += libgnu.a'.
24584         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
24585         makefile snippet has already specified an installation location,
24586         also using '+='.
24587
24588 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
24589
24590         getdate.y: factor out common actions
24591         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
24592         Use them in place of open-coded actions.
24593
24594 2008-07-01  Simon Josefsson  <simon@josefsson.org>
24595
24596         Add self-test for getdate module.
24597         * modules/getdate-tests: New file.
24598         * tests/test-getdate.c: New file.
24599
24600 2008-06-29  Bruno Haible  <bruno@clisp.org>
24601
24602         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
24603         .gitignore.
24604         Reported by Sylvain Beucler <beuc@beuc.net>.
24605
24606 2008-06-29  Bruno Haible  <bruno@clisp.org>
24607
24608         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
24609         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
24610
24611 2008-06-29  Bruno Haible  <bruno@clisp.org>
24612
24613         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
24614         EXTRA_DIST.
24615         Reported by Sylvain Beucler <beuc@beuc.net>.
24616
24617 2008-06-26  Jim Meyering  <meyering@redhat.com>
24618
24619         make several modules depend on the "open" module
24620         This provides slightly increased consistency when opening-for-write
24621         the name of a non-directory spelled with a trailing slash.
24622         * modules/chdir-safer: Likewise.
24623         * modules/chown: Likewise.
24624         * modules/clean-temp: Likewise.
24625         * modules/copy-file: Likewise.
24626         * modules/fchdir: Likewise.
24627         * modules/fcntl-safer: Likewise.
24628         * modules/pipe: Likewise.
24629         * modules/utime: Likewise.
24630         Prompted by Eric Blake and Bruno Haible.
24631
24632 2008-06-24  Andreas Schwab  <schwab@suse.de>
24633
24634         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
24635         literals can be used as initializers for global variables.
24636
24637 2008-06-23  Eric Blake  <ebb9@byu.net>
24638
24639         Make gnulib-cache.m4 easier to diff.
24640         * gnulib-tool (func_import): Allow newlines when reading cached
24641         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
24642
24643 2008-06-23  Bruno Haible  <bruno@clisp.org>
24644
24645         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
24646         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
24647         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
24648         m4/signalblocking.m4.
24649         (gl_PREREQ_SIGACTION): Don't invoke it.
24650         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
24651         gl_PREREQ_SIG_HANDLER_H.
24652         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
24653         Don't check for sigaction here.
24654
24655 2008-06-23  Bruno Haible  <bruno@clisp.org>
24656
24657         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
24658         (install_handlers): Don't set the SA_RESETHAND flag.
24659
24660 2008-06-23  Bruno Haible  <bruno@clisp.org>
24661
24662         * m4/sigaction.m4: Comment fixes.
24663         * lib/signal.in.h: Likewise.
24664
24665 2008-06-23  Eric Blake  <ebb9@byu.net>
24666
24667         Fix typo.
24668         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
24669
24670         Avoid SA_ namespace.
24671         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
24672         Reported by Ralf Wildenhues.
24673
24674         Avoid test failure due to SA_RESTORER.
24675         * tests/test-sigaction.c (SA_MASK): New macro.
24676         (main): Avoid failing due to extension flags being set.
24677         Reported by Jim Meyering.
24678
24679         Revert use of sig-handler.h in sigprocmask.c.
24680         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
24681         it requires the existence of struct sigaction.
24682         * lib/sigprocmask.c (handler_t): Restore typedef.
24683         (rpl_signal, old_handlers): Use local type.
24684
24685 2008-06-22  Bruno Haible  <bruno@clisp.org>
24686
24687         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
24688         conditionally.
24689         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
24690
24691 2008-06-22  Bruno Haible  <bruno@clisp.org>
24692
24693         * doc/posix-functions/siginterrupt.texi: Move note.
24694
24695         * lib/signal.in.h (SA_RESTART): New macro.
24696         * lib/sigaction.c: Update comment.
24697
24698         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
24699
24700         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
24701         (gl_PREREQ_SIGPROCMASK): Invoke it.
24702         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
24703
24704         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
24705
24706         * lib/sigprocmask.c: Update a comment.
24707
24708 2008-06-21  Eric Blake  <ebb9@byu.net>
24709
24710         Use sigaction module rather than signal().
24711         * modules/c-stack (Depends-on): Add sigaction.
24712         * modules/fatal-signal (Depends-on): Likewise.
24713         * modules/nanosleep (Depends-on): Likewise.
24714         * modules/sigprocmask (Files): Add sig-handler.h.
24715         * modules/sigaction (Files): Likewise.
24716         * lib/sig-handler.h (get_handler): New file, suggested by Paul
24717         Eggert.
24718         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
24719         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
24720         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
24721         (init_fatal_signals): Likewise.
24722         * lib/nanosleep.c (rpl_nanosleep): Likewise.
24723         (siginterrupt): Delete fallback.
24724         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
24725         instead.
24726         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
24727         siginterrupt.
24728
24729         New module sigaction, for mingw.
24730         * modules/sigaction: New module...
24731         * modules/sigaction-tests: ...and its test.
24732         * m4/sigaction.m4: New file.
24733         * lib/sigaction.c: Likewise.
24734         * tests/test-sigaction.c: Likewise.
24735         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
24736         * modules/signal (Makefile.am): Likewise.
24737         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
24738         needed.
24739         * doc/posix-headers/signal.texi (signal.h): Mention provided
24740         types.
24741         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
24742         that sigaction is preferable.
24743         * doc/posix-functions/sigaction.texi (sigaction): Mention new
24744         module.
24745         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
24746         sigaction.
24747
24748         Improve robustness of sigprocmask by overriding signal.
24749         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
24750         is in use.
24751         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
24752         (SIGKILL, SIGSTOP): Provide fallbacks.
24753         (rpl_signal): Implement.
24754         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
24755         signal can be called inside handlers.
24756
24757         Fix nanosleep module on mingw.
24758         * modules/nanosleep (Depends-on): Add sys_select.
24759         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
24760
24761         Fix licensing of sigprocmask.
24762         * modules/raise (License): Relicense as LGPL.
24763
24764 2008-06-21  Bruno Haible  <bruno@clisp.org>
24765
24766         * lib/propername.c (proper_name_utf8): Don't use the transliterated
24767         result if it contains question marks.
24768         Reported by Michael Geng <linux@michaelgeng.de>.
24769
24770 2008-06-19  Bruno Haible  <bruno@clisp.org>
24771
24772         Fix CVS-ism.
24773         * doc/gnulib.texi: Include updated-stamp.texi.
24774         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
24775         (updated-stamp.texi): New rule.
24776         (gnulib.info): Depend on it.
24777         * doc/.gitignore: Add updated-stamp.texi.
24778         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
24779
24780 2008-06-19  Bruno Haible  <bruno@clisp.org>
24781
24782         * doc/Makefile (gnulib.info): Update and simplify dependencies.
24783         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
24784
24785 2008-06-19  Eric Blake  <ebb9@byu.net>
24786
24787         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
24788         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
24789         Reported by Stepan Kasal.
24790
24791 2008-06-18  Bruno Haible  <bruno@clisp.org>
24792
24793         * lib/fatal-signal.c (init_fatal_signals): Add comment.
24794         Reported by Eric Blake.
24795
24796 2008-06-18  Eric Blake  <ebb9@byu.net>
24797
24798         Work around cygwin 1.5.25 strsignal bug.
24799         * tests/test-strsignal.c: Allow for const char *.
24800         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
24801
24802 2008-06-18  Simon Josefsson  <simon@josefsson.org>
24803
24804         * users.txt: Update URL to article and add author/date
24805         information.
24806
24807 2008-06-17  Bruno Haible  <bruno@clisp.org>
24808
24809         New macro gl_DISABLE_THREADS.
24810         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
24811         if the user did not pass --enable-threads or --disable-threads option.
24812         (gl_DISABLE_THREADS): New macro.
24813         Reported by Eric Blake <ebb9@byu.net>.
24814
24815 2008-06-17  Bruno Haible  <bruno@clisp.org>
24816
24817         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
24818         when the macro ignores it.
24819         Based on a patch by Eric Blake <ebb9@byu.net>.
24820
24821 2008-06-17  Bruno Haible  <bruno@clisp.org>
24822
24823         * modules/tls (License): Change to LGPLv2+.
24824         Reported by Eric Blake.
24825
24826 2008-06-17  Eric Blake  <ebb9@byu.net>
24827
24828         Simplify c-stack prerequisites.
24829         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
24830         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
24831         no longer requires <ucontext.h> to exist.  Optimize setrlimit
24832         check.
24833         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
24834         <sys/resource.h>.
24835
24836         Move c-stack test into testsuite.
24837         * modules/c-stack-tests: New file.
24838         * lib/c-stack.c [DEBUG]: Move test program...
24839         * tests/test-c-stack.c: ...into this new file.  Skip rather than
24840         fail test if sigaltstack is lacking.
24841         * tests/test-c-stack.sh: New driver file.
24842
24843 2008-06-16  Eric Blake  <ebb9@byu.net>
24844
24845         Use raise module consistently.
24846         * modules/fatal-signal (Depends-on): Add raise.
24847         * modules/sigprocmask (Depends-on): Likewise.
24848         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
24849         * lib/sigprocmask.c (sigprocmask): Likewise.
24850         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
24851         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
24852
24853         Fix compliance bug in sigpending.
24854         * lib/sigprocmask.c (sigpending): Return pending array via
24855         parameter, not return value.
24856
24857 2008-06-14  Eric Blake  <ebb9@byu.net>
24858
24859         Improve obstack-printf test code.
24860         * tests/test-obstack-printf.c (test_function): Fix comment, and
24861         simplify usage of obstack_* in macros.  Add a test for coverage.
24862         Reported by Bruno Haible.
24863
24864 2008-06-14  Bruno Haible  <bruno@clisp.org>
24865
24866         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
24867         array size as a constant, not as a const variable.
24868         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
24869         AC_USE_SYSTEM_EXTENSIONS.
24870         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
24871         Test whether the obstack_printf function actually exists.
24872         * modules/obstack-printf (Depends-on): Add extensions.
24873         (Include): Remove obstack.h.
24874         * modules/obstack-printf-posix (Depends-on): Add extensions.
24875         (Include): Remove obstack.h.
24876
24877 2008-06-13  Eric Blake  <ebb9@byu.net>
24878
24879         Add obstack-printf and obstack-printf-posix modules.
24880         * modules/obstack-printf: New file.
24881         * modules/obstack-printf-posix: Likewise.
24882         * MODULES.html.sh (Misc): Mention them.
24883         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
24884         Likewise.
24885         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
24886         Likewise.
24887         * modules/stdio (Makefile.am): Accomodate new modules.
24888         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
24889         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
24890         Declare.
24891         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
24892         functions.
24893         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
24894         (gl_REPLACE_OBSTACK_PRINTF): New macros
24895         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
24896         * tests/test-obstack-printf.c: New file.
24897         * modules/obstack-printf-tests: Likewise.
24898         * modules/obstack-printf-posix-tests: Likewise.
24899
24900 2008-06-11  Bruno Haible  <bruno@clisp.org>
24901
24902         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
24903         * lib/open.c: Include errno.h.
24904         (open): Fail when attempting to write to a file that has a trailing
24905         slash.
24906         * tests/test-open.c (main): Test against trailing slash bug.
24907         * doc/posix-functions/open.texi: Mention the trailing slash bug.
24908
24909 2008-06-10  Bruno Haible  <bruno@clisp.org>
24910
24911         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
24912         for $? to work inside the trap command, with various /bin/sh-s.
24913         * tests/test-vc-list-files-cvs.sh: Likewise.
24914
24915 2008-06-10  Bruno Haible  <bruno@clisp.org>
24916
24917         * lib/acl-internal.h: Don't include gettext.h here.
24918         * lib/set-mode-acl.c: Include gettext.h here.
24919         * lib/copy-acl.c: Likewise.
24920
24921 2008-06-10  Bruno Haible  <bruno@clisp.org>
24922
24923         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
24924         * lib/wait-process.c (wait_subprocess): Likewise.
24925         * lib/execute.h (execute): Add termsigp argument.
24926         * lib/execute.c (execute): Likewise.
24927         * lib/csharpcomp.c (compile_csharp_using_pnet,
24928         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
24929         * lib/csharpexec.c (execute_csharp_using_pnet,
24930         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
24931         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
24932         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
24933         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
24934         is_jikes_present): Update.
24935         * lib/javaexec.c (execute_java_class): Update.
24936         * lib/javaversion.c (execute_and_read_line): Update.
24937         * NEWS: Document the changes.
24938         Reported by Eric Blake.
24939
24940 2008-06-10  Eric Blake  <ebb9@byu.net>
24941
24942         Add missing include.
24943         * tests/test-strstr.c (includes): Add <signal.h>.
24944         * tests/test-strcasestr.c (includes): Likewise.
24945         * tests/test-memmem.c (includes): Likewise.
24946
24947 2008-06-10  Bruno Haible  <bruno@clisp.org>
24948
24949         * lib/wait-process.c (wait_subprocess): Add an assertion.
24950
24951 2008-06-10  Bruno Haible  <bruno@clisp.org>
24952
24953         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
24954
24955 2008-06-10  Bruno Haible  <bruno@clisp.org>
24956
24957         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
24958         using alarm().
24959         * tests/test-strcasestr.c (main): Likewise.
24960         * tests/test-strstr.c (main): Likewise.
24961
24962 2008-06-09  Bruno Haible  <bruno@clisp.org>
24963
24964         Work around the Solaris 10 ACE ACLs ABI change.
24965         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
24966         declare if ACL_NO_TRIVIAL is present.
24967         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
24968         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
24969         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
24970         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
24971         define if ACL_NO_TRIVIAL is present.
24972         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
24973         and use the current ABI.
24974         (file_has_acl): Use same #if condition as elsewhere.
24975         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
24976         in use, and use the current ABI.
24977         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
24978         Reported by Jim Meyering.
24979
24980 2008-06-09  Eric Blake  <ebb9@byu.net>
24981
24982         Work around environments that (stupidly) ignore SIGALRM.
24983         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
24984         before using alarm().
24985         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
24986         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
24987         Reported by Ian Beckwith <ianb@erislabs.net>.
24988
24989         Produce autobuild blurb earlier in log.
24990         * modules/autobuild (configure.ac-early): Move AB_INIT here.
24991
24992 2008-06-09  Jim Meyering  <meyering@redhat.com>
24993         and OndÅ™ej Vašík  <ovasik@redhat.com>
24994
24995         utimens.c: correct kernel bug work-around
24996         OndÅ™ej Vašík found that the invalid return value of 280 indicates
24997         failure, not success, and the kernel bug we're trying to work
24998         around affects not just the utimensat call, but also the fallback
24999         futimens call.
25000         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
25001         not success.
25002         [HAVE_FUTIMENS]: Use the same work-around, here.
25003
25004 2008-06-09  Jim Meyering  <meyering@redhat.com>
25005
25006         add more guards around definition of ACE_-related code
25007         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
25008         ALLOW and ACE_OWNER are also defined.
25009
25010 2008-06-08  Bruno Haible  <bruno@clisp.org>
25011
25012         * lib/acl-internal.h: Add me as co-author.
25013         * lib/file-has-acl.c: Likewise.
25014         * lib/set-mode-acl.c: Likewise.
25015         * lib/copy-acl.c: Likewise.
25016
25017 2008-06-08  Bruno Haible  <bruno@clisp.org>
25018
25019         Add support for AIX ACLs.
25020         * lib/acl-internal.h (acl_nontrivial): New declaration.
25021         * lib/file-has-acl.c (acl_nontrivial): New function.
25022         (file_has_acl): Add implementation using AIX 4 ACL API.
25023         * lib/set-mode-acl.c (qset_acl): Likewise.
25024         * lib/copy-acl.c (qcopy_acl): Likewise.
25025
25026 2008-06-08  Bruno Haible  <bruno@clisp.org>
25027
25028         Add support for HP-UX ACLs.
25029         * lib/acl-internal.h (acl_nontrivial): New declaration.
25030         * lib/file-has-acl.c (acl_nontrivial): New function.
25031         (file_has_acl): Add implementation using HP-UX 11 ACL API.
25032         * lib/set-mode-acl.c (qset_acl): Likewise.
25033         * lib/copy-acl.c (qcopy_acl): Likewise.
25034
25035 2008-06-08  Bruno Haible  <bruno@clisp.org>
25036
25037         Add support for Cygwin ACLs.
25038         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
25039         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
25040         the chmod_or_fchmod call.
25041         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
25042
25043 2008-06-08  Bruno Haible  <bruno@clisp.org>
25044
25045         Fix bug with setuid modes in Solaris 10+ code.
25046         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
25047         succeeded, when the mode contains some special bits.
25048
25049 2008-06-08  Bruno Haible  <bruno@clisp.org>
25050
25051         Add support for Solaris 7..10 ACLs.
25052         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
25053         declarations.
25054         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
25055         functions.
25056         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
25057         * lib/set-mode-acl.c (qset_acl): Likewise.
25058         * lib/copy-acl.c (qcopy_acl): Likewise.
25059
25060 2008-06-08  Bruno Haible  <bruno@clisp.org>
25061
25062         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
25063         declaration.
25064         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
25065         (acl_access_nontrivial): Remove MacOS X case.
25066         (file_has_acl): Use acl_extended_nontrivial.
25067         * lib/copy-acl.c (qcopy_acl): Likewise.
25068
25069 2008-06-08  Bruno Haible  <bruno@clisp.org>
25070
25071         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
25072
25073 2008-06-08  Jim Meyering  <meyering@redhat.com>
25074
25075         * modules/acl (Maintainer): Add Bruno Haible.
25076
25077 2008-06-07  Bruno Haible  <bruno@clisp.org>
25078
25079         Improve support for Tru64 ACLs.
25080         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
25081         ACL on OSF/1.
25082
25083 2008-06-07  Bruno Haible  <bruno@clisp.org>
25084
25085         Add support for MacOS X ACLs.
25086         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
25087         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
25088         * lib/set-mode-acl.c (qset_acl): Likewise.
25089         * lib/copy-acl.c (qcopy_acl): Likewise.
25090
25091 2008-06-07  Bruno Haible  <bruno@clisp.org>
25092
25093         Fix memory leak introduced on 2008-05-22.
25094         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
25095         use.
25096
25097 2008-06-07  Bruno Haible  <bruno@clisp.org>
25098
25099         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
25100         to construct an empty ACL.
25101
25102 2008-06-07  Bruno Haible  <bruno@clisp.org>
25103
25104         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
25105         precisely.
25106         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
25107
25108 2008-06-07  Bruno Haible  <bruno@clisp.org>
25109
25110         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
25111         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
25112
25113 2008-06-07  Bruno Haible  <bruno@clisp.org>
25114
25115         * doc/posix-functions/_setjmp.texi: Explain the use of this function
25116         regardless of POSIX.
25117         * doc/posix-functions/_longjmp.texi: Likewise.
25118         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
25119         SystemV platform in this case.
25120
25121 2008-06-06  Eric Blake  <ebb9@byu.net>
25122
25123         Document abort() bugs.
25124         * doc/posix-functions/abort.texi (abort): Mention anomalies.
25125
25126         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
25127         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
25128         sigsetjmp.
25129         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
25130         siglongjmp, but only as a macro.
25131         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
25132         is obsolete.
25133         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
25134
25135         Tweak documentation to cover cygwin argz bugs.
25136         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
25137         argz bug fix; no code change needed since no cygwin releases
25138         occurred between the last fix and the bug being tested.
25139         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
25140         module and recently fixed cygwin bugs.
25141         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
25142         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
25143         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
25144         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
25145         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
25146         Likewise.
25147         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
25148         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
25149         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
25150         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
25151         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
25152         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
25153         Likewise.
25154
25155         Avoid gcc warning on cygwin.
25156         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
25157         !ACL_NO_TRIVIAL]: Avoid unused variable.
25158
25159 2008-06-05  Eric Blake  <ebb9@byu.net>
25160
25161         Be tolerant of UNKNOWN version in gnulib-tool test dir.
25162         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
25163         git-version-gen fails to come up with a version.
25164         Reported by Simon Josefsson.
25165
25166 2008-06-05  Jim Meyering  <meyering@redhat.com>
25167             Paul Eggert  <eggert@cs.ucla.edu>
25168
25169         utimens.c: work around a probable Linux kernel bug
25170         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
25171         appears to be a kernel bug that causes utimensat to return 280
25172         instead of 0, indicating success.
25173
25174 2008-06-04  Bruno Haible  <bruno@clisp.org>
25175
25176         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
25177         2008-06-01 commit.
25178
25179 2008-06-04  Bruno Haible  <bruno@clisp.org>
25180
25181         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
25182         * lib/file-has-acl.c (acl_access_nontrivial): New function.
25183         (file_has_acl): Use it. Save errno afterwards.
25184         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
25185
25186 2008-06-03  Bruno Haible  <bruno@clisp.org>
25187
25188         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
25189         draft code. Simplify #ifs.
25190         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
25191         Put Solaris code after POSIX-draft code. Fix comments regarding
25192         Solaris 10, HP-UX. Mention Cygwin.
25193         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
25194
25195 2008-06-03  Eric Blake  <ebb9@byu.net>
25196
25197         Provide fallback for older kernels.
25198         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
25199         Provide runtime fallback if kernel lacks support.
25200         Reported by Mike Frysinger.
25201
25202 2008-06-02  Bruno Haible  <bruno@clisp.org>
25203
25204         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
25205         it exists.
25206
25207 2008-06-02  Bruno Haible  <bruno@clisp.org>
25208
25209         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
25210         * lib/copy-acl.c (qcopy_acl): Update comment.
25211
25212 2008-06-02  Bruno Haible  <bruno@clisp.org>
25213
25214         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
25215         like ACL APIs.
25216
25217 2008-06-02  Bruno Haible  <bruno@clisp.org>
25218
25219         * tests/test-file-has-acl.sh: Use different code for Cygwin.
25220         * tests/test-set-mode-acl.sh: Likewise.
25221         * tests/test-copy-acl.sh: Likewise.
25222         * tests/test-copy-file.sh: Likewise.
25223
25224 2008-06-02  Bruno Haible  <bruno@clisp.org>
25225
25226         * tests/test-file-has-acl.sh: Remove unused code.
25227
25228 2008-06-01  Bruno Haible  <bruno@clisp.org>
25229
25230         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
25231         (copy_acl): Just a wrapper around qcopy_acl that emits the error
25232         messages.
25233         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
25234
25235 2008-06-01  Bruno Haible  <bruno@clisp.org>
25236
25237         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
25238         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
25239         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
25240         APIs.
25241         * modules/acl-tests (configure.ac): Remove tests now contained in
25242         m4/acl.m4.
25243
25244 2008-06-02  Jim Meyering  <meyering@redhat.com>
25245
25246         announce-gen: use a better key-server host name
25247         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
25248         it may be more consistently reliable.  Suggested by Werner Koch
25249         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
25250
25251 2008-06-01  Bruno Haible  <bruno@clisp.org>
25252
25253         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
25254         Reported by Voroskoi Andras <voroskoi@gmail.com>.
25255
25256 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
25257
25258         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
25259
25260 2008-06-01  Bruno Haible  <bruno@clisp.org>
25261
25262         New ACL tests.
25263         * tests/test-file-has-acl.sh: New file.
25264         * tests/test-file-has-acl.c: New file.
25265         * tests/test-set-mode-acl.sh: New file.
25266         * tests/test-set-mode-acl.c: New file.
25267         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
25268         * tests/test-copy-acl.c: New file.
25269         * modules/acl-tests: New file, based on modules/copy-file-tests.
25270         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
25271         (Depends-on): Add acl-tests.
25272         (configure.ac): Remove checks.
25273         (Makefile.am): Don't create test-sameacls program here any more.
25274
25275 2008-06-01  Bruno Haible  <bruno@clisp.org>
25276
25277         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
25278         * tests/test-sameacls.c: Include progname.h.
25279         (main): Invoke set_program_name. Portability fixes for MacOS X,
25280         Solaris, HP-UX.
25281
25282 2008-06-01  Bruno Haible  <bruno@clisp.org>
25283
25284         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
25285         function.
25286         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
25287
25288 2008-06-01  Bruno Haible  <bruno@clisp.org>
25289
25290         * modules/rpmatch (Depends-on): Add strdup.
25291
25292 2008-06-01  Bruno Haible  <bruno@clisp.org>
25293
25294         * lib/pipe.c: Include unistd-safer.h.
25295         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
25296         * modules/pipe (Depends-on): Add unistd-safer.
25297
25298 2008-05-30  Simon Josefsson  <simon@josefsson.org>
25299
25300         * modules/autobuild (configure.ac): Call AB_INIT.
25301
25302 2008-05-30  Simon Josefsson  <simon@josefsson.org>
25303
25304         * tests/test-getaddrinfo.c: Don't print debug messages by default.
25305         Suggested by Bruno Haible <bruno@clisp.org>.
25306
25307 2008-05-30  Simon Josefsson  <simon@josefsson.org>
25308
25309         * tests/test-base64.c: Cast size_t to unsigned long when invoking
25310         printf.  Use %lu instead of %d.  Reported by Bruno Haible
25311         <bruno@clisp.org>.
25312
25313 2008-05-29  Eric Blake  <ebb9@byu.net>
25314
25315         Prefer new POSIX 200x interfaces over futimesat.
25316         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
25317         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
25318         when available.
25319         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
25320
25321 2008-05-28  Bruno Haible  <bruno@clisp.org>
25322
25323         * modules/stpcpy (License): Change to LGPLv2+.
25324         Requested by David Lutterkort <dlutter@redhat.com>.
25325
25326 2008-05-27  Bruno Haible  <bruno@clisp.org>
25327
25328         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
25329         current mingw.
25330         Reported by Jose E. Marchesi <jemarch@gnu.org>.
25331
25332 2008-05-27  Bruno Haible  <bruno@clisp.org>
25333
25334         * modules/iconv_open (Link): New section, from module 'iconv'.
25335         * modules/striconv (Link): Likewise.
25336         * modules/striconveh (Link): Likewise.
25337         * modules/xstriconv (Link): Likewise.
25338         * modules/unicodeio (Link): Likewise.
25339         * modules/propername (Link): Likewise.
25340         Reported by Jim Meyering.
25341
25342 2008-05-26  Jim Meyering  <meyering@redhat.com>
25343
25344         sha256: do not artificially restrict buffer length to be < 2^32
25345         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
25346         uint32_t to size_t.
25347         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
25348         to match.
25349
25350         avoid unaligned access errors, e.g., on sparc
25351         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
25352         direct access through a possibly-unaligned uint64* pointer.
25353         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
25354         direct access through a possibly-unaligned uint32* pointer.
25355         Prompted by this patch from Tom "spot" Callaway:
25356         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
25357
25358         sha512.c: fix typo in comment
25359         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
25360
25361 2008-05-25  Bruno Haible  <bruno@clisp.org>
25362
25363         * lib/set-mode-acl.c: Renamed from lib/acl.c.
25364         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
25365         (Makefile.am): Update lib_SOURCES.
25366
25367 2008-05-25  Bruno Haible  <bruno@clisp.org>
25368
25369         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
25370
25371 2008-05-25  Jim Meyering  <meyering@redhat.com>
25372
25373         useless-if-before-free: freed expr may have white-space differences
25374         * build-aux/useless-if-before-free: Recognize cases in which the
25375         freed expression differs from the tested one in embedded white
25376         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
25377         $1 was used, so we can't make any regexp shy.  Improved tests now
25378         detect this.
25379
25380         useless-if-before-free: accept white space in the expression.
25381         * build-aux/useless-if-before-free: For now, any white space
25382         in the expression must be identical in the free argument.
25383
25384         useless-if-before-free: efficiency tweak
25385         * build-aux/useless-if-before-free: Make the expression-matching
25386         regexp "shy".
25387         Make the *outer* regexp shy, not the expr-matching one.
25388
25389         update code-in-comment to accept cast of free arg
25390         * build-aux/useless-if-before-free: Update regexp.
25391
25392 2008-05-25  Bruno Haible  <bruno@clisp.org>
25393
25394         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
25395         * modules/copy-file-tests (Files, Makefile.am): Update.
25396         * tests/test-copy-file.c (func_test_copy): Update.
25397
25398 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
25399
25400         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
25401
25402 2008-05-23  Bruno Haible  <bruno@clisp.org>
25403
25404         Improve support for ACLs on OSF/1.
25405         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
25406         Remove fallback for unknown flavors of ACLs.
25407
25408 2008-05-22  Bruno Haible  <bruno@clisp.org>
25409
25410         Add support for ACLs on OSF/1.
25411         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
25412         replacements.
25413         (acl_free_text): New macro fallback.
25414         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
25415         acl_free.
25416         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
25417         acl_free_text function. Require AC_C_INLINE.
25418
25419 2008-05-22  Bruno Haible  <bruno@clisp.org>
25420
25421         Make copy_acl work on MacOS X 10.5.
25422         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
25423         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
25424         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
25425         If MODE_INSIDE_ACL, don't assume that every system has the same text
25426         representation for ACLs as FreeBSD.
25427         * lib/copy-acl.c (copy_acl): Add support for platforms with
25428         !MODE_INSIDE_ACL.
25429         * lib/file-has-acl.c (file_has_acl): Likewise.
25430         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
25431         FreeBSD, MacOS X, or IRIX, respectively.
25432
25433 2008-05-22  Bruno Haible  <bruno@clisp.org>
25434
25435         * lib/acl.h: Don't include <sys/acl.h>.
25436         (GETACLCNT): Move fallback to lib/acl-internal.h.
25437         * lib/acl-internal.h: Include <sys/acl.h> here.
25438         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
25439
25440 2008-05-22  Bruno Haible  <bruno@clisp.org>
25441
25442         Split off copy_acl function to separate file.
25443         * lib/copy-acl.c: New file, extracted from lib/acl.c.
25444         * lib/acl.c (copy_acl): Moved function to separate file.
25445         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
25446         * modules/acl (Files): Add lib/copy-acl.c.
25447         (Makefiles.am): Augment lib_SOURCES.
25448
25449 2008-05-22  Bruno Haible  <bruno@clisp.org>
25450
25451         * modules/copy-file-tests: New file.
25452         * tests/test-copy-file.sh: New file.
25453         * tests/test-copy-file.c: New file.
25454         * tests/test-copy-file-sameacls.c: New file.
25455
25456 2008-05-22  Eric Blake  <ebb9@byu.net>
25457
25458         Avoid gcc warning.
25459         * tests/test-memcmp.c (main): Pass NULL indirectly.
25460
25461 2008-05-21  Bruno Haible  <bruno@clisp.org>
25462
25463         Add reference doc about ACLs.
25464         * doc/acl-resources.txt: New file.
25465         * doc/acl-cygwin.txt: New file.
25466
25467 2008-05-21  Bruno Haible  <bruno@clisp.org>
25468
25469         Avoid one more warning from gcc.
25470         * lib/vasnprintf.c (IF_LINT): Update comments.
25471         (VASNPRINTF): Use it also for the 'prefix' array initializer.
25472
25473 2008-05-21  Jim Meyering  <meyering@redhat.com>
25474
25475         avoid a warning from gcc
25476         * lib/vasnprintf.c (IF_LINT): Define.
25477         (scale10_round_decimal_long_double):
25478         Use it to avoid a "may be used uninitialized" warning.
25479         (scale10_round_decimal_double): Likewise.
25480
25481 2008-05-21  Simon Josefsson  <simon@josefsson.org>
25482
25483         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
25484         declared.
25485
25486 2008-05-20  Bruno Haible  <bruno@clisp.org>
25487
25488         * tests/test-memcmp.c (main): Test also the sign of the result. Test
25489         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
25490
25491 2008-05-20  Simon Josefsson  <simon@josefsson.org>
25492
25493         * modules/memcmp-tests: New file.
25494         * tests/test-memcmp.c: New file.
25495
25496 2008-05-19  Bruno Haible  <bruno@clisp.org>
25497
25498         * modules/propername (Notice, configure.ac): Put quoted "..." into
25499         --keyword option.
25500         * lib/propername.h: Update comments accordingly.
25501         Reported by Eric Blake.
25502
25503 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
25504
25505         * modules/getpass-gnu (Depends-on): Add fseeko.
25506
25507 2008-05-19  Simon Josefsson  <simon@josefsson.org>
25508
25509         * modules/base64-tests: New file.
25510
25511 2008-05-19  Bo Borgerson <gigabo@gmail.com>
25512
25513         * lib/base64.c (base64_decode_ctx): If a decode context structure
25514         was passed in use it to ignore newlines.  If a context structure
25515         was _not_ passed in, continue to treat newlines as garbage (this
25516         is the historical behavior).  Formerly base64_decode.
25517         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
25518         takes a decode context structure.
25519         * lib/base64.h (base64_decode): Macro for four-argument calls.
25520         (base64_decode_alloc): Likewise.
25521         * lib/base64.c (base64_decode_ctx): If a decode context structure
25522         was passed in use it to ignore newlines.  If a context structure
25523         was _not_ passed in, continue to treat newlines as garbage (this
25524         is the historical behavior).  Formerly base64_decode.
25525         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
25526         takes a decode context structure.
25527         * lib/base64.h (base64_decode): Macro for four-argument calls.
25528         (base64_decode_alloc): Likewise.
25529
25530 2008-05-19  Jim Meyering  <meyering@redhat.com>
25531
25532         avoid a warning from gcc
25533         * lib/trim.c (IF_LINT): Define.
25534         (trim2): Use it to avoid a "may be used uninitialized" warning.
25535
25536         Fix doc typo.
25537         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
25538
25539 2008-05-19  Bruno Haible  <bruno@clisp.org>
25540
25541         * doc/glibc-functions/getpass.texi: Document limits of other
25542         implementations.
25543
25544 2008-05-19  Simon Josefsson  <simon@josefsson.org>
25545             Bruno Haible <bruno@clisp.org>
25546
25547         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
25548
25549 2008-05-18  Bruno Haible  <bruno@clisp.org>
25550
25551         * modules/propername: New file, from GNU gettext.
25552         * lib/propername.h: New file, from GNU gettext.
25553         * lib/propername.c: New file, from GNU gettext.
25554         * MODULES.html.sh (Internationalization functions): Add propername.
25555
25556 2008-05-16  Jim Meyering  <meyering@redhat.com>
25557             Bruno Haible  <bruno@clisp.org>
25558
25559         Avoid some warnings from "gcc -Wshadow".
25560         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
25561
25562 2008-05-15  Eric Blake  <ebb9@byu.net>
25563
25564         Extend previous patch to cygwin 1.7.0.
25565         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
25566         fast implementation in cygwin >= 1.7.0.
25567         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25568         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25569
25570 2008-05-15  Bruno Haible  <bruno@clisp.org>
25571
25572         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
25573         implementation in glibc >= 2.9.
25574         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
25575         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
25576
25577 2008-05-15  Bruno Haible  <bruno@clisp.org>
25578
25579         * MODULES.html.sh (Internationalization functions): Remove linebreak.
25580         (Unicode string functions): Add unilbrk/*.
25581         Reported by Karl Berry.
25582
25583 2008-05-15  Eric Blake  <ebb9@byu.net>
25584
25585         Fix violation of <stdbool.h> replacement in regex.
25586         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
25587         * lib/regexec.c (re_search_internal): Likewise.
25588         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
25589
25590 2008-05-15  Jim Meyering  <meyering@redhat.com>
25591
25592         avoid distracting test output when git or cvs is not found
25593         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
25594         * tests/test-vc-list-files-git.sh: Likewise.
25595
25596 2008-05-15  Eric Blake  <ebb9@byu.net>
25597
25598         Glibc finally accepted the memmem speedup code, bugzilla #5514.
25599         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
25600         glibc version.
25601         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
25602         * doc/posix-functions/strstr.texi (strstr): Likewise.
25603         * lib/str-two-way.h (MAX): Sychronize with glibc.
25604
25605 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
25606
25607         * lib/regcomp.c (optimize_utf8): Add a note on why we test
25608         opr.ctx_type.
25609         (calc_first): Initialize constraint field.
25610         (duplicate_node_closure): Use it instead of special casing ANCHORS.
25611         Fix grammar.
25612         (duplicate_node): Merge constraint field for all node types.
25613         (calc_eclosure_iter): Look at constraint field for all node types.
25614         * lib/regex_internal.c (create_cd_newstate): Don't look at
25615         opr.ctx_type.
25616
25617 2008-05-14  Bruno Haible  <bruno@clisp.org>
25618
25619         Help GCC to do better code generation.
25620         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
25621         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
25622         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
25623         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
25624         Declare with attribute 'malloc' if supported.
25625
25626 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
25627
25628         use "echo STR|wc -c" rather than unportable "expr length STR"
25629         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
25630         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
25631
25632 2008-05-14  Jim Meyering  <meyering@redhat.com>
25633
25634         use dd ibs=$n count=1 ... rather than less-portable head -c$n
25635         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
25636         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
25637         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
25638         via Collin Lasse.
25639
25640 2008-05-14  Eric Blake  <ebb9@byu.net>
25641
25642         Avoid quadratic growth in gl_LIBSOURCES.
25643         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
25644         Suggested by Bruno Haible.
25645
25646         Test xmemdup0.
25647         * modules/xmemdup0-tests: New file.
25648         * tests/test-xmemdup0.c: Likewise.
25649
25650 2008-05-13  Eric Blake  <ebb9@byu.net>
25651
25652         Split xmemdup0 into its own module.
25653         * modules/xmemdup0: New file.
25654         * lib/xmemdup0.h: Likewise.
25655         * lib/xmemdup0.c: Likewise.
25656         * MODULES.html.sh (Memory management functions): Add xmemdup0.
25657         * lib/xalloc.h (xmemdup0): Remove.
25658         * lib/xmalloc.c (xmemdup0): Likewise.
25659
25660 2008-05-13  Eric Blake  <ebb9@byu.net>
25661             Bruno Haible  <bruno@clisp.org>
25662
25663         Reduce number of forks required during autoconf.
25664         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
25665         and gl_LIBSOURCES_DIR.
25666         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
25667         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
25668         m4_syscmd per file.
25669         <m4_foreach_w>: Move...
25670         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
25671
25672 2008-05-13  Eric Blake  <ebb9@byu.net>
25673
25674         * gnulib-tool: Fix various comment typos.
25675
25676 2008-05-12  Bruno Haible  <bruno@clisp.org>
25677
25678         Tailor the linebreaking algorithm.
25679         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
25680
25681 2008-05-12  Bruno Haible  <bruno@clisp.org>
25682
25683         Update to Unicode 5.0.0.
25684         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
25685         LBP_JV, LBP_JT. Redistribute values.
25686         (unilbrk_table): Change size.
25687         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
25688         Unicode TR#14 rev. 22.
25689         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
25690         LBP_JV, LBP_JT. Redistribute values.
25691         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
25692         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
25693         Update.
25694         * lib/unilbrk/lbrkprop1.h: Regenerated.
25695         * lib/unilbrk/lbrkprop2.h: Regenerated.
25696         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
25697         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
25698         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
25699         Likewise.
25700         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
25701         Likewise.
25702         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
25703         result.
25704         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
25705         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
25706         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
25707         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
25708         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
25709         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
25710
25711 2008-05-11  Bruno Haible  <bruno@clisp.org>
25712
25713         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
25714
25715 2008-05-11  Bruno Haible  <bruno@clisp.org>
25716
25717         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
25718         * modules/unilbrk/gen-lbrk: New file.
25719
25720 2008-05-11  Bruno Haible  <bruno@clisp.org>
25721
25722         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
25723         * m4/sha512.m4 (gl_SHA512): Likewise.
25724
25725 2008-05-11  Jim Meyering  <meyering@redhat.com>
25726
25727         New modules: crypto/sha256, crypto/sha512 (from coreutils)
25728         * modules/crypto/sha256: New file.
25729         * modules/crypto/sha512: Likewise.
25730         * lib/sha256.c: Likewise.
25731         * lib/sha256.h: Likewise.
25732         * lib/sha512.c: Likewise.
25733         * lib/sha512.h: Likewise.
25734         * lib/u64.h: Likewise.
25735         * m4/sha256.m4: Likewise.
25736         * m4/sha512.m4: Likewise.
25737         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
25738
25739 2008-05-10  Bruno Haible  <bruno@clisp.org>
25740
25741         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
25742         (Input/Output <stdio.h>): Add xprintf.
25743         (Signal handling <signal.h>): Add strsignal.
25744         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
25745         (Core language properties): Add func.
25746         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
25747         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
25748         strings.
25749         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
25750         (Input/output): New section.
25751         (File system functions): Add openat-die, stat-macros.
25752         (Networking functions): Add sockets.
25753         (Unicode string functions): Add unictype/*.
25754         (Support for building libraries and executables): Add gperf.
25755         (Support for building documentation): Add agpl-3.0.
25756         (Misc): Add nocrash.
25757
25758 2008-05-10  Bruno Haible  <bruno@clisp.org>
25759
25760         * modules/unictype/gen-ctype: New file.
25761
25762 2008-05-10  Jim Meyering  <meyering@redhat.com>
25763
25764         Make chdir-safer.c more efficient on a system with no symlinks.
25765         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
25766         also if ELOOP is zero.  Suggested by Bruno Haible.
25767
25768         Make chdir-safer.c slightly safer.
25769         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
25770         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
25771
25772         Avoid compile failure on systems without ELOOP (like mingw).
25773         * lib/chdir-safer.c (ELOOP): Define if not already defined.
25774         Reported by Bruno Haible.
25775
25776 2008-05-10  Bruno Haible  <bruno@clisp.org>
25777
25778         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
25779         (is_utf8_encoding): Use a case-insensitive comparison.
25780         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
25781         streq.
25782
25783 2008-05-10  Bruno Haible  <bruno@clisp.org>
25784
25785         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
25786         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
25787         * lib/unilbrk/ulc-common.h (iconv_string_length,
25788         iconv_string_keeping_offsets): Remove declarations.
25789         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
25790         Don't include <iconv.h>, streq.h, xsize.h.
25791         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
25792         conversion.
25793         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
25794         <iconv.h>, streq.h, xsize.h.
25795         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
25796         conversion.
25797         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
25798         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
25799         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
25800         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
25801
25802 2008-05-10  Bruno Haible  <bruno@clisp.org>
25803
25804         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
25805         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
25806
25807         * modules/unilbrk/u32-width-linebreaks-tests: New file.
25808         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
25809
25810         * modules/unilbrk/u16-width-linebreaks-tests: New file.
25811         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
25812
25813         * modules/unilbrk/u8-width-linebreaks-tests: New file.
25814         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
25815
25816         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
25817         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
25818
25819         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
25820         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
25821
25822         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
25823         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
25824
25825         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
25826         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
25827
25828 2008-05-10  Bruno Haible  <bruno@clisp.org>
25829
25830         Split up 'linebreak' module.
25831         * lib/unilbrk.h: New file, based on lib/linebreak.h.
25832         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
25833         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
25834         modifications.
25835         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
25836         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
25837         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
25838         lib/linebreak.c.
25839         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
25840         lib/linebreak.c.
25841         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
25842         lib/linebreak.c.
25843         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
25844         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
25845         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
25846         lib/linebreak.c.
25847         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
25848         lib/linebreak.c.
25849         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
25850         lib/linebreak.c.
25851         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
25852         lib/linebreak.c.
25853         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
25854         lib/linebreak.c.
25855         * modules/unilbrk/base: New file.
25856         * modules/unilbrk/tables: New file.
25857         * modules/unilbrk/u8-possible-linebreaks: New file.
25858         * modules/unilbrk/u16-possible-linebreaks: New file.
25859         * modules/unilbrk/u32-possible-linebreaks: New file.
25860         * modules/unilbrk/ulc-common: New file.
25861         * modules/unilbrk/ulc-possible-linebreaks: New file.
25862         * modules/unilbrk/u8-width-linebreaks: New file.
25863         * modules/unilbrk/u16-width-linebreaks: New file.
25864         * modules/unilbrk/u32-width-linebreaks: New file.
25865         * modules/unilbrk/ulc-width-linebreaks: New file.
25866         * lib/linebreak.h: Remove file.
25867         * lib/linebreak.c: Remove file.
25868         * m4/linebreak.m4: Remove file.
25869         * modules/linebreak: Remove file.
25870         * NEWS: Mention the changes.
25871
25872 2008-05-09  Eric Blake  <ebb9@byu.net>
25873
25874         Add xmemdup0.
25875         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
25876         implementation.
25877         * lib/xmalloc.c (xmemdup0): New C implementation.
25878
25879 2008-05-08  Bruno Haible  <bruno@clisp.org>
25880
25881         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
25882
25883 2008-05-07  Eric Blake  <ebb9@byu.net>
25884
25885         Support cross-compilation of <wctype.h>.
25886         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
25887         AC_CACHE_CHECK.
25888
25889 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
25890
25891         * build-aux/vc-list-files: Add support for bzr.
25892
25893 2008-05-03  Jim Meyering  <meyering@redhat.com>
25894
25895         avoid failed assertion with tight malloc
25896         * tests/test-getndelim2.c: Correct an off-by-one assertion.
25897
25898 2008-05-03  Simon Josefsson  <simon@josefsson.org>
25899
25900         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
25901         are needed from arpa/inet.h.
25902         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
25903         Reported by Bruno Haible.
25904
25905 2008-05-02  Jim Meyering  <meyering@redhat.com>
25906
25907         avoid compilation error on FreeBSD 6
25908         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
25909
25910 2008-05-01  Jim Meyering  <meyering@redhat.com>
25911
25912         useless-if-before-free: correct --help's exit status description
25913         * build-aux/useless-if-before-free (usage): Like grep, exit 0
25914         for one or more matches, etc.  Reported by Bruno Haible.
25915
25916         vc-list-files: make the stand-alone gnulib test work
25917         * modules/vc-list-files-tests (configure.ac):
25918         Define and AC_SUBST abs_aux_dir.
25919         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
25920         $(abs_top_srcdir) to each script and having each of them
25921         duplicate the work of setting PATH, set PATH here, using
25922         the new variable, abs_aux_dir instead.
25923         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
25924         * tests/test-vc-list-files-git.sh: Likewise.
25925         Reported by Bruno Haible.
25926
25927 2008-05-01  Bruno Haible  <bruno@clisp.org>
25928
25929         * lib/getndelim2.c (getndelim2): Fix newsize computation during
25930         reallocation. Rename 'done' to 'found_delimiter'.
25931
25932 2008-05-01  Jim Meyering  <meyering@redhat.com>
25933
25934         vc-list-files: accommodate /bin/sh like the one from Solaris 10
25935         * build-aux/vc-list-files: Use `...`, not $(...).
25936
25937 2008-04-30  Jim Meyering  <meyering@redhat.com>
25938
25939         add tests for vc-list-files
25940         * modules/vc-list-files-tests: New module.
25941         * tests/test-vc-list-files-cvs.sh: New file.
25942         * tests/test-vc-list-files-git.sh: New file.
25943
25944         avoid a warning from gcc
25945         * lib/getndelim2.c (IF_LINT): Define.
25946         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
25947
25948         vc-list-files: work properly with build-aux/cvsu, too
25949         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
25950         to all cvs-based clauses.
25951
25952         vc-list-files: work properly in the CVS+awk case, too
25953         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
25954
25955         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
25956         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
25957         take more than one file argument, so .  Add quotes, just in case $dir
25958         ever contains a shell meta-character.  Prompted by Soren Hansen in
25959         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
25960
25961 2008-04-29  Eric Blake  <ebb9@byu.net>
25962
25963         Optimize getndelim2 to use block operations when possible.
25964         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
25965         freadseek, and memchr2.
25966         * lib/getndelim2.c (getndelim2): Use them for block reads.
25967
25968 2008-04-29  Bruno Haible  <bruno@clisp.org>
25969
25970         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
25971         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
25972         * modules/inet_ntop (Depends-on): Add extensions.
25973         * modules/inet_pton (Depends-on): Likewise.
25974         Reported by Simon Josefsson.
25975
25976 2008-04-29  Jim Meyering  <meyering@redhat.com>
25977
25978         When the is more than one match in a block, match all of them.
25979         * build-aux/useless-if-before-free: Iterate through each block
25980         until there are no more matches.
25981
25982         Fix broken useless-if-before-free script.
25983         * build-aux/useless-if-before-free: Fix typo: missing "?" after
25984         the expression to match cast of argument to free-like function.
25985
25986 2008-04-29  Eric Blake  <ebb9@byu.net>
25987
25988         Use new header.
25989         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
25990
25991 2008-04-29  Jim Meyering  <meyering@redhat.com>
25992
25993         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
25994         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
25995         by gnulib to exist and to declare e.g., inet_ntop.
25996         Don't include "inet_ntop.h", now removed.
25997
25998         * m4/arpa_inet_h.m4: Remove trailing blanks.
25999
26000 2008-04-29  Eric Blake  <ebb9@byu.net>
26001
26002         Silence valgrind on safe reads beyond potential array bounds.
26003         * lib/rawmemchr.valgrind: New file.
26004         * lib/strchrnul.valgrind: Likewise.
26005         * modules/rawmemchr (Files): Distribute new file.
26006         * modules/strchrnul (Files): Likewise.
26007         Suggested by Bruno Haible.
26008
26009 2008-04-29  Bruno Haible  <bruno@clisp.org>
26010
26011         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
26012         (inet_ntop, inet_pton): Change portability warning's wording.
26013         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
26014         Invoke gl_CHECK_NEXT_HEADERS.
26015         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
26016         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
26017         set ARPA_INET_H.
26018         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
26019         * modules/arpa_inet (Description): No longer only for systems that
26020         lack it.
26021         (Depends-on): Add include_next.
26022         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
26023         HAVE_ARPA_INET_H.
26024
26025 2008-04-29  Jim Meyering  <meyering@redhat.com>
26026
26027         * modules/mkdir (License): Re-license as LGPLv2+.
26028
26029 2008-04-29  Bruno Haible  <bruno@clisp.org>
26030
26031         * modules/rawmemchr (Maintainer): Set to Eric.
26032         * modules/strchrnul (Maintainer): Likewise.
26033
26034 2008-04-29  Simon Josefsson  <simon@josefsson.org>
26035
26036         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
26037         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
26038
26039         * modules/arpa_inet (arpa/inet.h): Use them.
26040
26041 2008-04-28  Eric Blake  <ebb9@byu.net>
26042
26043         Test getndelim2.
26044         * modules/getndelim2-tests: New file.
26045         * tests/test-getndelim2.c: Likewise.
26046         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
26047         stream.
26048         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
26049
26050         * MODULES.html.sh: Document new module.
26051
26052 2008-04-20  Bruno Haible  <bruno@clisp.org>
26053
26054         * lib/c-stack.c (die): Use raise.
26055         * modules/c-stack (Depends-on): Add raise.
26056
26057 2008-04-28  Bruno Haible  <bruno@clisp.org>
26058
26059         Expect rpmatch to be declared.
26060         * lib/yesno.c (rpmatch): Remove declaration.
26061
26062         Declare rpmatch.
26063         * lib/stdlib.in.h (rpmatch): New declaration.
26064         * lib/rpmatch.c: Include <stdlib.h> first.
26065         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
26066         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
26067         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
26068         HAVE_RPMATCH.
26069         * modules/rpmatch (Depends-on): Add stdlib, extensions.
26070         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
26071         (Include): Set to <stdlib.h>.
26072         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
26073         HAVE_RPMATCH.
26074         * NEWS: Document the change.
26075
26076 2008-04-28  Bruno Haible  <bruno@clisp.org>
26077
26078         Change rpmatch to use nl_langinfo when appropriate.
26079         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
26080         (N_): New macro.
26081         (localized_pattern): New function/macro.
26082         (try): Remove match, nomatch arguments. Copy the pattern into safe
26083         memory before caching it.
26084         (rpmatch): Use localized_pattern. Add translator comments.
26085         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
26086         Suggested by Eric Blake.
26087         * modules/rpmatch (Depends-on): Add stdbool.
26088
26089 2008-04-28  Eric Blake  <ebb9@byu.net>
26090
26091         Add rawmemchr module, matching glibc.
26092         * modules/string (Makefile.am): New indicator.
26093         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
26094         * lib/string.in.h (rawmemchr): Declare when appropriate.
26095         * modules/rawmemchr: New file.
26096         * m4/rawmemchr.m4: Likewise.
26097         * lib/rawmemchr.c: Likewise.
26098         * modules/rawmemchr-tests: Likewise.
26099         * tests/test-rawmemchr.c: Likewise.
26100         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
26101         module.
26102         * modules/strchrnul (Depends-on): Add rawmemchr.
26103         * lib/strchrnul.c (strchrnul): Optimize a corner case.
26104
26105         Whitespace cleanup.
26106         * tests/test-strchrnul.c: Reindent.
26107         * lib/strchrnul.c: Likewise.
26108
26109         Optimize and test strchrnul.
26110         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
26111         * modules/strchrnul-tests: New file.
26112         * tests/test-strchrnul.c: Likewise.
26113
26114         Remove intprops dependency.
26115         * modules/memchr (Depends-on): Remove intprops.
26116         * modules/memrchr (Depends-on): Likewise.
26117         * modules/memchr2 (Depends-on): Likewise.
26118         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
26119         * lib/memrchr.c (__memrchr): Likewise.
26120         * lib/memrchr2.c (memchr2): Likewise.
26121         Reported by Simon Josefsson.
26122
26123 2008-04-28  Simon Josefsson  <simon@josefsson.org>
26124
26125         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
26126         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26127
26128 2008-04-28  Simon Josefsson  <simon@josefsson.org>
26129
26130         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
26131
26132         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
26133
26134         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
26135
26136         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
26137         declarations.
26138         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
26139
26140         * m4/inet_pton.m4: Don't check for header files.
26141
26142         * m4/inet_ntop.m4: Don't check for header files.
26143
26144 2008-04-28  Simon Josefsson  <simon@josefsson.org>
26145
26146         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
26147         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
26148         trigger for cygwin).
26149         Reported by Bruno Haible  <bruno@clisp.org>.
26150
26151 2008-04-28  Bruno Haible  <bruno@clisp.org>
26152
26153         * doc/posix-functions/strdup.texi: Mention mingw problem.
26154
26155 2008-04-27  Bruno Haible  <bruno@clisp.org>
26156
26157         * modules/stat-time-tests (Depends-on): Add sleep.
26158         * tests/test-stat-time.c (force_unlink): New function.
26159         (cleanup): Use it.
26160         (test_mtime): Remove the ctime related tests.
26161         (test_ctime): New function, containing the ctime related tests.
26162         (main): Call test_ctime, except on native Windows platforms.
26163
26164 2008-04-27  Bruno Haible  <bruno@clisp.org>
26165
26166         * lib/rpmatch.c (rpmatch): Add some comments.
26167         Reported by James Youngman <jay@gnu.org>.
26168
26169 2008-04-27  Bruno Haible  <bruno@clisp.org>
26170
26171         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
26172         quiet NaNs.
26173
26174 2008-04-27  Bruno Haible  <bruno@clisp.org>
26175
26176         Make test-yesno.sh work on mingw.
26177         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
26178         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
26179         (main): Set stdin to binary mode.
26180         * modules/yesno-tests (Depends-on): Add binary-io.
26181
26182 2008-04-27  Bruno Haible  <bruno@clisp.org>
26183
26184         Fix 'isfinite' on x86, x86_64, ia64 platforms.
26185         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
26186         argument that lie outside the IEEE 854 domain.
26187         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
26188         (gl_ISFINITE): Use it.
26189         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
26190
26191 2008-04-27  Bruno Haible  <bruno@clisp.org>
26192
26193         Allow local renaming in config.h.
26194         * lib/memrchr.c (memrchr): Don't undefine outside libc.
26195
26196 2008-04-27  Bruno Haible  <bruno@clisp.org>
26197
26198         * lib/memchr.c (__memchr): Change type of 'i'.
26199         * lib/memchr2.c (memchr2): Likewise.
26200
26201 2008-04-26  Eric Blake  <ebb9@byu.net>
26202         and Bruno Haible  <bruno@clisp.org>
26203
26204         Optimize and test memrchr.
26205         * modules/memrchr (Depends-on): Add intprops.
26206         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
26207         * modules/memrchr-tests: New file.
26208         * tests/test-memrchr.c: New file.
26209
26210 2008-04-26  Bruno Haible  <bruno@clisp.org>
26211
26212         Add tentative support for DragonFly BSD.
26213         * lib/stdio-impl.h: Add macros for DragonFly BSD.
26214         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
26215         fp.
26216         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
26217         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
26218         * lib/fpurge.c (fpurge): Likewise.
26219         * lib/freadable.c (freaadable): Likewise.
26220         * lib/freadahead.c (freadahead): Likewise.
26221         * lib/freading.c (freading): Likewise.
26222         * lib/freadptr.c (freadptr): Likewise.
26223         * lib/freadseek.c (freadptrinc): Likewise.
26224         * lib/fseeko.c (fseeko): Likewise.
26225         * lib/fseterr.c (fseterr): Likewise.
26226         * lib/fwritable.c (fwritable): Likewise.
26227         * lib/fwriting.c (fwriting): Likewise.
26228
26229 2008-04-26  Bruno Haible  <bruno@clisp.org>
26230
26231         * lib/stdio-impl.h: New file.
26232         * lib/fbufmode.c: Include stdio-impl.h.
26233         (fbufmode): Use fp_, remove redundant #defines.
26234         * lib/fflush.c: Include stdio-impl.h.
26235         (clear_ungetc_buffer): Remove redundant #defines.
26236         * lib/fpurge.c: Include stdio-impl.h.
26237         (fpurge): Remove redundant #defines.
26238         * lib/freadable.c: Include stdio-impl.h.
26239         (freadable): Remove redundant #defines.
26240         * lib/freadahead.c: Include stdio-impl.h.
26241         (freadahead): Remove redundant #defines.
26242         * lib/freading.c: Include stdio-impl.h.
26243         (freading): Remove redundant #defines.
26244         * lib/freadptr.c: Include stdio-impl.h.
26245         (freadptr): Remove redundant #defines.
26246         * lib/freadseek.c: Include stdio-impl.h.
26247         (freadptrinc): Remove redundant #defines.
26248         * lib/fseeko.c: Include stdio-impl.h.
26249         (rpl_fseeko): Remove redundant #defines.
26250         * lib/fseterr.c: Include stdio-impl.h.
26251         (fseterr): Remove redundant #defines.
26252         * lib/fwritable.c: Include stdio-impl.h.
26253         (fwritable: Remove redundant #defines.
26254         * lib/fwriting.c: Include stdio-impl.h.
26255         (fwriting): Remove redundant #defines.
26256         * modules/fbufmode (Files): Add lib/stdio-impl.h.
26257         * modules/fflush (Files): Likewise.
26258         * modules/fpurge (Files): Likewise.
26259         * modules/freadable (Files): Likewise.
26260         * modules/freadahead (Files): Likewise.
26261         * modules/freading (Files): Likewise.
26262         * modules/freadptr (Files): Likewise.
26263         * modules/freadseek (Files): Likewise.
26264         * modules/fseeko (Files): Likewise.
26265         * modules/fseterr (Files): Likewise.
26266         * modules/fwritable (Files): Likewise.
26267         * modules/fwriting (Files): Likewise.
26268
26269 2008-04-26  Bruno Haible  <bruno@clisp.org>
26270
26271         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
26272         restore_seek_optimization, update_fpos_cache): New functions, extracted
26273         from rpl_fflush.
26274         (rpl_fflush): Use them.
26275         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
26276         (gl_REPLACE_FFLUSH): Use it.
26277
26278 2008-04-26  Bruno Haible  <bruno@clisp.org>
26279
26280         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
26281         on Solaris.
26282         * tests/test-xstrtoimax.sh: Likewise.
26283         * tests/test-xstrtoumax.sh: Likewise.
26284         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
26285
26286 2008-04-26  Bruno Haible  <bruno@clisp.org>
26287
26288         * modules/memchr-tests: New file.
26289         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
26290
26291 2008-04-26  Eric Blake  <ebb9@byu.net>
26292             Bruno Haible  <bruno@clisp.org>
26293
26294         * lib/memchr.c: Include intprops.h.
26295         (__memchr): Optimize parallel detection of matching bytes. Rename local
26296         variables. Add explanatory comments.
26297
26298 2008-04-26  Bruno Haible  <bruno@clisp.org>
26299
26300         Fix module 'memchr', broken since 2000-10-28.
26301         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
26302
26303 2008-04-26  Bruno Haible  <bruno@clisp.org>
26304
26305         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
26306         comments.
26307
26308 2008-04-25  Eric Blake  <ebb9@byu.net>
26309
26310         Use native fstatat on cygwin 1.7.0.
26311         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
26312         first.
26313
26314 2008-04-23  Eric Blake  <ebb9@byu.net>
26315
26316         Improve memchr2 performance.
26317         * lib/memchr2.c (memchr2): Further optimize parallel detection of
26318         NUL bytes.
26319         * modules/memchr2 (Depends-on): Use intprops.h.
26320
26321 2008-04-23  Simon Josefsson  <simon@josefsson.org>
26322
26323         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
26324         an inline function instead of a CPP macro.  Patch by Ben Pfaff
26325         <blp@cs.stanford.edu>.
26326
26327 2008-04-23  Simon Josefsson  <simon@josefsson.org>
26328
26329         * lib/arpa_inet.in.h: New file.
26330
26331         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
26332         (Makefile.am): Sed in substitute header file.
26333
26334         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
26335         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
26336
26337         * modules/inet_ntop (configure.ac): Use
26338         gl_ARPA_INET_MODULE_INDICATOR.
26339
26340         * modules/inet_pton (configure.ac): Use
26341         gl_ARPA_INET_MODULE_INDICATOR.
26342
26343 2008-04-22  Jim Meyering  <meyering@redhat.com>
26344
26345         * modules/verify (License): Re-license as LGPLv2+.
26346
26347 2008-04-22  Simon Josefsson  <simon@josefsson.org>
26348
26349         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
26350         parameter to void* as per POSIX standard (MinGW uses char*).
26351
26352 2008-04-21  Bruno Haible  <bruno@clisp.org>
26353
26354         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
26355         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
26356         Define to replacements if REPLACE_ISWCNTRL is 1.
26357         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
26358         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
26359         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
26360         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
26361         what it fixes.
26362         * doc/posix-functions/iswalpha.texi: Likewise.
26363         * doc/posix-functions/iswblank.texi: Likewise.
26364         * doc/posix-functions/iswcntrl.texi: Likewise.
26365         * doc/posix-functions/iswdigit.texi: Likewise.
26366         * doc/posix-functions/iswgraph.texi: Likewise.
26367         * doc/posix-functions/iswlower.texi: Likewise.
26368         * doc/posix-functions/iswprint.texi: Likewise.
26369         * doc/posix-functions/iswpunct.texi: Likewise.
26370         * doc/posix-functions/iswspace.texi: Likewise.
26371         * doc/posix-functions/iswupper.texi: Likewise.
26372         * doc/posix-functions/iswxdigit.texi: Likewise.
26373         Reported by Alain Guibert.
26374
26375 2008-04-21  Bruno Haible  <bruno@clisp.org>
26376
26377         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
26378         Patch by Alain Guibert.
26379
26380 2008-04-21  Bruno Haible  <bruno@clisp.org>
26381
26382         Fix test failures on mingw.
26383         * tests/test-xstrtol.c (print_no_progname): New function.
26384         (main): Install it in error_print_progname hook.
26385         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
26386         * tests/test-xstrtoimax.sh: Likewise.
26387         * tests/test-xstrtoumax.sh: Likewise.
26388
26389 2008-04-21  Bruno Haible  <bruno@clisp.org>
26390
26391         Fix test failure on mingw.
26392         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
26393
26394 2008-04-21  Bruno Haible  <bruno@clisp.org>
26395
26396         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
26397         Actually assign a value.
26398
26399 2008-04-20  Bruno Haible  <bruno@clisp.org>
26400
26401         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
26402         take 2.
26403         * lib/canonicalize.c (canonicalize_file_name): Elide if the
26404         'canonicalize-lgpl' module is also used.
26405         * lib/canonicalize-lgpl.c: Undo last change.
26406         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
26407
26408 2008-04-20  Bruno Haible  <bruno@clisp.org>
26409
26410         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
26411         config.h. Provide _mkdir based fallback for mingw.
26412         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
26413         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
26414         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
26415         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
26416         rather than defining mkdir in config.h.
26417         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
26418         (gl_SYS_STAT_H_DEFAULTS): New macro.
26419         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
26420         HAVE_IO_H any more.
26421         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
26422         HAVE_DECL_MKDIR and HAVE_IO_H.
26423
26424 2008-04-20  Bruno Haible  <bruno@clisp.org>
26425
26426         * lib/isapipe.c: Port to native Windows platforms.
26427
26428 2008-04-20  Bruno Haible  <bruno@clisp.org>
26429
26430         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
26431
26432 2008-04-21  Eric Blake  <ebb9@byu.net>
26433
26434         Work around preprocessors that don't handle UINTMAX_MAX.
26435         * lib/memchr2.c (memchr2): Avoid embedded #if.
26436         Reported by Alain Guibert, fix suggested by Bruno Haible.
26437
26438 2008-04-21  Simon Josefsson  <simon@josefsson.org>
26439
26440         * doc/posix-functions/strftime.texi (strftime): Explain better
26441         Windows incompatibility.  Suggested by Micah Cowan
26442         <micah@cowan.name>.
26443
26444 2008-04-20  Bruno Haible  <bruno@clisp.org>
26445
26446         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
26447         unistr/u8-mblen.
26448
26449 2008-04-20  Bruno Haible  <bruno@clisp.org>
26450
26451         Fix test failure on platforms with non-GNU iconv.
26452         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
26453         (U_TO_U8): Use it, rather than u16_to_u8.
26454         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
26455         units at the end of the input string.
26456         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
26457
26458 2008-04-20  Bruno Haible  <bruno@clisp.org>
26459
26460         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
26461         when the resulting length is 0.
26462         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
26463
26464 2008-04-20  Bruno Haible  <bruno@clisp.org>
26465
26466         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
26467         works.
26468         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
26469
26470 2008-04-20  Bruno Haible  <bruno@clisp.org>
26471
26472         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
26473         * modules/tsearch-tests (configure.ac): Test for initstate function.
26474
26475 2008-04-20  Bruno Haible  <bruno@clisp.org>
26476
26477         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
26478         for nlink_t if missing.
26479         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
26480
26481 2008-04-19  Bruno Haible  <bruno@clisp.org>
26482
26483         Work around snprintf bug on Linux libc5.
26484         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
26485         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
26486         gl_SNPRINTF_SIZE1.
26487         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
26488         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
26489         that test failed.
26490         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
26491         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
26492         * modules/snprintf (Files): Add m4/printf.m4.
26493         * modules/vsnprintf (Files): Likewise.
26494         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
26495         * doc/posix-functions/vsnprintf.texi: Likewise.
26496
26497 2008-04-19  Bruno Haible  <bruno@clisp.org>
26498
26499         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
26500         from 0.0058 to less than 10^-7.
26501
26502 2008-04-19  Bruno Haible  <bruno@clisp.org>
26503
26504         Fix rounding when a precision is given.
26505         * lib/vasnprintf.c (is_borderline): New function.
26506         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
26507         9...9x.
26508         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
26509         %e, %g.
26510         * tests/test-vasprintf-posix.c (test_function): Likewise.
26511         * tests/test-snprintf-posix.h (test_function): Likewise.
26512         * tests/test-sprintf-posix.h (test_function): Likewise.
26513         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
26514         * tests/test-printf-posix.h (test_function): Likewise.
26515         * tests/test-printf-posix.output: Update.
26516         Reported by John Darrington <john@darrington.wattle.id.au> via
26517         Ben Pfaff <blp@cs.stanford.edu>.
26518
26519 2008-04-18  Simon Josefsson  <simon@josefsson.org>
26520
26521         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
26522         Suggested by Bruno Haible <bruno@clisp.org>.
26523
26524 2008-04-17  Bruno Haible  <bruno@clisp.org>
26525
26526         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
26527         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
26528         implementation.
26529         Patch by Bruce Merry <bmerry@gmail.com>.
26530
26531 2008-04-17  Simon Josefsson  <simon@josefsson.org>
26532
26533         * doc/posix-functions/strftime.texi (strftime): Mention that %e
26534         doesn't work under Windows.
26535
26536 2008-04-16  Bruno Haible  <bruno@clisp.org>
26537
26538         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
26539         New macros.
26540         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
26541         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
26542         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
26543         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
26544         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
26545         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
26546         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
26547         macros.
26548         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
26549         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
26550         Northern Sotho, Uighur.
26551
26552 2008-04-16  Bruno Haible  <bruno@clisp.org>
26553
26554         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
26555         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
26556         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
26557         Reported by Daniel Bergström <daniel@octocode.com>.
26558
26559 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
26560             Bruno Haible  <bruno@clisp.org>
26561
26562         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
26563         function.
26564         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
26565         New functions, mostly extracted from gl_locale_name_default.
26566         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
26567
26568 2008-04-16  Eric Blake  <ebb9@byu.net>
26569
26570         Adjust strtod detection to catch glibc 2.7 bug.
26571         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
26572         Reported by John Gatewood Ham.
26573
26574 2008-04-16  Bruno Haible  <bruno@clisp.org>
26575
26576         Add tentative support for Linux libc5.
26577         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
26578         * lib/fpurge.c (fpurge): Likewise.
26579         * lib/freadable.c (freadable): Likewise.
26580         * lib/freadahead.c (freadahead): Likewise.
26581         * lib/freading.c (freading): Likewise.
26582         * lib/freadptr.c (freadptr): Likewise.
26583         * lib/freadseek.c (freadptrinc): Likewise.
26584         * lib/fseeko.c (rpl_fseeko): Likewise.
26585         * lib/fseterr.c (fseterr): Likewise.
26586         * lib/fwritable.c (fwritable): Likewise.
26587         * lib/fwriting.c (fwriting): Likewise.
26588         Reported by Alain Guibert <alguibert+bts@free.fr>.
26589
26590 2008-04-15  Bruno Haible  <bruno@clisp.org>
26591
26592         * modules/mathl (configure.ac): Define module indicator.
26593
26594 2008-04-15  Bruno Haible  <bruno@clisp.org>
26595
26596         * lib/logl.c (logl): Remove unused variables.
26597
26598 2008-04-15  Bruno Haible  <bruno@clisp.org>
26599
26600         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
26601         fails.
26602
26603 2008-04-15  Bruno Haible  <bruno@clisp.org>
26604
26605         * lib/trim.c (trim2): Fix argument of isspace() macro.
26606
26607 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
26608
26609         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
26610         to 0.
26611         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
26612
26613 2008-04-14  Bruno Haible  <bruno@clisp.org>
26614
26615         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
26616         AC_LANG_PROGRAM argument.
26617         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
26618         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
26619         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
26620         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
26621         * m4/math_h.m4 (gl_MATH_H): Likewise.
26622         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
26623         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
26624         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
26625         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
26626         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
26627         * m4/regex.m4 (gl_REGEX): Likewise.
26628         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
26629         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
26630         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
26631         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
26632         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
26633         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
26634         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
26635         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
26636
26637 2008-04-14  Jim Meyering  <meyering@redhat.com>
26638
26639         test-strtod: fix typos: s/abs/fabs/
26640         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
26641
26642 2008-04-13  Bruno Haible  <bruno@clisp.org>
26643
26644         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
26645         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
26646         module is also used and while not building the reloc-wrapper.
26647
26648 2008-04-13  Bruno Haible  <bruno@clisp.org>
26649
26650         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
26651
26652 2008-04-13  Bruno Haible  <bruno@clisp.org>
26653
26654         Fix AIX compilation failure introduced on 2008-04-02.
26655         * tests/test-frexp.c (exp): Undefine before redefining.
26656         * tests/test-frexpl.c (exp): Likewise.
26657
26658 2008-04-13  Bruno Haible  <bruno@clisp.org>
26659
26660         Work around a HP-UX stdio bug.
26661         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
26662         * tests/test-ftello.c (main): Likewise.
26663         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
26664         * doc/posix-functions/ftello.texi: Likewise.
26665
26666 2008-04-13  Bruno Haible  <bruno@clisp.org>
26667
26668         Make test-signbit pass on HP-UX/hppa.
26669         * tests/test-signbit.c (minus_zerol): New variable.
26670         (test_signbitl): Use it.
26671
26672 2008-04-13  Bruno Haible  <bruno@clisp.org>
26673
26674         Make truncl work on OSF/1 4.0.
26675         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
26676         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
26677         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
26678         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
26679         HAVE_DECL_TRUNCL.
26680         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
26681         HAVE_DECL_TRUNCL.
26682         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
26683
26684 2008-04-13  Bruno Haible  <bruno@clisp.org>
26685
26686         * lib/unictype.h: Remove trailing comma from enumeration definitions.
26687
26688 2008-04-13  Bruno Haible  <bruno@clisp.org>
26689
26690         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
26691         expression, so as to avoid HP-UX 11 cc compiler bug.
26692
26693 2008-04-13  Bruno Haible  <bruno@clisp.org>
26694
26695         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
26696
26697 2008-04-13  Bruno Haible  <bruno@clisp.org>
26698
26699         * lib/git-merge-changelog.c: Remove empty declaration outside of
26700         functions.
26701
26702 2008-04-13  Bruno Haible  <bruno@clisp.org>
26703
26704         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
26705
26706 2008-04-13  Bruno Haible  <bruno@clisp.org>
26707
26708         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
26709         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
26710         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
26711         also if it exists but lacks definitions of the SHUT_* macros.
26712         * modules/sys_socket (Description): Update.
26713         Reported by Elbert Pol <e.pol@chello.nl>.
26714
26715 2008-04-13  Bruno Haible  <bruno@clisp.org>
26716
26717         * lib/localcharset.c (OS2): Don't redefine if already defined.
26718         Reported by Elbert Pol <e.pol@chello.nl>.
26719
26720 2008-04-13  Bruno Haible  <bruno@clisp.org>
26721
26722         * lib/binary-io.h [__EMX__]: Include <io.h>.
26723         Reported by Elbert Pol <e.pol@chello.nl>.
26724
26725 2008-04-12  Bruno Haible  <bruno@clisp.org>
26726
26727         * lib/fpucw.h: Enable the definitions also for x86_64.
26728         Needed for NetBSD/x86_64.
26729         Reported by Thomas Klausner <tk@giga.or.at>.
26730
26731 2008-04-12  Bruno Haible  <bruno@clisp.org>
26732
26733         * tests/test-strtod.c: Include isnand.h.
26734         (main): Use isnand instead of isnan.
26735         Reported by Jim Meyering.
26736
26737 2008-04-12  Bruno Haible  <bruno@clisp.org>
26738
26739         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
26740         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
26741
26742 2008-04-12  Jim Meyering  <meyering@redhat.com>
26743
26744         * m4/math_h.m4 (gl_MATH_H): Fix typos.
26745
26746 2008-04-12  Bruno Haible  <bruno@clisp.org>
26747
26748         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
26749         Reported by Elbert Pol <e.pol@chello.nl>.
26750
26751 2008-04-12  Eric Blake  <ebb9@byu.net>
26752
26753         Work around Solaris 10 math.h bug.
26754         * m4/math_h.m4 (gl_MATH_H): Check for bug.
26755         (gl_MATH_H_DEFAULTS): Set up default.
26756         * modules/math (Makefile.am): Replace new indicators.
26757         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
26758         * tests/test-math.c (main): Test this.
26759         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
26760         * doc/posix-headers/math.texi (math.h): Mention bug.
26761         Reported by Nelson H. F. Beebe and Jim Meyering.
26762
26763 2008-04-11  Bruno Haible  <bruno@clisp.org>
26764
26765         Adapt to future versions of Apple GCC.
26766         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
26767         Reported by Peter O'Gorman <peter@pogma.com>.
26768
26769 2008-04-11  Bruno Haible  <bruno@clisp.org>
26770
26771         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
26772
26773 2008-04-11  Bruno Haible  <bruno@clisp.org>
26774
26775         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
26776
26777         * modules/getaddrinfo-tests (Makefile.am): Define
26778         test_getaddrinfo_LDADD.
26779
26780 2008-04-11  Bruno Haible  <bruno@clisp.org>
26781
26782         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
26783         (init): Fix syntax error.
26784         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
26785         is declared.
26786
26787 2008-04-11  Bruno Haible  <bruno@clisp.org>
26788
26789         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
26790         * modules/glob (Depends-on): Add stdbool.
26791
26792 2008-04-11  Bruno Haible  <bruno@clisp.org>
26793
26794         * lib/trim.c: Include <string.h>.
26795
26796 2008-04-11  Eric Blake  <ebb9@byu.net>
26797
26798         Avoid compile failure on OS/2.
26799         * lib/regex_internal.h (internal_function): Disable optimization
26800         on OS/2 (__EMX__), where it caused compiler error.
26801         Reported by Elbert Pol.
26802
26803 2008-04-11  Bruno Haible  <bruno@clisp.org>
26804
26805         Flush the standard error stream before aborting. Needed on mingw.
26806         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
26807         * tests/test-array_list.c (ASSERT): Likewise.
26808         * tests/test-array_oset.c (ASSERT): Likewise.
26809         * tests/test-avltree_list.c (ASSERT): Likewise.
26810         * tests/test-avltree_oset.c (ASSERT): Likewise.
26811         * tests/test-avltreehash_list.c (ASSERT): Likewise.
26812         * tests/test-binary-io.c (ASSERT): Likewise.
26813         * tests/test-byteswap.c (ASSERT): Likewise.
26814         * tests/test-c-ctype.c (ASSERT): Likewise.
26815         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
26816         * tests/test-c-strcasestr.c (ASSERT): Likewise.
26817         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
26818         * tests/test-c-strstr.c (ASSERT): Likewise.
26819         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
26820         * tests/test-canonicalize.c (ASSERT): Likewise.
26821         * tests/test-carray_list.c (ASSERT): Likewise.
26822         * tests/test-ceilf1.c (ASSERT): Likewise.
26823         * tests/test-ceilf2.c (ASSERT): Likewise.
26824         * tests/test-ceill.c (ASSERT): Likewise.
26825         * tests/test-count-one-bits.c (ASSERT): Likewise.
26826         * tests/test-fbufmode.c (ASSERT): Likewise.
26827         * tests/test-fflush2.c (ASSERT): Likewise.
26828         * tests/test-floorf1.c (ASSERT): Likewise.
26829         * tests/test-floorf2.c (ASSERT): Likewise.
26830         * tests/test-floorl.c (ASSERT): Likewise.
26831         * tests/test-fopen.c (ASSERT): Likewise.
26832         * tests/test-fpending.c (ASSERT): Likewise.
26833         * tests/test-fprintf-posix.c (ASSERT): Likewise.
26834         * tests/test-fpurge.c (ASSERT): Likewise.
26835         * tests/test-freadable.c (ASSERT): Likewise.
26836         * tests/test-freadahead.c (ASSERT): Likewise.
26837         * tests/test-freading.c (ASSERT): Likewise.
26838         * tests/test-freadptr.c (ASSERT): Likewise.
26839         * tests/test-freadptr2.c (ASSERT): Likewise.
26840         * tests/test-freadseek.c (ASSERT): Likewise.
26841         * tests/test-freopen.c (ASSERT): Likewise.
26842         * tests/test-frexp.c (ASSERT): Likewise.
26843         * tests/test-frexpl.c (ASSERT): Likewise.
26844         * tests/test-fseek.c (ASSERT): Likewise.
26845         * tests/test-fseeko.c (ASSERT): Likewise.
26846         * tests/test-fstrcmp.c (ASSERT): Likewise.
26847         * tests/test-ftell.c (ASSERT): Likewise.
26848         * tests/test-ftello.c (ASSERT): Likewise.
26849         * tests/test-func.c (ASSERT): Likewise.
26850         * tests/test-fwritable.c (ASSERT): Likewise.
26851         * tests/test-fwriting.c (ASSERT): Likewise.
26852         * tests/test-getdelim.c (ASSERT): Likewise.
26853         * tests/test-getline.c (ASSERT): Likewise.
26854         * tests/test-i-ring.c (ASSERT): Likewise.
26855         * tests/test-iconv-utf.c (ASSERT): Likewise.
26856         * tests/test-iconv.c (ASSERT): Likewise.
26857         * tests/test-isfinite.c (ASSERT): Likewise.
26858         * tests/test-isnand.c (ASSERT): Likewise.
26859         * tests/test-isnanf.c (ASSERT): Likewise.
26860         * tests/test-isnanl.h (ASSERT): Likewise.
26861         * tests/test-ldexpl.c (ASSERT): Likewise.
26862         * tests/test-linked_list.c (ASSERT): Likewise.
26863         * tests/test-linkedhash_list.c (ASSERT): Likewise.
26864         * tests/test-localename.c (ASSERT): Likewise.
26865         * tests/test-lseek.c (ASSERT): Likewise.
26866         * tests/test-mbscasecmp.c (ASSERT): Likewise.
26867         * tests/test-mbscasestr1.c (ASSERT): Likewise.
26868         * tests/test-mbscasestr2.c (ASSERT): Likewise.
26869         * tests/test-mbscasestr3.c (ASSERT): Likewise.
26870         * tests/test-mbscasestr4.c (ASSERT): Likewise.
26871         * tests/test-mbschr.c (ASSERT): Likewise.
26872         * tests/test-mbscspn.c (ASSERT): Likewise.
26873         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
26874         * tests/test-mbspbrk.c (ASSERT): Likewise.
26875         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
26876         * tests/test-mbsrchr.c (ASSERT): Likewise.
26877         * tests/test-mbsspn.c (ASSERT): Likewise.
26878         * tests/test-mbsstr1.c (ASSERT): Likewise.
26879         * tests/test-mbsstr2.c (ASSERT): Likewise.
26880         * tests/test-mbsstr3.c (ASSERT): Likewise.
26881         * tests/test-memchr2.c (ASSERT): Likewise.
26882         * tests/test-memmem.c (ASSERT): Likewise.
26883         * tests/test-open.c (ASSERT): Likewise.
26884         * tests/test-printf-frexp.c (ASSERT): Likewise.
26885         * tests/test-printf-frexpl.c (ASSERT): Likewise.
26886         * tests/test-printf-posix.c (ASSERT): Likewise.
26887         * tests/test-quotearg.c (ASSERT): Likewise.
26888         * tests/test-rbtree_list.c (ASSERT): Likewise.
26889         * tests/test-rbtree_oset.c (ASSERT): Likewise.
26890         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
26891         * tests/test-round1.c (ASSERT): Likewise.
26892         * tests/test-roundf1.c (ASSERT): Likewise.
26893         * tests/test-roundl.c (ASSERT): Likewise.
26894         * tests/test-signbit.c (ASSERT): Likewise.
26895         * tests/test-sleep.c (ASSERT): Likewise.
26896         * tests/test-snprintf-posix.c (ASSERT): Likewise.
26897         * tests/test-snprintf.c (ASSERT): Likewise.
26898         * tests/test-sprintf-posix.c (ASSERT): Likewise.
26899         * tests/test-stat-time.c (ASSERT): Likewise.
26900         * tests/test-strcasestr.c (ASSERT): Likewise.
26901         * tests/test-strerror.c (ASSERT): Likewise.
26902         * tests/test-striconv.c (ASSERT): Likewise.
26903         * tests/test-striconveh.c (ASSERT): Likewise.
26904         * tests/test-striconveha.c (ASSERT): Likewise.
26905         * tests/test-strsignal.c (ASSERT): Likewise.
26906         * tests/test-strstr.c (ASSERT): Likewise.
26907         * tests/test-strtod.c (ASSERT): Likewise.
26908         * tests/test-trunc1.c (ASSERT): Likewise.
26909         * tests/test-trunc2.c (ASSERT): Likewise.
26910         * tests/test-truncf1.c (ASSERT): Likewise.
26911         * tests/test-truncf2.c (ASSERT): Likewise.
26912         * tests/test-truncl.c (ASSERT): Likewise.
26913         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
26914         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
26915         * tests/test-vasnprintf.c (ASSERT): Likewise.
26916         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
26917         * tests/test-vasprintf.c (ASSERT): Likewise.
26918         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
26919         * tests/test-vprintf-posix.c (ASSERT): Likewise.
26920         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
26921         * tests/test-vsnprintf.c (ASSERT): Likewise.
26922         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
26923         * tests/test-wcwidth.c (ASSERT): Likewise.
26924         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
26925         * tests/test-xprintf-posix.c (ASSERT): Likewise.
26926         * tests/test-xvasprintf.c (ASSERT): Likewise.
26927         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
26928         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
26929         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
26930         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
26931         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
26932         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
26933         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
26934         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
26935         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
26936         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
26937         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
26938         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
26939         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
26940         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
26941         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
26942         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
26943         * tests/unictype/test-block_list.c (ASSERT): Likewise.
26944         * tests/unictype/test-block_of.c (ASSERT): Likewise.
26945         * tests/unictype/test-block_test.c (ASSERT): Likewise.
26946         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
26947         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
26948         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
26949         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
26950         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
26951         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
26952         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
26953         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
26954         * tests/unictype/test-combining.c (ASSERT): Likewise.
26955         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
26956         * tests/unictype/test-digit.c (ASSERT): Likewise.
26957         * tests/unictype/test-mirror.c (ASSERT): Likewise.
26958         * tests/unictype/test-numeric.c (ASSERT): Likewise.
26959         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
26960         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
26961         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
26962         * tests/unictype/test-scripts.c (ASSERT): Likewise.
26963         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
26964         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
26965         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
26966         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
26967         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
26968         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
26969         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
26970         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
26971         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
26972         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
26973         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
26974         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
26975         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
26976         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
26977         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
26978         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
26979         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
26980         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
26981         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
26982         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
26983         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
26984         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
26985         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
26986         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
26987         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
26988         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
26989         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
26990         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
26991         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
26992         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
26993         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
26994         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
26995         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
26996         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
26997         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
26998         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
26999         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
27000         Reported by Eric Blake.
27001
27002 2008-04-11  Bruno Haible  <bruno@clisp.org>
27003
27004         * lib/wchar.in.h: Tweak comment.
27005
27006 2008-04-11  Bruno Haible  <bruno@clisp.org>
27007
27008         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
27009         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
27010         gl_COMMON.
27011         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
27012
27013 2008-04-11  Bruno Haible  <bruno@clisp.org>
27014
27015         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
27016
27017 2008-04-11  Simon Josefsson  <simon@josefsson.org>
27018
27019         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
27020         of attempting to use non-existing /dev/*random.  Based on patch
27021         from Adam Strzelecki <ono@java.pl> in
27022         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
27023
27024 2008-04-08  Bruno Haible  <bruno@clisp.org>
27025
27026         Add tentative support for emx+gcc.
27027         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
27028         * lib/fpurge.c (fpurge): Likewise.
27029         * lib/freadable.c (freadable): Likewise.
27030         * lib/freadahead.c (freadahead): Likewise.
27031         * lib/freading.c (freading): Likewise.
27032         * lib/freadptr.c (freadptr): Likewise.
27033         * lib/freadseek.c (freadptrinc): Likewise.
27034         * lib/fseeko.c (rpl_fseeko): Likewise.
27035         * lib/fseterr.c (fseterr): Likewise.
27036         * lib/fwritable.c (fwritable): Likewise.
27037         * lib/fwriting.c (fwriting): Likewise.
27038         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
27039
27040 2008-04-09  Eric Blake  <ebb9@byu.net>
27041
27042         Avoid some autoconf warnings.
27043         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
27044         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
27045         * m4/afs.m4 (gl_AFS): Likewise.
27046         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
27047         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
27048         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
27049         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
27050         (gl_INTEGER_TYPE_SUFFIX): Likewise.
27051         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
27052         (AC_CHECK_DECLS_ONCE): Likewise.
27053         Rename file...
27054         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
27055         gnulib-tool requires autoconf 2.59 or better.
27056         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
27057
27058 2008-04-08  Eric Blake  <ebb9@byu.net>
27059
27060         Use 'git describe --match' if present (added in git 1.5.5).
27061         * build-aux/git-version-gen: Limit result to tags that match 'v*'
27062         if possible.
27063
27064 2008-04-08  Bruno Haible  <bruno@clisp.org>
27065
27066         Add tentative support for OpenServer.
27067         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
27068         _ptr, _cnt.
27069         * lib/fpurge.c (fpurge): Likewise.
27070         * lib/freadable.c (freadable): Likewise.
27071         * lib/freadahead.c (freadahead): Likewise.
27072         * lib/freading.c (freading): Likewise.
27073         * lib/freadptr.c (freadptr): Likewise.
27074         * lib/freadseek.c (freadptrinc): Likewise.
27075         * lib/fseeko.c (rpl_fseeko): Likewise.
27076         * lib/fseterr.c (fseterr): Likewise.
27077         * lib/fwritable.c (fwritable): Likewise.
27078         * lib/fwriting.c (fwriting): Likewise.
27079         Reported by Roger Cornelius <rac@tenzing.org> and
27080         Brian K. White <brian@aljex.com>.
27081
27082 2008-04-06  Jim Meyering  <meyering@redhat.com>
27083
27084         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
27085
27086 2008-04-06  Bruno Haible  <bruno@clisp.org>
27087
27088         Avoid possible error with non-ASCII bytes in UTF-8 locales.
27089         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
27090         * tests/test-printf-posix.sh: Likewise.
27091         * tests/test-vfprintf-posix.sh: Likewise.
27092         * tests/test-vprintf-posix.sh: Likewise.
27093         * tests/test-xprintf-posix.sh: Likewise.
27094
27095 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27096
27097         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
27098         hide error from 'ls', needed on OS/2.
27099         Report by Elbert Pol <elbert.pol@gmail.com>.
27100
27101 2008-04-04  Eric Blake  <ebb9@byu.net>
27102
27103         Make test-fseeko.c failures meaningful.
27104         * tests/test-fseeko.c: Print line number on failure.
27105         * tests/test-fseek.c: Likewise.
27106         Reported by Nelson H. F. Beebe.
27107
27108         Improve strtod bug detection check.
27109         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
27110         required for Solaris 10.
27111         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
27112
27113 2008-04-04  Bruno Haible  <bruno@clisp.org>
27114
27115         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
27116         by m4/setenv.m4.
27117
27118 2008-04-03  Eric Blake  <ebb9@byu.net>
27119
27120         Ensure sane .version contents.
27121         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
27122         version string.
27123         * build-aux/git-version-gen: Improve documentation.
27124
27125         Make GNU make output nicer.
27126         * top/GNUmakefile [!_have-Makefile]: Add dependency on
27127         MAKECMDGOALS to enforce message for all command line targets.  Set
27128         srcdir for use in maint.mk.
27129
27130         Another maintainer tweak.
27131         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
27132         a target that regenerates version.
27133
27134 2008-04-03  Jim Meyering  <meyering@redhat.com>
27135
27136         vc-list-files: don't cause coreutils "make po-check" failure
27137         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
27138
27139 2008-04-03  Eric Blake  <ebb9@byu.net>
27140
27141         Allow VPATH usage of vc-list-files.
27142         * build-aux/vc-list-files (scriptversion): Add timestamp.
27143         (options): Add --help, --version, -C.
27144         (CVS): Support installed cvsu.
27145
27146 2008-04-02  Bruno Haible  <bruno@clisp.org>
27147
27148         Avoid some "statement with no effect" warnings from gcc.
27149         * tests/test-wctype.c (main): Explicitly ignore unused values.
27150         Reported by Jim Meyering.
27151
27152 2008-04-02  Jim Meyering  <meyering@redhat.com>
27153
27154         Avoid some warnings from "gcc -Wshadow".
27155         * tests/test-frexp.c (exp): Define to a different identifier.
27156         * tests/test-frexpl.c (exp): Likewise.
27157
27158 2008-04-03  Jim Meyering  <meyering@redhat.com>
27159
27160         bootstrap: remove dangling *.[ch] symlinks from lib
27161         * build-aux/bootstrap [dangling symlink removal]: Move find's
27162         -depth option to precede all others, to avoid a warning.
27163         Remove *.[ch] files too, and from "$source_base" (usually lib/).
27164
27165 2008-04-02  Bruno Haible  <bruno@clisp.org>
27166
27167         Avoid some warnings from "gcc -Wshadow".
27168         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
27169         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
27170         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
27171         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
27172         Reported by Jim Meyering.
27173
27174 2008-04-01  Bruno Haible  <bruno@clisp.org>
27175
27176         Fix test to work on IRIX 6.5 with cc.
27177         * tests/test-math.c (numeric_equal): New function.
27178         (main): Use it.
27179
27180 2008-04-01  Bruno Haible  <bruno@clisp.org>
27181
27182         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
27183
27184 2008-04-01  Bruno Haible  <bruno@clisp.org>
27185
27186         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
27187         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
27188         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
27189         (Depends-on): Remove math.
27190
27191         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
27192         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
27193         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
27194         (Depends-on): Remove math.
27195
27196         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
27197         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
27198         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
27199         (Depends-on): Remove math.
27200         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
27201         (Depends-on): Remove math.
27202
27203         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
27204         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
27205         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
27206         (Depends-on): Remove math.
27207         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
27208         (Depends-on): Remove math.
27209
27210         * tests/test-round1.c: Include nan.h.
27211         (main): Use NaNd instead of NAN.
27212         * modules/round-tests (Files): Add tests/nan.h.
27213
27214         * tests/test-trunc1.c: Include nan.h.
27215         (main): Use NaNd instead of NAN.
27216         * modules/trunc-tests (Files): Add tests/nan.h.
27217
27218         * tests/test-roundf1.c: Include nan.h.
27219         (main): Use NaNf instead of NAN.
27220         * modules/roundf-tests (Files): Add tests/nan.h.
27221
27222         * tests/test-truncf1.c: Include nan.h.
27223         (main): Use NaNf instead of NAN.
27224         * modules/truncf-tests (Files): Add tests/nan.h.
27225
27226         * tests/test-ceilf1.c: Include nan.h.
27227         (main): Use NaNf instead of NAN.
27228         * modules/ceilf-tests (Files): Add tests/nan.h.
27229
27230         * tests/test-floorf1.c: Include nan.h.
27231         (main): Use NaNf instead of NAN.
27232         * modules/floorf-tests (Files): Add tests/nan.h.
27233
27234         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
27235         (main): Use NaNf instead of NAN.
27236         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
27237
27238         * tests/test-isnand.c: Include nan.h instead of <math.h>.
27239         (main): Use NaNd instead of NAN.
27240         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
27241
27242         * tests/test-frexp.c: Include nan.h.
27243         (main): Use NaNd instead of NAN.
27244         * modules/frexp-tests (Files): Add tests/nan.h.
27245
27246         * lib/isnan.c: Don't include <math.h>.
27247         (FUNC): Don't use NAN macro.
27248         * modules/isnand-nolibm (Depends-on): Remove math.
27249         * modules/isnanf-nolibm (Depends-on): Remove math.
27250         * modules/isnanl (Depends-on): Remove math.
27251         * modules/isnanl-nolibm (Depends-on): Remove math.
27252
27253         * tests/nan.h: New file.
27254
27255 2008-04-01  Eric Blake  <ebb9@byu.net>
27256
27257         Fix typos.
27258         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
27259         values to be the right type.
27260
27261         For now, cater to gnulib strtod inaccuracies.
27262         * tests/test-strtod.c (main): Allow 1-ulp error on expected
27263         fractional results.  While not as nice from a QoI perspective, it
27264         is a quicker patch than correctly implementing decimal to binary
27265         rounding.
27266
27267 2008-03-31  Eric Blake  <ebb9@byu.net>
27268
27269         Guarantee a definition of NAN.
27270         * lib/math.in.h (NAN): Define if missing.
27271         * tests/test-math.c (main): Test it.
27272         * doc/posix-headers/math.texi (math.h): Document this.
27273         * lib/isnan.c (rpl_isnand): Use it.
27274         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
27275         * tests/test-floorf1.c (NaN): Likewise.
27276         * tests/test-frexp.c (NaN): Likewise.
27277         * tests/test-isnand.c (NaN): Likewise.
27278         * tests/test-isnanf.c (NaN): Likewise.
27279         * tests/test-round1.c (NaN): Likewise.
27280         * tests/test-roundf1.c (NaN): Likewise.
27281         * tests/test-snprintf-posix.h (NaN): Likewise.
27282         * tests/test-sprintf-posix.h (NaN): Likewise.
27283         * tests/test-trunc1.c (NaN): Likewise.
27284         * tests/test-truncf1.c (NaN): Likewise.
27285         * tests/test-vasnprintf-posix.c (NaN): Likewise.
27286         * tests/test-vasprintf-posix.c (NaN): Likewise.
27287         * modules/isnand-nolibm (Depends-on): Add math.
27288         * modules/isnanf-nolibm (Depends-on): Likewise.
27289         * modules/isnanl (Depends-on): Likewise.
27290         * modules/isnanl-nolibm (Depends-on): Likewise.
27291         * modules/snprintf-posix-tests (Depends-on): Likewise.
27292         * modules/sprintf-posix-tests (Depends-on): Likewise.
27293         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
27294         * modules/vsprintf-posix-tests (Depends-on): Likewise.
27295         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
27296         * modules/vasprintf-posix-tests (Depends-on): Likewise.
27297
27298 2008-03-31  Bruno Haible  <bruno@clisp.org>
27299
27300         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
27301         * doc/posix-functions/strtod.texi: Likewise.
27302
27303 2008-03-31  Bruno Haible  <bruno@clisp.org>
27304
27305         * tests/test-strtod.c (main): Don't use C99 syntax.
27306
27307 2008-03-31  Bruno Haible  <bruno@clisp.org>
27308
27309         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
27310         Reported by Eric Blake.
27311
27312 2008-03-31  Jim Meyering  <meyering@redhat.com>
27313
27314         Don't compare actual signbit return values.
27315         * tests/test-strtod.c (main): Rather, compare only their
27316         zero/non-zero nature.
27317
27318 2008-03-31  Eric Blake  <ebb9@byu.net>
27319
27320         More strtod documentation.
27321         * doc/posix-functions/strtod.texi (strtod): Interpret more test
27322         failures as distinct bugs.
27323
27324 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
27325
27326         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
27327         Problem reported by Erik Benada in
27328         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
27329
27330 2008-03-30  Bruno Haible  <bruno@clisp.org>
27331
27332         * tests/test-strtod.c: Add comments about which assertion fails on which
27333         platform.
27334         * doc/posix-functions/strtod.texi: Add info about many more platforms.
27335
27336 2008-03-30  Eric Blake  <ebb9@byu.net>
27337
27338         Test signbit behavior on zeros.
27339         * tests/test-signbit.c (test_signbitf): Add tests for zero.
27340         (test_signbitd, test_signbitl): Likewise.
27341
27342         More strtod touchups.
27343         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
27344         sign of negative underflow, for now.  Use .5, not .1.
27345         * doc/posix-functions/strtod.texi (strtod): Mention these
27346         limitations.
27347         Reported by Jim Meyering.
27348
27349 2008-03-30  Bruno Haible  <bruno@clisp.org>
27350
27351         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
27352         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
27353
27354 2008-03-30  Bruno Haible  <bruno@clisp.org>
27355
27356         Avoid failure when attempting to return empty iconv results on some
27357         platforms.
27358         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
27359         allocation, don't report ENOMEM when the resulting string is empty.
27360
27361 2008-03-30  Bruno Haible  <bruno@clisp.org>
27362
27363         Fix buffer overrun.
27364         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
27365         Don't consider the width for tmp_length. Check count against tmp_length
27366         before doing the padding. Ensure enough allocation during padding.
27367
27368 2008-03-30  Eric Blake  <ebb9@byu.net>
27369
27370         strtod touchups.
27371         * lib/strtod.c (strtod): Avoid compiler warnings.
27372         Reported by Jim Meyering.
27373
27374 2008-03-30  Bruno Haible  <bruno@clisp.org>
27375
27376         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
27377         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
27378         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
27379         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
27380         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
27381         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
27382         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
27383         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
27384
27385         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
27386         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
27387         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
27388         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
27389         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
27390         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
27391         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
27392         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
27393
27394         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
27395         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
27396         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
27397         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
27398         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
27399         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
27400         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
27401         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
27402
27403         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
27404         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
27405
27406         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
27407         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
27408
27409         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
27410         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
27411
27412         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
27413         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
27414         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
27415
27416         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
27417         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
27418         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
27419
27420         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
27421         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
27422         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
27423
27424         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
27425         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
27426         * modules/vasprintf (Depends-on): Add EOVERFLOW.
27427
27428         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
27429         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
27430         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
27431         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
27432         (Depends-on): Add EOVERFLOW.
27433         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
27434         (Depends-on): Add EOVERFLOW.
27435         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
27436         (Depends-on): Add EOVERFLOW.
27437         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
27438         (Depends-on): Add EOVERFLOW.
27439         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
27440         (Depends-on): Add EOVERFLOW.
27441         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
27442         (Depends-on): Add EOVERFLOW.
27443         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
27444         (Depends-on): Add EOVERFLOW.
27445         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
27446         (Depends-on): Add EOVERFLOW.
27447
27448         * lib/sprintf.c (EOVERFLOW): Remove fallback.
27449         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
27450         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
27451
27452         * lib/snprintf.c (EOVERFLOW): Remove fallback.
27453         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
27454         * modules/snprintf (Depends-on): Add EOVERFLOW.
27455
27456         * lib/poll.c (EOVERFLOW): Remove fallback.
27457         * modules/poll (Depends-on): Add EOVERFLOW.
27458
27459         * lib/getugroups.c (EOVERFLOW): Remove fallback.
27460         * modules/getugroups (Depends-on): Add EOVERFLOW.
27461
27462         * lib/getdelim.c (EOVERFLOW): Remove fallback.
27463         * modules/getdelim (Depends-on): Add EOVERFLOW.
27464
27465         * lib/ftell.c (EOVERFLOW): Remove fallback.
27466         * modules/ftell (Depends-on): Add EOVERFLOW.
27467
27468         * lib/fprintf.c (EOVERFLOW): Remove fallback.
27469         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
27470         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
27471
27472         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
27473
27474         * modules/EOVERFLOW-tests: New file.
27475         * tests/test-EOVERFLOW.c: New file.
27476
27477         * modules/EOVERFLOW: New file.
27478         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
27479
27480 2008-03-30  Bruno Haible  <bruno@clisp.org>
27481
27482         Fix bug introduced on 2007-06-10.
27483         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
27484         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
27485
27486 2008-03-30  Bruno Haible  <bruno@clisp.org>
27487
27488         Improve freadseek's efficiency after ungetc.
27489         * lib/freadseek.c: Include freadahead.h.
27490         (freadptrinc): New function, extracted from freadseek.
27491         (freadseek): Use it in a loop. Use freadahead to determine the number
27492         of loop iterations.
27493         * modules/freadseek (Depends-on): Add freadahead.
27494         (configure.ac): Require AC_C_INLINE.
27495
27496 2008-03-30  Bruno Haible  <bruno@clisp.org>
27497
27498         * lib/freadseek.c (freadseek): Don't ignore the return value of
27499         freadptr.
27500
27501 2008-03-29  Eric Blake  <ebb9@byu.net>
27502
27503         Add hex float support.
27504         * modules/strtod (Depends-on): Add c-ctype.
27505         (Link): Mention POW_LIB.
27506         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
27507         whitespace between 'e' and exponent.
27508         * tests/test-strtod.c (main): Enable hex float tests.
27509         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
27510         now provides.
27511
27512         Document various strtod bugs, with some fixes.
27513         * doc/posix-functions/strtod.texi (strtod): Document bugs with
27514         "-0x", "inf", "nan", and hex constants.
27515         * doc/posix-functions/atof.texi (atof): Likewise.
27516         * modules/stdlib (Makefile.am): Support strtod.
27517         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
27518         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
27519         detect additional strtod bugs.
27520         * lib/stdlib.in.h (rpl_strtod): Add declarations.
27521         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
27522         bool where appropriate.  Parse 'inf' and 'nan'.
27523         * tests/test-strtod.c: New file.
27524         * modules/strtod (Depends-on): Add stdbool, stdlib.
27525         (configure.ac): Turn on module indicator.
27526         * modules/strtod-tests: New module.
27527
27528 2008-03-29  Eric Blake  <ebb9@byu.net>
27529
27530         Fix ftell on mingw.
27531         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
27532         * modules/ftell-tests (Depends-on): Add binary-io.
27533         * modules/ftello-tests (Depends-on): Likewise.
27534         * tests/test-ftell.c (main): Enhance test to cover behavior after
27535         ungetc.  Enforce binary mode.
27536         * tests/test-ftello.c (main): Likewise.
27537
27538         Pass test-freadseek on cygwin.
27539         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
27540         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
27541         ungetc buffer.
27542
27543         * tests/test-fflush2.c (main): Fix typo.
27544
27545 2008-03-29  Bruno Haible  <bruno@clisp.org>
27546
27547         * tests/test-fflush2.c (main): Temporarily disable the contents of
27548         this test.
27549         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
27550         Reported by Eric Blake.
27551
27552 2008-03-28  Simon Josefsson  <simon@josefsson.org>
27553
27554         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
27555         (GC_SHA224_DIGEST_SIZE): Add.
27556
27557         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
27558         (gc_hash_digest_length): Likewise.
27559         (gc_hash_buffer): Likewise.
27560
27561 2008-03-25  Bruno Haible  <bruno@clisp.org>
27562
27563         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
27564         detail which gettext release to use.
27565         Reported by Simon Josefsson.
27566
27567 2008-03-26  Jim Meyering  <meyering@redhat.com>
27568
27569         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
27570         * modules/gnumakefile (clean-GNUmakefile): Also, use
27571         test ... && ... || : syntax rather than if-then ... fi.
27572
27573         gnumakefile: Don't double-quote-expand $(VPATH) value.
27574         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
27575
27576 2008-03-24  Eric Blake  <ebb9@byu.net>
27577
27578         Alter GNUmakefile to install into top directory.
27579         * modules/maintainer-makefile: Split, and add dependency...
27580         * modules/gnumakefile: to this new module.
27581         * build-aux/GNUmakefile: Move...
27582         * top/GNUmakefile: ...here.
27583         * build-aux/maint.mk: Move...
27584         * top/maint.mk: ...here.
27585         * MODULES.html.sh (Support for maintaining...): Document new
27586         module.
27587
27588 2008-03-23  Bruno Haible  <bruno@clisp.org>
27589
27590         * gnulib-tool: New options --vc-files, --no-vc-files.
27591         (func_usage): Document them.
27592         (vc_files): New variable.
27593         (func_import): Consider vc_files.
27594         (func_create_testdir): Set vc_files to empty.
27595         Suggested by Jim Meyering and Karl Berry.
27596
27597 2008-03-23  Bruno Haible  <bruno@clisp.org>
27598
27599         Fix regex compilation error on HP-UX 11.
27600         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
27601         * modules/regex (Files): Add m4/mbstate_t.m4.
27602         Reported by Ton Voon <ton.voon@altinity.com>.
27603
27604 2008-03-23  Bruno Haible  <bruno@clisp.org>
27605
27606         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
27607
27608 2008-03-23  Eric Blake  <ebb9@byu.net>
27609             Bruno Haible  <bruno@clisp.org>
27610
27611         Install files from top/ in the destination directory.
27612         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
27613         augmentation also for the files from top/.
27614         (func_import, func_create_testdir): Rewrite file names:
27615         top/filename -> filename.
27616
27617 2008-03-23  Bruno Haible  <bruno@clisp.org>
27618
27619         Tweak "gnulib --version" output.
27620         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
27621
27622 2008-03-23  Bruno Haible  <bruno@clisp.org>
27623
27624         Tweak "gnulib --version" output.
27625         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
27626         rather than contents of ChangeLog, when possible.
27627
27628 2008-03-21  Eric Blake  <ebb9@byu.net>
27629
27630         More --version tweaks.
27631         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
27632         date of last ChangeLog entry.
27633
27634 2008-03-21  Jim Meyering  <meyering@redhat.com>
27635
27636         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
27637
27638 2008-03-20  Eric Blake  <ebb9@byu.net>
27639
27640         VPATH fix.
27641         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
27642
27643 2008-03-20  Simon Josefsson  <simon@josefsson.org>
27644
27645         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
27646         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
27647
27648 2008-03-20  Eric Blake  <ebb9@byu.net>
27649
27650         Sync GNUmakefile with coreutils.
27651         * build-aux/GNUmakefile (have-Makefile): Rename...
27652         (_have-Makefile): ...to this, for namespace consideration.
27653         (GNUmakefile.cfg): Include, if present.
27654         (_autoreconf): Define a default.
27655         (_is-dist-target): New rule for rebuilds to pick up intra-release
27656         version.
27657         (maint-cfg.mk): Rename...
27658         (cfg.mk): ...to this.
27659
27660 2008-03-18  Jim Meyering  <meyering@redhat.com>
27661
27662         New script and module: mktempd
27663         * MODULES.html.sh (maint+release support): Add mktempd.
27664         * build-aux/mktempd: New file.
27665         * modules/mktempd: New file.
27666
27667 2008-03-15  Jim Meyering  <meyering@redhat.com>
27668
27669         Undo last change.
27670         * lib/sha1.c, lib/md5.c: 63 != ~63.
27671         Reported by Andreas Schwab.
27672
27673         sha1.c, md5.c: Hoist a redundant expression.
27674         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
27675         "ctx->buflen" only once, before calling *_process_block.
27676         * lib/md5.c (md5_process_bytes): Likewise.
27677
27678 2008-03-14  Eric Blake  <ebb9@byu.net>
27679
27680         Bump copyright year in files generated by gnulib-tool.
27681         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
27682         gnulib-tool, rather than hard-coding it.
27683
27684         Fix 'gnulib-tool --version' output to work with git.
27685         * gnulib-tool (func_gnulib_dir): New function, extracted from...
27686         (startup): ...here.
27687         (func_version): Use it to invoke git-version-gen, rather than
27688         relying on CVS keyword expansion.  Modernize wording.
27689         (cvsdatestamp, last_checkin_date, version): Kill unused
27690         variables.
27691
27692 2008-03-12  Jim Meyering  <meyering@redhat.com>
27693
27694         Recognize optional cast of the argument to free.
27695         * build-aux/useless-if-before-free: Update regexps.
27696
27697         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
27698
27699 2008-03-11  Bruno Haible  <bruno@clisp.org>
27700
27701         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
27702         by a single package.
27703         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
27704         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
27705         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
27706         Reported by Sam Steingold <sds@gnu.org>.
27707
27708 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
27709
27710         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
27711         repositories.
27712
27713 2008-03-11  Bruno Haible  <bruno@clisp.org>
27714
27715         Avoid conflicts between local macro definitions.
27716         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
27717         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
27718
27719 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
27720             Bruno Haible  <bruno@clisp.org>
27721
27722         Make va_copy work with some version of xlc on AIX 5.1.
27723         * lib/stdarg.in.h: New file.
27724         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
27725         On AIX, use a <stdarg.h> file substitute.
27726         * modules/stdarg (Files): Add lib/stdarg.in.h.
27727         (Depends-on): Add include_next.
27728         (Makefile.am): Build a stdarg.h substitute if requested.
27729         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
27730
27731 2008-03-10  Bruno Haible  <bruno@clisp.org>
27732
27733         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
27734         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
27735         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
27736
27737 2008-03-10  Bruno Haible  <bruno@clisp.org>
27738
27739         * modules/stdlib (Depends-on): Add include_next, remove
27740         absolute-header.
27741
27742 2008-03-09  Bruno Haible  <bruno@clisp.org>
27743
27744         * lib/freadahead.h (freadahead): Document more precisely.
27745         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
27746         the sum of both buffer sizes.
27747         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
27748         * NEWS: Document the change.
27749
27750 2008-03-09  Bruno Haible  <bruno@clisp.org>
27751
27752         Extend freadptr to return also the buffer size.
27753         * lib/freadptr.h (freadptr): Add sizep argument.
27754         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
27755         (freadptr): Add sizep argument. Determine buffer size like freadahead
27756         does.
27757         * tests/test-freadptr.c: Don't include freadahead.h.
27758         (main): Adapt for new calling convention of freadptr.
27759         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
27760         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
27761         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
27762         tests/test-freadptr2.sh.
27763         (Depends): Remove freadahead.
27764         (TESTS): Add test-freadptr2.sh.
27765         (check_PROGRAMS): Add test-freadptr2.
27766
27767 2008-03-09  Bruno Haible  <bruno@clisp.org>
27768
27769         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
27770         Report and solution by Simon Josefsson.
27771
27772 2008-03-06  Bruno Haible  <bruno@clisp.org>
27773
27774         Make fflush after ungetc work on BSD platforms.
27775         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
27776         * tests/test-fflush2.c: New file.
27777         * tests/test-fflush2.sh: New file.
27778         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
27779         tests/test-fflush2.c.
27780         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
27781         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
27782
27783 2008-03-06  Eric Blake  <ebb9@byu.net>
27784
27785         Likewise for ftello.
27786         * modules/ftello (Dependencies): Add extensions.
27787         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
27788
27789 2008-03-06  Bruno Haible  <bruno@clisp.org>
27790
27791         * modules/fseeko (Dependencies): Add extensions.
27792         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
27793         Needed on glibc systems.
27794
27795 2008-03-06  Bruno Haible  <bruno@clisp.org>
27796
27797         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
27798         email address.
27799         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
27800
27801 2008-03-06  Bruno Haible  <bruno@clisp.org>
27802
27803         * users.txt: Add libgnupdf.
27804
27805 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
27806
27807         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
27808         (Header File Substitutes, Function Substitutes,
27809         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
27810         (Build robot for gnulib): Fix typo.
27811
27812 2008-03-06  Bruno Haible  <bruno@clisp.org>
27813
27814         * doc/gnulib-tool.texi (VCS Issues): Small updates.
27815         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
27816
27817 2008-03-06  Bruno Haible  <bruno@clisp.org>
27818
27819         * doc/func.texi: New file, extracted from doc/gnulib.texi.
27820         * doc/gnulib.texi: Include it.
27821
27822 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27823
27824         * modules/func (License): Change license to unlimited; there was
27825         no LGPL parts in the module anyway.
27826
27827 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27828
27829         * modules/__func__: Renamed to modules/func.
27830         * modules/__func__-tests: Renamed to modules/func-tests.
27831         * tests/test-__func__.c: Renamed to tests/test-func.c.
27832         * m4/__func__.m4: Renamed to m4/func.m4.
27833         * doc/gnulib.texi (__func__): Section renamed to func.
27834         Suggested by Eric Blake <ebb9@byu.net>.
27835
27836 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27837
27838         * doc/gnulib.texi (__func__): Use C99 terminology when talking
27839         about __func__.  Make example self-contained.  Suggested by Eric
27840         Blake <ebb9@byu.net>.
27841
27842         * tests/test-__func__.c (main): Avoid extraneous () around __func.
27843         Suggested by Eric Blake <ebb9@byu.net>.
27844
27845 2008-03-06  Simon Josefsson  <simon@josefsson.org>
27846
27847         * modules/__func__: New file.
27848         * modules/__func__-tests: New file.
27849         * tests/test-__func__.c: New file.
27850         * m4/__func__.m4: New file.
27851         * doc/gnulib.texi (__func__): Document __func__ module.
27852
27853 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27854
27855         * modules/byteswap (License): Re-license as LGPLv2+.
27856
27857 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27858
27859         * doc/Makefile: Add pdf target.
27860
27861 2008-03-05  Simon Josefsson  <simon@josefsson.org>
27862
27863         * modules/inline (License): Use 'unlimited', since there are only
27864         *.m4 files in this module.
27865
27866 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
27867             Bruno Haible  <bruno@clisp.org>
27868
27869         Add support for HP C 7.1 on OpenVMS 8.3.
27870         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
27871
27872 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
27873
27874         Update VMS specifics.
27875         * lib/getopt.c [VMS]: Remove include of unixlib.h.
27876
27877 2008-03-02  Jim Meyering  <meyering@redhat.com>
27878
27879         Remove the last dependency on the "free" module.
27880         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
27881         Reported by Bob Proulx.
27882
27883         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
27884
27885         Remove useless "if" tests before free.  Deprecate "free" module.
27886         * doc/posix-functions/free.texi: Mention that this
27887         module is no longer useful.
27888         * modules/free (Notice): Say this module is obsolete.
27889         * modules/readutmp (Depends-on): Remove free.
27890         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
27891         * lib/putenv.c (putenv): Likewise.
27892         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
27893         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
27894         * tests/test-c-strcasestr.c (main): Likewise.
27895         * tests/test-c-strstr.c (main): Likewise.
27896         * tests/test-mbscasestr1.c (main): Likewise.
27897         * tests/test-mbscasestr2.c (main): Likewise.
27898         * tests/test-mbsstr1.c (main): Likewise.
27899         * tests/test-mbsstr2.c (main): Likewise.
27900         * tests/test-memmem.c (main): Likewise.
27901         * tests/test-strcasestr.c (main): Likewise.
27902         * tests/test-striconv.c (main): Likewise.
27903         * tests/test-striconveh.c (main): Likewise.
27904         * tests/test-striconveha.c (main): Likewise.
27905         * tests/test-strstr.c (main): Likewise.
27906
27907         * build-aux/git-version-gen: Adjust a comment and the Usage string.
27908
27909         bootstrap: sync from coreutils again
27910         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
27911
27912 2008-03-01  Jim Meyering  <meyering@redhat.com>
27913
27914         bootstrap: sync from coreutils
27915         * build-aux/bootstrap (update_po_files): Copy a .po file into place
27916         also when the target doesn't exist.
27917
27918 2008-03-01  Eric Blake  <ebb9@byu.net>
27919
27920         Fix bugs in last patch.
27921         * lib/memchr2.c (memchr2): Fix typo.
27922         * tests/test-memchr2.c: Test previous bug, and don't use GNU
27923         extension.
27924         Reported by Bruce Korb.
27925
27926         New module 'memchr2'.
27927         * modules/memchr2: New file.
27928         * modules/memchr2-tests: Likewise.
27929         * lib/memchr2.h: Likewise.
27930         * lib/memchr2.c: Likewise, based on memchr.c.
27931         * tests/test-memchr2.c: New test.
27932         * MODULES.html.sh (String handling): Add memchr2.
27933
27934 2008-02-29  Bruno Haible  <bruno@clisp.org>
27935
27936         * modules/freadseek-tests: New file.
27937         * tests/test-freadseek.sh: New file.
27938         * tests/test-freadseek.c: New file.
27939
27940         New module 'freadseek'.
27941         * modules/freadseek: New file.
27942         * lib/freadseek.h: New file.
27943         * lib/freadseek.c: New file.
27944         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
27945
27946 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
27947
27948         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
27949         wydawca.
27950
27951         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
27952         program_invocation_name and program_invocation_short_name are
27953         present.
27954
27955 2008-02-28  Bruno Haible  <bruno@clisp.org>
27956
27957         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
27958         * tests/test-freadptr.sh: Also test non-seekable stdin.
27959
27960 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
27961
27962         * build-aux/bootstrap (source_base, m4_base)
27963         (doc_base, tests_base): New variables.
27964         (gnulib_tool_options): Do not hardcode base directories, use
27965         the above variables instead.
27966
27967 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
27968
27969         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
27970
27971 2008-02-28  Bruno Haible  <bruno@clisp.org>
27972
27973         * modules/freadptr-tests: New file.
27974         * tests/test-freadptr.sh: New file.
27975         * tests/test-freadptr.c: New file.
27976
27977         New module 'freadptr'.
27978         * modules/freadptr: New file.
27979         * lib/freadptr.h: New file.
27980         * lib/freadptr.c: New file.
27981         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
27982
27983 2008-02-26  Karl Berry  <karl@freefriends.org>
27984
27985         Sync from Libtool:
27986         * libltdl/argz.c (argz_add, argz_count): New functions.
27987         * libltdl/argz.in.h: Declare them.
27988         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
27989
27990 2008-02-22  Bruno Haible  <bruno@clisp.org>
27991
27992         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
27993         is a pointer type.  Needed for HP-UX 10.
27994         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
27995         * doc/posix-functions/gmtime_r.texi: Likewise.
27996         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
27997
27998 2008-02-24  Bruno Haible  <bruno@clisp.org>
27999
28000         * modules/environ-tests: New file.
28001         * tests/test-environ.c: New file.
28002
28003         New module 'environ'.
28004         * modules/environ: New file.
28005         * lib/unistd.in.h (environ): New declaration.
28006         * m4/environ.m4: New file.
28007         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
28008         after use.
28009         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
28010         HAVE_DECL_ENVIRON.
28011         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
28012         HAVE_DECL_ENVIRON.
28013         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
28014         wrong claim that 'environ' is missing on some systems.
28015         * modules/execute (Depends-on): Add environ.
28016         * lib/execute.c (environ): Remove fallback declaration.
28017         * modules/pipe (Depends-on): Add environ.
28018         * lib/pipe.c (environ): Remove fallback declaration.
28019         * modules/setenv (Depends-on): Add environ.
28020         * lib/setenv.c (environ): Remove fallback declaration.
28021         * modules/unsetenv (Depends-on): Add environ.
28022         * lib/unsetenv.c (environ): Remove fallback declaration.
28023         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
28024         m4/environ.m4.
28025         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
28026         (gl_PREREQ_UNSETENV): Likewise.
28027
28028 2008-02-24  Bruno Haible  <bruno@clisp.org>
28029
28030         * doc/posix-functions/environ.texi: Document the MacOS X problem.
28031
28032 2008-02-20  Bob Proulx  <bob@proulx.com>
28033
28034         Enable use of older two part flavor 'git describe'.
28035         * build-aux/git-version-gen: If using the older two part flavor of
28036         git version then recreate the third part now present in the
28037         newer three part flavor of git describe.
28038
28039 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
28040
28041         * lib/fts.c (fts_build): Typo correction to comment.
28042
28043 2008-02-17  Bruno Haible  <bruno@clisp.org>
28044
28045         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
28046         generating no-op conflicts.
28047
28048 2008-02-17  Bruno Haible  <bruno@clisp.org>
28049
28050         Speed up by 10%.
28051         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
28052         result_entries, rather than an index-based loop.
28053
28054 2008-02-17  Bruno Haible  <bruno@clisp.org>
28055
28056         Speed up by 25%.
28057         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
28058         'hashcode_cached'.
28059         (entry_create): New function.
28060         (entry_hashcode): Use the cached hashcode if possible.
28061         (read_changelog_file, try_split_merged_entry): Use entry_create.
28062
28063 2008-02-17  Bruno Haible  <bruno@clisp.org>
28064
28065         Speed up from O(n^2) to O(n) for long ChangeLog files.
28066         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
28067         (read_changelog_file): Change implementation of entries_reversed list
28068         to rbtreehash.
28069         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
28070
28071 2008-02-17  Bruno Haible  <bruno@clisp.org>
28072
28073         New option --split-merged-entry.
28074         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
28075         (find_paragraph_end, try_split_merged_entry): New functions.
28076         (long_options): Add option --split-merged-entry.
28077         (usage): Document option --split-merged-entry.
28078         (main): Implement option --split-merged-entry.
28079         Reported by Eric Blake.
28080
28081 2008-02-17  Bruno Haible  <bruno@clisp.org>
28082
28083         * lib/git-merge-changelog.c: Include c-strstr.h.
28084         (main): Support the "git pull --rebase" situation.
28085         * modules/git-merge-changelog (Depends-on): Add c-strstr.
28086         Reported by Eric Blake.
28087
28088 2008-02-16  Eric Blake  <ebb9@byu.net>
28089
28090         Avoid doubling \ in common case of "c-maybe" quoting style.
28091         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
28092         eliding outer quotes.
28093         * lib/quotearg.h: Document this.
28094         * tests/test-quotearg.c (result_strings, inputs, results_g)
28095         (flag_results, locale_results): Test it by adding a new string to
28096         each test group.
28097         (compare_strings): Test new string.
28098
28099 2008-02-13  Eric Blake  <ebb9@byu.net>
28100
28101         Avoid trigraph quoting in default output.
28102         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
28103         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
28104         unless explicitly requested.
28105         * tests/test-quotearg.c (flag_results, main): Add additional tests.
28106
28107 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
28108
28109         Don't rely on signed integer overflowing to negative value.
28110         * lib/getugroups.c (getugroups): Include <limits.h>.
28111         Instead, compare against INT_MAX, and increment only if the test passes.
28112
28113 2008-02-13  Jim Meyering  <meyering@redhat.com>
28114         and Eric Blake  <ebb9@byu.net>
28115
28116         Avoid shadowing warning and compile errors on Linux.
28117         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
28118         forwarding macros on Linux.
28119         (dcgettext): Define a stub, for Linux.
28120         (results_g, main): Avoid warnings.
28121
28122 2008-02-12  Eric Blake  <ebb9@byu.net>
28123
28124         Silence warning in last patch.
28125         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
28126
28127         Quotearg part 4: add tests, fix c-maybe colon quoting.
28128         * lib/quotearg.h: Improve documentation.
28129         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
28130         escapes when adding outer quotes.  When quoting trigraphs, use
28131         valid C notation.  When quoting NUL, omit extra characters if next
28132         character is not digit.  Alter prototype.
28133         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
28134         callers.
28135         * modules/quotearg-tests: New module.
28136         * tests/test-quotearg.c: New test.
28137
28138 2008-02-07  Eric Blake  <ebb9@byu.net>
28139
28140         Quotearg part 3: add flag to control outer quote elision.
28141         * lib/quotearg.h (c_maybe_quoting_style): New style.
28142         (enum quoting_flags): Better documentation of flags.
28143         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
28144         c-maybe style.
28145         (quotearg_buffer_restyled): Handle new flag to elide outer
28146         quotes.
28147
28148         Quotearg part 2: add flag that can control NUL elision.
28149         * lib/quotearg.h (set_quoting_flags): New prototype.
28150         * lib/quotearg.c (struct quoting_options): Add flag field.
28151         (set_quoting_flags): New function.
28152         (quotearg_buffer_restyled): Add flags parameter.
28153         (quotearg_alloc_mem): Set the flag if length cannot be returned.
28154         (quotearg_n_options): Set the flag, since length cannot be
28155         returned.
28156         (quoting_options_from_style): Default flags correctly.
28157
28158         Quotearg part 1: more wrappers, restore quotearg_char state.
28159         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
28160         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
28161         (quotearg_colon_mem): New wrappers.
28162         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
28163         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
28164         functions.
28165         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
28166         (quotearg_colon_mem): New functions.
28167
28168 2008-02-11  Bruno Haible  <bruno@clisp.org>
28169
28170         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
28171         library in the current directory: it does not work with parallel make.
28172         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
28173
28174 2008-02-11  Bruno Haible  <bruno@clisp.org>
28175
28176         * .gitattributes: New file.
28177
28178 2008-02-11  Jim Meyering  <meyering@redhat.com>
28179
28180         useless-if-before-free: Fix reversed exit values.
28181         * build-aux/useless-if-before-free: Use correct values
28182         for EXIT_MATCH and EXIT_NO_MATCH.
28183
28184         * build-aux/useless-if-before-free: Close stdout carefully.
28185
28186 2008-02-10  Bruno Haible  <bruno@clisp.org>
28187
28188         New module 'git-merge-changelog'.
28189         * modules/git-merge-changelog: New file.
28190         * lib/git-merge-changelog.c: New file.
28191
28192 2008-02-10  Jim Meyering  <meyering@redhat.com>
28193
28194         useless-if-before-free: New option: --list (-l).
28195
28196         useless-if-before-free: Don't exit immediately upon open failure.
28197         * build-aux/useless-if-before-free: Exit 2 for errors.
28198         Upon failure to open a file, don't exit immediately.
28199         Rather, just warn and continue with any remaining files.
28200
28201 2008-02-10  Bruno Haible  <bruno@clisp.org>
28202
28203         New abstract list operation 'node_set_value'.
28204         * lib/gl_list.h (gl_list_node_set_value): New function.
28205         (struct gl_list_implementation): New field node_set_value.
28206         * lib/gl_list.c (gl_list_node_set_value): New function.
28207         * lib/gl_array_list.c (gl_array_node_set_value): New function.
28208         (gl_array_list_implementation): Update.
28209         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
28210         (gl_carray_list_implementation): Update.
28211         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
28212         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
28213         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
28214         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
28215         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
28216         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
28217         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
28218         Update.
28219         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
28220         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
28221         (gl_sublist_list_implementation): Update.
28222
28223 2008-02-10  Bruno Haible  <bruno@clisp.org>
28224
28225         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
28226         Needed when ELEMENT is #defined to 'some_type *'.
28227
28228 2008-02-10  Jim Meyering  <meyering@redhat.com>
28229
28230         New script and module: useless-if-before-free
28231         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
28232         * build-aux/useless-if-before-free: New file.
28233         * modules/useless-if-before-free: New file.
28234
28235         * build-aux/gitlog-to-changelog: Use committer date, not author date.
28236
28237         xstrtol_error: Fix typo.
28238         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
28239         s/exit_failure/exit_status/.
28240
28241 2008-02-09  Jim Meyering  <meyering@redhat.com>
28242
28243         New script and module: gitlog-to-changelog
28244         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
28245         * modules/gitlog-to-changelog: New file.
28246         * build-aux/gitlog-to-changelog: New file.
28247
28248 2008-02-08  Jim Meyering  <meyering@redhat.com>
28249
28250         Avoid two "parameter unused" warnings.
28251         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
28252         Mark "st" as used.
28253
28254         Use "git COMMAND", not "git-COMMAND".
28255         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
28256         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
28257         * build-aux/git-version-gen: Use "git status", not "git-status".
28258
28259 2008-02-07  Bruno Haible  <bruno@clisp.org>
28260
28261         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
28262         Avoids a crash on Windows Vista.
28263         Reported by Adam Strzelecki <ono@java.pl> via
28264         Simon Josefsson <simon@josefsson.org>.
28265
28266 2008-02-06  Bruno Haible  <bruno@clisp.org>
28267
28268         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
28269         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
28270         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
28271         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
28272         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
28273         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28274         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
28275         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
28276         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28277         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28278         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28279         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28280         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28281         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
28282         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28283         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
28284         left-adjust flag.
28285         * tests/test-snprintf-posix.h (test_function): Likewise.
28286         * tests/test-sprintf-posix.h (test_function): Likewise.
28287         * tests/test-vasprintf-posix.c (test_function): Likewise.
28288         * doc/posix-functions/fprintf.texi: Update.
28289         * doc/posix-functions/printf.texi: Update.
28290         * doc/posix-functions/snprintf.texi: Update.
28291         * doc/posix-functions/sprintf.texi: Update.
28292         * doc/posix-functions/vfprintf.texi: Update.
28293         * doc/posix-functions/vprintf.texi: Update.
28294         * doc/posix-functions/vsnprintf.texi: Update.
28295         * doc/posix-functions/vsprintf.texi: Update.
28296         Reported by Peter Fales <psfales@alcatel-lucent.com>.
28297
28298 2008-02-06  Bruno Haible  <bruno@clisp.org>
28299
28300         Fix bug introduced on 2008-01-26.
28301         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
28302
28303 2008-02-06  Bruno Haible  <bruno@clisp.org>
28304
28305         Fix bug introduced on 2007-06-10.
28306         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
28307         !NEED_PRINTF_FLAG_ZERO.
28308
28309 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
28310
28311         getloadavg: use libperfstat on AIX5
28312         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
28313
28314 2008-02-03  Bruno Haible  <bruno@clisp.org>
28315
28316         * lib/diffseq.h: Add comments about required #includes.
28317         Reported by Michael Biggs <gnulib@doubleplum.net>.
28318
28319 2008-02-01  Bruno Haible  <bruno@clisp.org>
28320
28321         * users.txt: Add gnuit.
28322
28323 2008-01-31  Bruno Haible  <bruno@clisp.org>
28324
28325         * lib/md4.c (set_uint32): Mark as inline.
28326         * lib/md5.c (set_uint32): Likewise.
28327         * lib/sha1.c (set_uint32): Likewise.
28328         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
28329         * m4/md5.m4 (gl_MD5): Likewise.
28330         * m4/sha1.m4 (gl_SHA1): Likewise.
28331
28332 2008-01-31  Jim Meyering  <meyering@redhat.com>
28333
28334         Use "sizeof VAR", rather than a literal "4".
28335         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
28336         * lib/md4.c (md4_read_ctx): Likewise.
28337         * lib/sha1.c (sha1_read_ctx): Likewise.
28338
28339 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28340
28341         * tests/test-sha1.c: New file, based on test-md5.c.
28342
28343         * modules/crypto/sha1-tests: New file.
28344
28345 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28346
28347         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
28348
28349 2008-01-31  Jim Meyering  <meyering@redhat.com>
28350
28351         Prefer "sizeof v" over the equivalent "4".
28352         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
28353         * lib/md5.c (set_uint32): Likewise.
28354         * lib/sha1.c (set_uint32): Likewise.
28355
28356 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28357
28358         * lib/sha1.c (set_uint32): Mark function as static.
28359
28360 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28361
28362         md2: clarify comments to say that alignment is not required.
28363         * lib/md2.h: Remove warning about alignment in comment.
28364         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
28365         never been required.
28366
28367 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28368
28369         md4: adapt alignment constraint fix from sha1.
28370         * lib/md4.c (set_uint32): New function, from sha1.c
28371         (md4_read_ctx): Use it.
28372         (md4_finish_ctx): Doc fix.
28373         * lib/md4.h: Doc fix.
28374
28375 2008-01-31  Simon Josefsson  <simon@josefsson.org>
28376
28377         md5: adapt alignment constraint fix from sha1.
28378         * lib/md5.c (set_uint32): New function, from sha1.c
28379         (md5_read_ctx): Use it.
28380         (md5_finish_ctx): Doc fix.
28381         * lib/md5.h: Doc fix.
28382
28383 2008-01-30  Peter Palfrader  <weasel@debian.org>
28384
28385         sha1: remove the result buffer alignment constraint
28386         * lib/sha1.c (set_uint32): New function.
28387         (sha1_read_ctx): Rewrite to remove the result buffer alignment
28388         constraint.
28389         (sha1_finish_ctx): Remove comment warning about alignment constraint.
28390         * lib/sha1.h: Likewise.
28391
28392 2008-01-30  Andreas Schwab  <schwab@suse.de>
28393             Bruno Haible  <bruno@clisp.org>
28394
28395         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
28396         correct definition of LDBL_MIN_EXP.
28397
28398 2008-01-30  Karl Berry  <karl@gnu.org>
28399
28400         * config/srclist-update: try to preserve x bit on updates.
28401         * config/srclistvars.sh: update for karl.
28402
28403 2008-01-29  Jim Meyering  <meyering@redhat.com>
28404
28405         vasnprintf.c: Avoid warning about unused label
28406         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
28407         "overflow" label definition and associated code with the
28408         same cpp condition that guards the sole use of that label.
28409
28410 2008-01-26  Bruno Haible  <bruno@clisp.org>
28411
28412         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
28413         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
28414         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
28415         * lib/isnanl-nolibm.h (isnanl): Likewise.
28416         Reported by Paul Eggert <eggert@cs.ucla.edu>.
28417
28418 2008-01-26  Bruno Haible  <bruno@clisp.org>
28419
28420         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
28421         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
28422
28423 2008-01-26  Bruno Haible  <bruno@clisp.org>
28424
28425         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
28426         GCC >= 4.0 built-in.
28427         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
28428
28429 2008-01-26  Bruno Haible  <bruno@clisp.org>
28430
28431         Rename isnan, applicable to 'double' only, to isnand.
28432         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
28433         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
28434         (configure.ac): Update.
28435         (Include): Replace "isnan.h" with "isnand.h".
28436         * m4/isnand.m4: Renamed from m4/isnan.m4.
28437         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
28438         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
28439         instead of isnan.c.
28440         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
28441         instead of HAVE_ISNAN_IN_LIBC.
28442         (isnand): Renamed from isnan.
28443         * lib/isnand.c: New file.
28444         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
28445         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
28446         (Makefile.am): Update.
28447         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
28448         Include isnand.h instead of isnan.h.
28449         (main): Test isnand instead of isnan.
28450         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
28451         isnan-nolibm.
28452         * modules/frexp (Depends-on): Likewise.
28453         * modules/frexp-tests (Depends-on): Likewise.
28454         * modules/frexp-nolibm (Depends-on): Likewise.
28455         * modules/frexp-nolibm-tests (Depends-on): Likewise.
28456         * modules/isfinite (Depends-on): Likewise.
28457         * modules/round-tests (Depends-on): Likewise.
28458         * modules/signbit (Depends-on): Likewise.
28459         * modules/signbit-tests (Depends-on): Likewise.
28460         * modules/snprintf-posix (Depends-on): Likewise.
28461         * modules/sprintf-posix (Depends-on): Likewise.
28462         * modules/trunc-tests (Depends-on): Likewise.
28463         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
28464         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
28465         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
28466         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
28467         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
28468         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
28469         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
28470         * modules/vasnprintf-posix (Depends-on): Likewise.
28471         * modules/vasprintf-posix (Depends-on): Likewise.
28472         * modules/vfprintf-posix (Depends-on): Likewise.
28473         * modules/vsnprintf-posix (Depends-on): Likewise.
28474         * modules/vsprintf-posix (Depends-on): Likewise.
28475         * lib/frexp.c: Include isnand.h instead of isnan.h.
28476         (ISNAN): Set to isnand instead of isnan.
28477         * lib/isfinite.c: Include isnand.h instead of isnan.h.
28478         (gl_isfinited): Use isnand instead of isnan.
28479         * lib/signbitd.c: Include isnand.h instead of isnan.h.
28480         (gl_signbitd): Use isnand instead of isnan.
28481         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
28482         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
28483         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
28484         (main): Use isnand instead of isnan.
28485         * tests/test-round1.c: Include isnand.h.
28486         (main): Use isnand instead of isnan.
28487         * tests/test-round2.c: Include isnand.h instead of isnan.h.
28488         (ISNAN): Set to isnand instead of isnan.
28489         * tests/test-trunc1.c: Include isnand.h.
28490         (main): Use isnand instead of isnan.
28491         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
28492         (equal): Use isnand instead of isnan.
28493         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
28494         isnand-nolibm.
28495         * NEWS: Mention the change.
28496
28497 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
28498             Bruno Haible  <bruno@clisp.org>
28499
28500         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
28501         the GCC builtins for signbits are present and set
28502         REPLACE_SIGNBIT_USING_GCC if so.
28503         * lib/math.in.h (signbit): Define using GCC builtins if
28504         REPLACE_SIGNBIT_USING_GCC is set.
28505         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
28506         REPLACE_SIGNBIT_USING_GCC.
28507         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
28508
28509 2008-01-25  Jim Meyering  <meyering@redhat.com>
28510
28511         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
28512         * lib/poll.c: Include <config.h>, not "config.h".
28513         * tests/test-getaddrinfo.c: Likewise.
28514
28515 2008-01-25  Simon Josefsson  <simon@josefsson.org>
28516
28517         * modules/sockets-tests: New file.
28518
28519 2008-01-24  Simon Josefsson  <simon@josefsson.org>
28520
28521         * modules/sockets: New module, can be used to call WSA_Startup and
28522         WSA_Cleanup when needed.
28523
28524         * lib/sockets.h, lib/sockets.c: New files.
28525
28526         * m4/sockets.m4: New file.
28527
28528         * tests/test-sockets.c: New file.
28529
28530 2008-01-19  Bruno Haible  <bruno@clisp.org>
28531
28532         * doc/posix-headers: Renamed from doc/headers.
28533         * doc/posix-functions: Renamed from doc/functions.
28534         * doc/gnulib.texi: Update.
28535
28536 2008-01-19  Bruno Haible  <bruno@clisp.org>
28537
28538         * doc/glibc-functions/strcasestr.texi: Include contents of
28539         doc/functions/strcasestr.texi, fixing the list of platforms.
28540         * doc/functions/strcasestr.texi: Remove file.
28541
28542 2008-01-19  Bruno Haible  <bruno@clisp.org>
28543
28544         * doc/glibc-functions/memmem.texi: Include contents of
28545         doc/functions/memmem.texi.
28546         * doc/functions/memmem.texi: Remove file.
28547
28548 2008-01-18  Bruno Haible  <bruno@clisp.org>
28549
28550         * doc/glibc-functions/*.texi: New files.
28551         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
28552         to use the new files.
28553
28554 2008-01-17  Bruno Haible  <bruno@clisp.org>
28555
28556         * tests/test-gethostname.c (main): Fix printf statement.
28557
28558 2008-01-17  Simon Josefsson  <simon@josefsson.org>
28559
28560         * modules/gethostname-tests: New file.
28561
28562         * tests/test-gethostname.c: New file.
28563
28564 2008-01-17  Simon Josefsson  <simon@josefsson.org>
28565
28566         * lib/gethostname.c: Include string.h unconditionally, strncpy is
28567         used by the UNAME case.  Reported by Bruno Haible
28568         <bruno@clisp.org>.
28569
28570 2008-01-17  Eric Blake  <ebb9@byu.net>
28571
28572         Convert c-strcasestr to be more efficient.
28573         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
28574         (Depends-on): Add c-strcase, remove malloca, strnlen.
28575         * tests/test-c-strcasestr.c (main): Enhance test.
28576         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
28577
28578 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
28579
28580         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
28581         Use it in creating po/Makevars.
28582
28583 2008-01-15  Simon Josefsson  <simon@josefsson.org>
28584
28585         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
28586         Applications that requires it should initialize libgcrypt
28587         manually.
28588
28589 2008-01-16  Simon Josefsson  <simon@josefsson.org>
28590
28591         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
28592
28593 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
28594
28595         Fix problem with getdate on mingw32 reported by Simon Josefsson
28596         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
28597         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
28598         tzname", when deciding whether to declare tzname.
28599         * lib/strftime.c (tzname): Likewise.
28600
28601 2008-01-15  Bruno Haible  <bruno@clisp.org>
28602
28603         Work around a MacOS X 10.5 bug in frexpl().
28604         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
28605         * doc/functions/frexpl.texi: Document the bug.
28606         Reported by Elias Pipping <pipping@gentoo.org>.
28607
28608 2008-01-14  Eric Blake  <ebb9@byu.net>
28609
28610         Touch up previous patch.
28611         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
28612         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
28613
28614         Convert strcasestr module to use Two-Way algorithm.
28615         * modules/strcasestr-simple: New module, based on the old
28616         strcasestr, but with Two-Way rather than KMP.
28617         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
28618         * lib/string.in.h (rpl_strcasestr): Declare.
28619         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
28620         performance.
28621         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
28622         * modules/string (Makefile.am): Support strcasestr.
28623         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
28624         * modules/strcasestr-tests (Depends-on): Check for alarm.
28625         * tests/test-strcasestr.c: Augment test.
28626         * lib/str-two-way.h: Clean up stray macro.
28627         * NEWS: Document new module.
28628         * MODULES.html.sh (string handling): Likewise.
28629         * doc/functions/strcasestr.texi: New file.
28630         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
28631         here, since it is not a POSIX function.
28632
28633 2008-01-14  Colin Watson  <cjwatson@debian.org>
28634             Bruno Haible  <bruno@clisp.org>
28635
28636         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
28637         works fine; if not, set REPLACE_STRSIGNAL.
28638         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
28639         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
28640         REPLACE_STRSIGNAL.
28641         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
28642         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
28643         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
28644
28645 2008-01-14  Bruno Haible  <bruno@clisp.org>
28646
28647         * modules/strsignal (Include): Change to <string.h>.
28648
28649 2008-01-14  Colin Watson  <cjwatson@debian.org>
28650
28651         * modules/argp (Notice): Add a notice recommending to change
28652         XGETTEXT_OPTIONS.
28653         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
28654
28655 2008-01-13  Colin Watson  <cjwatson@debian.org>
28656
28657         * modules/strsignal-tests: New file.
28658         * tests/test-strsignal.c: New file.
28659
28660         * lib/strsignal.c: New file, from glibc with modifications.
28661         * lib/siglist.h: New file, from glibc with modifications.
28662         * lib/string.in.h (strsignal): New declaration.
28663         * m4/strsignal.m4: New file.
28664         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
28665         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
28666         * modules/strsignal: New file.
28667         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
28668         HAVE_DECL_STRSIGNAL.
28669
28670 2008-01-13  Bruno Haible  <bruno@clisp.org>
28671
28672         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
28673         locale encoding is not ASCII. Needed for OpenBSD 4.0.
28674         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
28675         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
28676
28677 2008-01-13  Bruno Haible  <bruno@clisp.org>
28678
28679         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
28680         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
28681         * lib/argp.h (__attribute__): Likewise.
28682         * lib/c-stack.c (__attribute__): Likewise.
28683         * lib/error.h (__attribute__): Likewise.
28684         * lib/fts.c (__attribute__): Likewise.
28685         * lib/openat.h (__attribute__): Likewise.
28686         * lib/stdio.in.h (__attribute__): Likewise.
28687         * lib/string.in.h (__attribute__): Likewise.
28688         * lib/utimens.c (__attribute__): Likewise.
28689         * lib/vasnprintf.h (__attribute__): Likewise.
28690         * lib/xalloc.h (__attribute__): Likewise.
28691         * lib/xprintf.h (__attribute__): Likewise.
28692         * lib/xstrtol.h (__attribute__): Likewise.
28693         * lib/xvasprintf.h (__attribute__): Likewise.
28694
28695 2008-01-12  Bruno Haible  <bruno@clisp.org>
28696
28697         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
28698         * doc/glibc-headers/a.out.texi: New file.
28699         * doc/glibc-headers/aliases.texi: New file.
28700         * doc/glibc-headers/alloca.texi: New file.
28701         * doc/glibc-headers/ar.texi: New file.
28702         * doc/glibc-headers/argp.texi: New file.
28703         * doc/glibc-headers/argz.texi: New file.
28704         * doc/glibc-headers/byteswap.texi: New file.
28705         * doc/glibc-headers/crypt.texi: New file.
28706         * doc/glibc-headers/endian.texi: New file.
28707         * doc/glibc-headers/envz.texi: New file.
28708         * doc/glibc-headers/err.texi: New file.
28709         * doc/glibc-headers/error.texi: New file.
28710         * doc/glibc-headers/execinfo.texi: New file.
28711         * doc/glibc-headers/fpu_control.texi: New file.
28712         * doc/glibc-headers/fstab.texi: New file.
28713         * doc/glibc-headers/fts.texi: New file.
28714         * doc/glibc-headers/getopt.texi: New file.
28715         * doc/glibc-headers/ieee754.texi: New file.
28716         * doc/glibc-headers/ifaddrs.texi: New file.
28717         * doc/glibc-headers/libintl.texi: New file.
28718         * doc/glibc-headers/mcheck.texi: New file.
28719         * doc/glibc-headers/mntent.texi: New file.
28720         * doc/glibc-headers/obstack.texi: New file.
28721         * doc/glibc-headers/paths.texi: New file.
28722         * doc/glibc-headers/printf.texi: New file.
28723         * doc/glibc-headers/pty.texi: New file.
28724         * doc/glibc-headers/resolv.texi: New file.
28725         * doc/glibc-headers/shadow.texi: New file.
28726         * doc/glibc-headers/sysexits.texi: New file.
28727         * doc/glibc-headers/ttyent.texi: New file.
28728
28729 2008-01-12  Jim Meyering  <meyering@redhat.com>
28730
28731         announce-gen: emit Gnulib's git-based version string.
28732         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
28733         New option --gnulib-version=V, where V is expected to be
28734         the output of running git describe in the gnulib directory.
28735         (get_tool_versions): Request feedback on xdelta.  I suspect it's
28736         not useful, and plan to stop publishing an xdelta file with each
28737         coreutils release.
28738
28739         * build-aux/announce-gen: Also check for lzma-compressed files.
28740
28741 2008-01-11  Bruno Haible  <bruno@clisp.org>
28742
28743         * tests/test-memmem.c (main): Increase maximum allowed time.
28744         * tests/test-strstr.c (main): Likewise.
28745
28746 2008-01-11  Bruno Haible  <bruno@clisp.org>
28747
28748         * doc/functions/memmem.texi: Add more precisions about platforms.
28749         * doc/functions/strstr.texi: Likewise.
28750
28751 2008-01-10  Eric Blake  <ebb9@byu.net>
28752
28753         * m4/strstr.m4: Delete cruft from copy-n-paste.
28754         Reported by Bruno Haible.
28755
28756 2008-01-10  Bruno Haible  <bruno@clisp.org>
28757
28758         Make c-strstr rely on strstr.
28759         * lib/c-strstr.c: Don't include str-kmp.h.
28760         (c_strstr): Define in terms of strstr.
28761         * modules/c-strstr (Files): Remove lib/str-kmp.h.
28762         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
28763
28764 2008-01-10  Bruno Haible  <bruno@clisp.org>
28765
28766         * doc/gnulib.texi (String Functions in C Locale): New section.
28767         * doc/c-ctype.texi: New file.
28768         * doc/c-strcase.texi: New file.
28769         * doc/c-strcaseeq.texi: New file.
28770         * doc/c-strcasestr.texi: New file.
28771         * doc/c-strstr.texi: New file.
28772         * doc/c-strtod.texi: New file.
28773         * doc/c-strtold.texi: New file.
28774
28775 2008-01-10  Eric Blake  <ebb9@byu.net>
28776
28777         * lib/relocatable.h: Fix a comment.
28778
28779 2008-01-10  Eric Blake  <ebb9@byu.net>
28780
28781         Share two-way algorithm.
28782         * lib/str-two-way.h: New file, merged from...
28783         * lib/memmem.c: ...here...
28784         * lib/strstr.c: ...and here.
28785         * modules/memmem (Files): Use it.
28786         * modules/strstr (Files): Likewise.
28787
28788         Avoid quadratic strstr implementations.
28789         * lib/strstr.c: New file.
28790         * m4/strstr.m4: Likewise.
28791         * modules/strstr: Likewise.
28792         * modules/strstr-tests: Likewise.
28793         * tests/test-strstr.c: Likewise.
28794         * lib/string.in.h (rpl_strstr): Declare.
28795         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
28796         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
28797         * modules/string (Makefile.am): Likewise.
28798         * MODULES.html.sh (string handling): Mention new module.
28799         * doc/functions/strstr.texi (strstr): Document the bug.
28800
28801 2008-01-10  Bruno Haible  <bruno@clisp.org>
28802
28803         * lib/relocatable.h (relocate): State whether result is freshly
28804         allocated or not.
28805         * lib/relocatable.c (relocate): Return a freshly allocated string
28806         instead of a pointer to a privately held string.
28807         Reported by Sylvain Beucler <beuc@gnu.org>.
28808
28809 2008-01-10  Colin Watson  <cjwatson@debian.org>
28810
28811         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
28812         s/S_ISNLK/S_ISLNK/.
28813
28814 2008-01-09  Bruno Haible  <bruno@clisp.org>
28815
28816         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
28817         and other files.
28818         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
28819         if it's only a guess.
28820         * modules/memmem: Simplify by depending on memmem-simple.
28821
28822 2008-01-09  Bruno Haible  <bruno@clisp.org>
28823
28824         Work around OpenBSD 4.0 tdelete() bug.
28825         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
28826         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
28827         macros and don't redefine the enum values.
28828         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
28829         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
28830         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
28831
28832 2008-01-09  Bruno Haible  <bruno@clisp.org>
28833
28834         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
28835         (main): Don't perform the tests if setlocale did not install a UTF-8
28836         locale. Needed on OpenBSD 4.0.
28837         * modules/wcwidth-tests (Depends-on): Add localcharset.
28838
28839 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
28840
28841         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
28842         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
28843         * NEWS: announce this.
28844         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
28845
28846 2008-01-09  Simon Josefsson  <simon@josefsson.org>
28847         and Eric Blake  <ebb9@byu.net>
28848
28849         Add memmem-simple module.
28850         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
28851         (gl_FUNC_MEMMEM): Separate performance from presence checks.
28852         * modules/memmem-simple: New file.
28853         * modules/memmem (Description): Tweak.
28854         * MODULES.html.sh (string handling): Mention new module.
28855         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
28856         addressed by memmem-simple.
28857         * NEWS: Document the difference.
28858
28859 2008-01-09  Eric Blake  <ebb9@byu.net>
28860
28861         Give gcc some memmem optimization hints.
28862         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
28863         (strcasestr): Declare as pure.
28864         * modules/memmem (Maintainer): Claim my implementation.
28865
28866 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28867
28868         Support AIX 6.1 and higher.
28869         * build-aux/config.libpath: Likewise.
28870         * build-aux/config.rpath: Likewise.
28871
28872 2008-01-08  Jim Meyering  <meyering@redhat.com>
28873             Bruno Haible  <bruno@clisp.org>
28874
28875         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
28876         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
28877         Reported by Peter Fales in
28878         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
28879
28880 2008-01-08  Bruno Haible  <bruno@clisp.org>
28881
28882         * modules/unictype/category-of (Depends-on): Add
28883         unictype/category-none.
28884         * modules/unictype/category-and-tests (Depends-on): Add
28885         unictype/category-{L,N,Lu,Nd}.
28886         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
28887         * modules/unictype/category-or-tests (Depends-on): Add
28888         unictype/category-{L,N}.
28889         * modules/unictype/category-name-tests (Depends-on): Add
28890         unictype/category-{Z,Nl}.
28891         Reported by Simon Josefsson.
28892
28893 2008-01-08  Bruno Haible  <bruno@clisp.org>
28894
28895         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
28896         convention better.
28897         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
28898         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
28899         Reported by Peter Miller <millerp@canb.auug.org.au>.
28900
28901 2008-01-08  Eric Blake  <ebb9@byu.net>
28902
28903         Rewrite memmem to guarantee linear complexity without malloc.
28904         * lib/memmem.c (memmem): Use Two-Way rather than
28905         Knuth-Morris-Pratt, to allow O(1) space usage.
28906         (critical_factorization, two_way_short_needle)
28907         (two_way_long_needle): New functions.
28908         (knuth_morris_pratt): Delete.
28909         * modules/memmem (Depends-on): No longer need malloca or stdbool.
28910         Add stdint.
28911         * tests/test-memmem.c (main): Add tests for periodic needle and
28912         sublinear performance.
28913         * doc/functions/memmem.texi (memmem): Document other deficiencies
28914         in cygwin and older glibc.
28915
28916 2008-01-08  Bruno Haible  <bruno@clisp.org>
28917
28918         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
28919         augmentation.
28920
28921 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
28922
28923         Add a configure time option: --disable-acl.
28924         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
28925         AC_ARG_ENABLE(acl).
28926
28927 2008-01-06  Simon Josefsson  <simon@josefsson.org>
28928
28929         * tests/test-localename.c: Don't include obsolete "setenv.h".
28930
28931         * modules/localename-tests (Depends-on): Need unsetenv.
28932
28933 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28934
28935         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
28936
28937 2008-01-06  Colin Watson  <cjwatson@debian.org>
28938
28939         * users.txt: Add man-db.
28940
28941 2008-01-07  Bruno Haible  <bruno@clisp.org>
28942
28943         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
28944         previous section name.
28945
28946 2008-01-07  Bruno Haible  <bruno@clisp.org>
28947
28948         * lib/progname.c (set_program_name): Don't strip off a leading
28949         "lt-" prefix outside a .libs directory.
28950         Suggested by Paul Eggert.
28951
28952 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
28953             Bruno Haible  <bruno@clisp.org>
28954
28955         Improve memory cleanup in 'relocatable' module.
28956         * lib/relocatable.h (compute_curr_prefix): Change return type to
28957         'char *'.
28958         * lib/relocatable.c (compute_curr_prefix): Change return type to
28959         'char *'. Free curr_installdir after use.
28960         (relocate): Free curr_prefix_better after use.
28961         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
28962
28963 2008-01-01  Bruno Haible  <bruno@clisp.org>
28964
28965         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
28966         failure on older glibc systems.
28967         Reported by Peter Fales <psfales@alcatel-lucent.com>.
28968
28969 2008-01-05  Eric Blake  <ebb9@byu.net>
28970
28971         Avoid quadratic system memmem.
28972         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
28973         Reported by Ralf Wildenhues.
28974
28975         Fix memmem test for mingw.
28976         * modules/memmem-tests (configure.ac): Check for alarm.
28977         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
28978         it.
28979         * doc/functions/memmem.texi: New file.
28980         * doc/gnulib.texi (Function Substitutes): Add memmem.
28981         Reported by Bruno Haible.
28982
28983 2008-01-04  Bruno Haible  <bruno@clisp.org>
28984
28985         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
28986         Require gl_HEADER_STRINGS_H_DEFAULTS, not
28987         gl_HEADER_STRING_H_DEFAULTS.
28988
28989 2008-01-04  Eric Blake  <ebb9@byu.net>
28990
28991         Shorten duration of memmem test.
28992         * tests/test-memmem.c (main): Use alarm to declare failure if test
28993         is taking too long.
28994         Reported by Ralf Wildenhues.
28995
28996 2007-12-21  Simon Josefsson  <simon@josefsson.org>
28997
28998         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
28999         string, needed by strerror.
29000
29001 2008-01-03  Colin Watson  <cjwatson@debian.org>
29002             Bruno Haible  <bruno@clisp.org>
29003
29004         * doc/gnulib-tool.texi (Localization): New section.
29005
29006 2008-01-02  Bruno Haible  <bruno@clisp.org>
29007
29008         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
29009         variables to 'unsigned char *' type.
29010         Reported by Paul Eggert.
29011
29012 2008-01-02  Jim Meyering  <jim@meyering.net>
29013
29014         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
29015
29016 2007-12-31  Jim Meyering  <jim@meyering.net>
29017
29018         Avoid use of private FTS type name.
29019         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
29020
29021 2007-12-30  Karl Berry  <karl@gnu.org>
29022
29023         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
29024         work around defect in Texinfo and/or the standalone Info browser.
29025
29026 2007-12-30  Bruno Haible  <bruno@clisp.org>
29027
29028         Unify 5 copies of the KMP code.
29029         * lib/str-kmp.h: New file.
29030         * lib/c-strcasestr.c: Include str-kmp.h.
29031         (knuth_morris_pratt): Remove function.
29032         (c_strcasestr): Update.
29033         * lib/c-strstr.c: Include str-kmp.h.
29034         (knuth_morris_pratt): Remove function.
29035         (c_strcasestr): Update.
29036         * lib/mbscasestr.c: Include str-kmp.h.
29037         (knuth_morris_pratt_unibyte): Remove function.
29038         * lib/mbsstr.c: Include str-kmp.h.
29039         (knuth_morris_pratt_unibyte): Remove function.
29040         * lib/strcasestr.c: Include str-kmp.h.
29041         (knuth_morris_pratt): Remove function.
29042         (strcasestr): Update.
29043         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
29044         * modules/c-strstr (Files): Likewise.
29045         * modules/mbscasestr (Files): Likewise.
29046         * modules/mbsstr (Files): Likewise.
29047         * modules/strcasestr (Files): Likewise.
29048         Suggested by Paul Eggert.
29049
29050 2007-12-30  Bruno Haible  <bruno@clisp.org>
29051
29052         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
29053         defined.
29054
29055 2007-12-30  Bruno Haible  <bruno@clisp.org>
29056
29057         * lib/xmalloca.h: Include xalloc.h.
29058         (xnmalloca): New macro.
29059
29060 2007-12-30  Bruno Haible  <bruno@clisp.org>
29061
29062         * lib/malloca.h (nmalloca): New macro.
29063         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
29064         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
29065         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
29066         knuth_morris_pratt_multibyte): Likewise.
29067         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
29068         knuth_morris_pratt_multibyte): Likewise.
29069         * lib/memmem.c (knuth_morris_pratt): Likewise.
29070         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
29071
29072 2007-12-25  Bruno Haible  <bruno@clisp.org>
29073
29074         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
29075         * lib/glob.c: Don't include openat.h.
29076         (link_exists2_p): Add back the code that deals with the
29077         !GLOB_ALTDIRFUNC case.
29078         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
29079         let it do the filename concatenation.
29080         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
29081         * modules/glob (Depends-on): Remove openat.
29082
29083 2007-12-31  Bruno Haible  <bruno@clisp.org>
29084
29085         * modules/dirfd (License): Change to LGPLv2+.
29086         Approved by Jim Meyering.
29087
29088 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
29089
29090         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
29091         when multiplying M by sizeof (size_t).
29092
29093 2007-12-10  Martin Lambers  <marlam@marlam.de>
29094
29095         Override getpagesize on mingw.
29096         * lib/getpagesize.c: New file.
29097         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
29098         * modules/getpagesize (Files): Add lib/getpagesize.c.
29099         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
29100         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
29101         REPLACE_GETPAGESIZE.
29102         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
29103
29104 2007-12-25  Bruno Haible  <bruno@clisp.org>
29105
29106         * modules/localcharset (Notice): New field.
29107         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
29108         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
29109
29110 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
29111             Bruno Haible  <bruno@clisp.org>
29112
29113         Avoid using the syntax symbol() in formatted documentation.
29114         * MODULES.html.sh (func_module): When replacing symbol() with a
29115         hyperlink, remove the parentheses. Show an error if some remain.
29116         Recognize and render the '...' syntax.
29117         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
29118         Rework. Add paragraph about GCC's inlining.
29119         * doc/alloca.texi: Likewise.
29120         * doc/error.texi: Remove parentheses from symbol reference.
29121         * doc/gnulib-intro.texi: Likewise.
29122         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
29123         * modules/fnmatch (Description): Reword to say "the ... function".
29124         * modules/full-read (Description): Likewise.
29125         * modules/full-write (Description): Likewise.
29126         * modules/safe-read (Description): Likewise.
29127         * modules/safe-write (Description): Likewise.
29128         * modules/strchrnul (Description): Likewise.
29129         * modules/trim (Description): Likewise.
29130         * modules/error (Description): Remove parentheses from symbol
29131         references.
29132         * modules/verror (Description): Likewise.
29133         Reported by Karl Berry.
29134
29135 2007-12-25  Bruno Haible  <bruno@clisp.org>
29136
29137         Fixup after 2007-10-16 commit.
29138         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
29139
29140 2007-12-24  Bruno Haible  <bruno@clisp.org>
29141
29142         Make --enable-relocatable work with DESTDIR.
29143         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
29144         to compute installdir from destprog.
29145         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
29146         also set the RELOC_DESTDIR variable.
29147         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
29148
29149 2007-12-24  Bruno Haible  <bruno@clisp.org>
29150
29151         Fix link error due to xalloc_die().
29152         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
29153         of xreadlink.
29154         * lib/relocwrapper.c: Update comments.
29155         * build-aux/install-reloc: Remove xreadlink.c from file list.
29156         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
29157         xreadlink.c.
29158         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
29159
29160 2007-12-24  Bruno Haible  <bruno@clisp.org>
29161
29162         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
29163         * lib/setenv.h: Remove file.
29164         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
29165         lib/setenv.h.
29166         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
29167         (Depends-on): Add stdlib.
29168         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
29169         gl_FUNC_UNSETENV.
29170         (Include): Replace setenv.h with <stdlib.h>.
29171         * modules/unsetenv: New file.
29172         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
29173         * lib/unsetenv.c: Include <stdlib.h> first.
29174         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
29175         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
29176         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
29177         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
29178         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
29179         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
29180         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
29181         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
29182         * doc/functions/unsetenv.texi: Update.
29183         * modules/xsetenv (Depends-on): Add unsetenv.
29184         * modules/getdate (Depends-on): Likewise.
29185         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
29186         * lib/xsetenv.c: Don't include setenv.h.
29187         * lib/getdate.y: Likewise.
29188         * lib/relocwrapper.c: Likewise.
29189         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
29190         (Depends-on): Add stdlib.
29191         * NEWS: Mention the changes.
29192         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
29193
29194 2007-12-23  Bruno Haible  <bruno@clisp.org>
29195
29196         * lib/memmem.c (memmem): Use lowercase variable names. Tab
29197         indentation.
29198
29199 2007-12-23  Bruno Haible  <bruno@clisp.org>
29200
29201         * lib/c-strcasestr.c: Add more comments.
29202         * lib/c-strstr.c: Likewise.
29203         * lib/mbscasestr.c: Likewise.
29204         * lib/mbsstr.c: Likewise.
29205         * lib/strcasestr.c: Likewise.
29206         * lib/memmem.c: Likewise.
29207
29208 2007-12-23  Bruno Haible  <bruno@clisp.org>
29209
29210         * tests/test-memmem.c: Include <string.h> first.
29211
29212 2007-12-22  Bruno Haible  <bruno@clisp.org>
29213
29214         * gnulib-tool (func_create_testdir): Change $auxdir while generating
29215         the contents of $testsbase.
29216         Reported by Ralf Wildenhues.
29217
29218 2007-12-22  Bruno Haible  <bruno@clisp.org>
29219
29220         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
29221         two variables local_ldadd_before, local_ldadd_last.
29222
29223 2007-12-20  Eric Blake  <ebb9@byu.net>
29224
29225         Work around circular library issue when cross-compiling.
29226         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
29227         that progname.o does not need to pull in rpl_memcmp.
29228
29229 2007-12-19  Eric Blake  <ebb9@byu.net>
29230
29231         Fix memmem to avoid O(n^2) worst-case complexity.
29232         * lib/memmem.c (knuth_morris_pratt): New function.
29233         (memmem): Use it if first few naive iterations fail.
29234         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
29235         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
29236         * modules/memchr (License): Likewise.
29237         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
29238         malloca.
29239         * tests/test-memmem.c: Rewrite, borrowing ideas from
29240         test-mbsstr1.c; the old version wouldn't even compile!
29241         * modules/memmem-tests: New file.
29242         * lib/string.in.h (rpl_memmem): Add declaration.
29243         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
29244         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
29245         REPLACE_MEMMEM.
29246
29247 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
29248
29249         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
29250         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
29251         before any system include files, and undef after them all.  This
29252         should fix a problem on VMS reported by John E. Malmberg in
29253         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
29254
29255 2007-12-17  Eric Blake  <ebb9@byu.net>
29256
29257         Revert addition of verify, for BSD/OS.
29258         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
29259         can't handle large files, for the sake of obsolete platforms.
29260         * modules/fseeko (Depends-on): Remove verify.
29261         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
29262         * doc/functions/ftello.texi (ftello): Likewise.
29263         * doc/functions/fgetpos.texi (fgetpos): Likewise.
29264         Reported by Larry Jones.
29265
29266 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
29267
29268         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
29269         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
29270
29271 2007-12-17  Jim Meyering  <meyering@redhat.com>
29272
29273         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
29274         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
29275         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
29276         * modules/getcwd (Depends-on): Add openat.
29277         Reported by Petr Salinger.
29278
29279 2007-12-17  Bruno Haible  <bruno@clisp.org>
29280
29281         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
29282         avoid a segmentation fault of the configure test on x86_64 systems.
29283
29284 2007-12-15  Jim Meyering  <meyering@redhat.com>
29285
29286         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
29287
29288 2007-12-13  Eric Blake  <ebb9@byu.net>
29289
29290         Another fseek test.
29291         * tests/test-fseek.c (main): Also test ungetc handling.
29292         * tests/test-fseeko.c (main): Likewise.
29293         * modules/fseeko (Depends-on): Add verify.
29294         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
29295         large.
29296         Reported by Larry Jones.
29297
29298         Fix fseeko on mingw.
29299         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
29300         seek.
29301
29302         Beef up fseek tests.
29303         * tests/test-fseek.c (main): Also test eof handling.
29304         * tests/test-fseeko.c (main): Likewise.
29305         Reported by Larry Jones.
29306
29307 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
29308
29309         Fix fseeko on BSD-based platforms.
29310         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
29311         successful seek.
29312
29313 2007-12-12  Eric Blake  <ebb9@byu.net>
29314
29315         Allow circular dependency of separate libtests.a
29316         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
29317         when use_libtests.
29318
29319 2007-12-11  Eric Blake  <ebb9@byu.net>
29320
29321         Fix bug with -0.0L in previous patch.
29322         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
29323         * tests/test-isnan.c (main): Also test on zeroes.
29324         * tests/test-isnanf.c (main): Likewise.
29325         * tests/test-isnanl.h (main): Likewise.
29326
29327         Detect pseudo-denormals on x86 even when cross-compiling.
29328         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
29329         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
29330         invalid bit patterns that happen to satisfy ==.
29331
29332         Avoid link failures with separate libtests.a.
29333         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
29334         last, to satisfy circular dependencies.
29335
29336 2007-12-11  Eric Blake  <ebb9@byu.net>
29337         and Bruno Haible  <bruno@clisp.org>
29338
29339         Fix OpenBSD 4.0 <float.h> handling of long double.
29340         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
29341         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
29342         * doc/headers/float.texi (float.h): Document OpenBSD bug.
29343
29344 2007-12-11  Jim Meyering  <meyering@redhat.com>
29345
29346         * users.txt: Add libvirt.
29347
29348         Support versions of autoconf prior to 2.59c.
29349         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
29350         if it is not already defined.
29351
29352 2007-12-09  Bruno Haible  <bruno@clisp.org>
29353
29354         Let 'gnulib-tool --import' collect sources needed for the tests in
29355         tests/ rather than in lib/.
29356         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
29357         argument. If true, add rules to generate libtests.a, and put libtests.a
29358         into $(LDADD). Consider source files in subdirectories and set
29359         uses_subdirs.
29360         (func_emit_initmacro_start, func_emit_initmacro_end,
29361         func_emit_initmacro_done): Pass all arguments explicitly.
29362         (func_import): Determine two module lists main_modules,
29363         testsrelated_modules. Determine use_libtests. Determine two variables
29364         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
29365         instead of just sed_transform_lib_file. Determine two variables
29366         main_files and testsrelated_files. Compute 'files' as the union of
29367         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
29368         func_add_or_update. In the generated gnulib-comp.m4, collect the
29369         object files for tests/ in different variables than those for lib/.
29370         Substitute LIBTESTS_LIBDEPS.
29371         (func_create_testdir): Combine the uses_subdirs results from
29372         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
29373
29374 2007-12-09  Bruno Haible  <bruno@clisp.org>
29375
29376         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
29377         the build-aux directory.
29378
29379 2007-12-09  Bruno Haible  <bruno@clisp.org>
29380
29381         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
29382         introduced on 2006-09-09.
29383
29384 2007-12-07  Jim Meyering  <meyering@redhat.com>
29385
29386         Let these macros work also with autoconf-2.59.
29387         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
29388         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
29389         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
29390
29391 2007-12-06  Jim Meyering  <meyering@redhat.com>
29392
29393         Avoid a configure-time syntax error in gl_FUNC_ACL.
29394         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
29395         function in each branch, before testing the cache variable.
29396
29397 2007-12-04  Eric Blake  <ebb9@byu.net>
29398
29399         Make scripts executable.
29400         * build-aux/config.guess: Add execute permissions.
29401         * build-aux/config.sub: Likewise.
29402         * build-aux/gendocs.sh: Likewise.
29403
29404         Fix frexp on mingw.
29405         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
29406         cross-compiling.
29407         * doc/functions/frexp.texi (frexp): Document the bug.
29408
29409         Make cygwin fseeko check more reliable.
29410         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
29411         version numbers, rather than unrelated feature check.
29412         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
29413         * doc/functions/ftello.texi (ftello): Likewise.
29414         Reported by Bruno Haible.
29415
29416         * m4/strerror.m4: Bump version number.
29417
29418 2007-12-03  Bruno Haible  <bruno@clisp.org>
29419
29420         * doc/functions/mprotect.texi: Mention the mingw problem.
29421
29422 2007-12-03  Eric Blake  <ebb9@byu.net>
29423
29424         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
29425         REPLACE_STRERROR is initialized before this macro.
29426
29427 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
29428
29429         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
29430         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
29431         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
29432         put -lsec in even for programs other than 'ls'.  This fixes a problem
29433         for gettext reported by Bruno Haible in
29434         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
29435         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
29436         Add support for Solaris 10.  This isn't efficient, but should get the
29437         job done for now.
29438
29439 2007-12-03  James Youngman  <jay@gnu.org>
29440
29441         * doc/regexprops-generic.texi: change "an close-group" to "a
29442         close-group" and "illegal" to "not allowed".
29443
29444 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29445
29446         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
29447         pr_byname.h. Needed for the rare case when the maintainer has done
29448         "make maintainer-clean" in the source directory and then attempts a
29449         build outside the source directory.
29450         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
29451         scripts_byname.h.
29452
29453 2007-12-02  Martin Lambers <marlam@marlam.de>
29454             Bruno Haible  <bruno@clisp.org>
29455
29456         * lib/getpagesize.h: Remove file.
29457         * lib/unistd.in.h: Include declaration of getpagesize here.
29458         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
29459         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
29460         HAVE_SYS_PARAM_H.
29461         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
29462         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
29463         * modules/getpagesize (Files): Remove lib/getpagesize.h.
29464         (Depends-on): Add unistd.
29465         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
29466         (Include): Use <unistd.h> instead of getpagesize.h.
29467         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
29468         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
29469         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
29470         gl_GETPAGESIZE invocation, already handled by module dependency.
29471         * lib/pagealign_alloc.c: Don't include getpagesize.h.
29472
29473 2007-12-02  Bruno Haible  <bruno@clisp.org>
29474
29475         * modules/strings-tests: New file.
29476         * tests/test-strings.c: New file.
29477
29478         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
29479         * lib/strings.in.h: New file.
29480         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
29481         * m4/strings_h.m4: New file.
29482         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
29483         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
29484         * modules/strings: New file.
29485         * modules/string (Makefile.am): Update.
29486         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
29487         Reported by Karl Berry.
29488
29489 2007-12-01  Eric Blake  <ebb9@byu.net>
29490
29491         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
29492         accomodate fix in cygwin 1.5.25.
29493
29494 2007-12-01  Jim Meyering  <meyering@redhat.com>
29495
29496         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
29497         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
29498         that would inhibit utf8-optimization of a regexp containing line-
29499         or buffer-anchors, e.g., `^', `$'.
29500
29501 2007-11-30  Bruno Haible  <bruno@clisp.org>
29502
29503         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
29504         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
29505         glthread_recursive_lock_init.
29506         * lib/lock.c (glthread_recursive_lock_init)
29507         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
29508         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
29509
29510 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
29511
29512         New function qset_acl, like set_acl but with syscall semantics.
29513         * lib/acl.h (qset_acl): New decl.
29514         * lib/acl.c (qset_acl): New function.
29515         (set_acl): Use new function.  Use more-consistent diagnostics.
29516
29517 2007-11-28  Jim Meyering  <meyering@redhat.com>
29518
29519         * modules/physmem (License): Change from GPL to LGPLv2+.
29520
29521 2007-11-26  Bruno Haible  <bruno@clisp.org>
29522
29523         * lib/vasnprintf.c (decode_long_double): Don't abort if the
29524         'long double' type has excess precision.
29525         Reported by Jim Meyering in
29526         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
29527
29528 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29529
29530         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
29531         Sync from <http://gnu.org/licenses>.
29532         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
29533         with license text from same location.
29534         * doc/maintain.texi, doc/standards.texi:  Sync from
29535         <http://savannah.gnu.org/projects/gnustandards>.
29536
29537 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
29538         and Jim Meyering  <meyering@redhat.com>
29539
29540         Adjust getdate' grammar to accept a slightly more regular language.
29541         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
29542         Before, the former was rejected.
29543         * lib/getdate.y (digits_to_date_time): New function, factored
29544         out of ...
29545         (number): ...here.  Just call digits_to_date_time.
29546         (hybrid): New non-terminal to handle an <unsigned number,
29547         signed relative offset> sequence consistently.
29548
29549 2007-11-18  Jim Meyering  <meyering@redhat.com>
29550
29551         Pull my changes from coreutils:
29552         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
29553         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
29554         use of $gnulib_tool_option_extras, so that it's separated from the
29555         preceding argument.
29556
29557         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
29558         * build-aux/bootstrap (cp_mark_as_generated): Create any required
29559         parent destination directories before copying a file into place.
29560
29561 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
29562
29563         bootstrap: work also with 4-argument variant of AC_INIT
29564         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
29565
29566 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
29567
29568         Port test-getaddrinfo to Solaris.
29569         Problem reported by Bruno Haible in
29570         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
29571         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
29572         explanation of setting 'hints'.
29573         Don't reject an implementation merely because it returns EAI_SERVICE.
29574         (EAI_SERVICE): Define to 0 if not defined.
29575
29576 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
29577
29578         The license of gnu-make and posix-shell is now "GPLed build tool".
29579         * modules/gnu-make (License): Likewise.
29580         * modules/posix-shell (License): Likewise.
29581
29582         New module posix-shell, for determining a POSIX shell
29583         or perhaps something that is close enough to a POSIX shell.
29584         * m4/posix-shell.m4: New file.
29585         * modules/posix-shell: New file.
29586
29587         * MODULES.html.sh: Mention new module.
29588
29589         New module gnu-make, for determining whether we're using GNU Make.
29590         * m4/gnu-make.m4: New file.
29591         * modules/gnu-make: New file.
29592         * MODULES.html.sh: Mention new module.
29593
29594 2007-11-14  Jim Meyering  <meyering@redhat.com>
29595
29596         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
29597         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
29598         use this macro to create a function _definition_.
29599         Remove useless "#undef ARGMATCH_DIE".
29600
29601 2007-11-14  Bruno Haible  <bruno@clisp.org>
29602
29603         * lib/config.charset: Update for OpenBSD 4.1.
29604         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
29605
29606 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
29607
29608         Document 64-bit #if problems in stdint.texi.
29609         * doc/headers/stdint.texi (stdint.h): Mention problems with
29610         64-bit-#if, and how to work around them.
29611
29612         Don't insist on 'long long int' support in the preprocessor.  It
29613         breaks too many things.  For example, PRIdMAX still uses a 'long
29614         long int' format with the latest Sun compiler, even though
29615         HAVE_LONG_LONG_INT isn't defined due to that compiler's
29616         preprocessor problem.  This causes the latest coreutils to dump
29617         core on Solaris 10 sparc with the Sun C compiler.
29618         Instead, fix the 2007-10-16 problem in a different way, by evaluating
29619         the troublesome expressions at configure-time, not at #if-time.
29620         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
29621         preprocessor.
29622         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
29623         compile-time C checks, done at 'configure'-time.
29624         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
29625         * modules/inttypes (Makefile): Substitute the new symbols that
29626         gl_INTTYPES_H now generates.
29627         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
29628
29629 2007-11-12  Bruno Haible  <bruno@clisp.org>
29630
29631         Tests for Unicode character classification functions.
29632
29633         * modules/unictype/bidicategory-byname-tests: New file.
29634         * modules/unictype/bidicategory-name-tests: New file.
29635         * modules/unictype/bidicategory-of-tests: New file.
29636         * modules/unictype/bidicategory-test-tests: New file.
29637         * modules/unictype/block-list-tests: New file.
29638         * modules/unictype/block-of-tests: New file.
29639         * modules/unictype/block-test-tests: New file.
29640         * modules/unictype/category-C-tests: New file.
29641         * modules/unictype/category-Cc-tests: New file.
29642         * modules/unictype/category-Cf-tests: New file.
29643         * modules/unictype/category-Cn-tests: New file.
29644         * modules/unictype/category-Co-tests: New file.
29645         * modules/unictype/category-Cs-tests: New file.
29646         * modules/unictype/category-L-tests: New file.
29647         * modules/unictype/category-Ll-tests: New file.
29648         * modules/unictype/category-Lm-tests: New file.
29649         * modules/unictype/category-Lo-tests: New file.
29650         * modules/unictype/category-Lt-tests: New file.
29651         * modules/unictype/category-Lu-tests: New file.
29652         * modules/unictype/category-M-tests: New file.
29653         * modules/unictype/category-Mc-tests: New file.
29654         * modules/unictype/category-Me-tests: New file.
29655         * modules/unictype/category-Mn-tests: New file.
29656         * modules/unictype/category-N-tests: New file.
29657         * modules/unictype/category-Nd-tests: New file.
29658         * modules/unictype/category-Nl-tests: New file.
29659         * modules/unictype/category-No-tests: New file.
29660         * modules/unictype/category-P-tests: New file.
29661         * modules/unictype/category-Pc-tests: New file.
29662         * modules/unictype/category-Pd-tests: New file.
29663         * modules/unictype/category-Pe-tests: New file.
29664         * modules/unictype/category-Pf-tests: New file.
29665         * modules/unictype/category-Pi-tests: New file.
29666         * modules/unictype/category-Po-tests: New file.
29667         * modules/unictype/category-Ps-tests: New file.
29668         * modules/unictype/category-S-tests: New file.
29669         * modules/unictype/category-Sc-tests: New file.
29670         * modules/unictype/category-Sk-tests: New file.
29671         * modules/unictype/category-Sm-tests: New file.
29672         * modules/unictype/category-So-tests: New file.
29673         * modules/unictype/category-Z-tests: New file.
29674         * modules/unictype/category-Zl-tests: New file.
29675         * modules/unictype/category-Zp-tests: New file.
29676         * modules/unictype/category-Zs-tests: New file.
29677         * modules/unictype/category-and-not-tests: New file.
29678         * modules/unictype/category-and-tests: New file.
29679         * modules/unictype/category-byname-tests: New file.
29680         * modules/unictype/category-name-tests: New file.
29681         * modules/unictype/category-none-tests: New file.
29682         * modules/unictype/category-of-tests: New file.
29683         * modules/unictype/category-or-tests: New file.
29684         * modules/unictype/category-test-withtable-tests: New file.
29685         * modules/unictype/combining-class-tests: New file.
29686         * modules/unictype/ctype-alnum-tests: New file.
29687         * modules/unictype/ctype-alpha-tests: New file.
29688         * modules/unictype/ctype-blank-tests: New file.
29689         * modules/unictype/ctype-cntrl-tests: New file.
29690         * modules/unictype/ctype-digit-tests: New file.
29691         * modules/unictype/ctype-graph-tests: New file.
29692         * modules/unictype/ctype-lower-tests: New file.
29693         * modules/unictype/ctype-print-tests: New file.
29694         * modules/unictype/ctype-punct-tests: New file.
29695         * modules/unictype/ctype-space-tests: New file.
29696         * modules/unictype/ctype-upper-tests: New file.
29697         * modules/unictype/ctype-xdigit-tests: New file.
29698         * modules/unictype/decimal-digit-tests: New file.
29699         * modules/unictype/digit-tests: New file.
29700         * modules/unictype/mirror-tests: New file.
29701         * modules/unictype/numeric-tests: New file.
29702         * modules/unictype/property-alphabetic-tests: New file.
29703         * modules/unictype/property-ascii-hex-digit-tests: New file.
29704         * modules/unictype/property-bidi-arabic-digit-tests: New file.
29705         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
29706         * modules/unictype/property-bidi-block-separator-tests: New file.
29707         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
29708         * modules/unictype/property-bidi-common-separator-tests: New file.
29709         * modules/unictype/property-bidi-control-tests: New file.
29710         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
29711         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
29712         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
29713         * modules/unictype/property-bidi-european-digit-tests: New file.
29714         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
29715         * modules/unictype/property-bidi-left-to-right-tests: New file.
29716         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
29717         * modules/unictype/property-bidi-other-neutral-tests: New file.
29718         * modules/unictype/property-bidi-pdf-tests: New file.
29719         * modules/unictype/property-bidi-segment-separator-tests: New file.
29720         * modules/unictype/property-bidi-whitespace-tests: New file.
29721         * modules/unictype/property-byname-tests: New file.
29722         * modules/unictype/property-combining-tests: New file.
29723         * modules/unictype/property-composite-tests: New file.
29724         * modules/unictype/property-currency-symbol-tests: New file.
29725         * modules/unictype/property-dash-tests: New file.
29726         * modules/unictype/property-decimal-digit-tests: New file.
29727         * modules/unictype/property-default-ignorable-code-point-tests: New file.
29728         * modules/unictype/property-deprecated-tests: New file.
29729         * modules/unictype/property-diacritic-tests: New file.
29730         * modules/unictype/property-extender-tests: New file.
29731         * modules/unictype/property-format-control-tests: New file.
29732         * modules/unictype/property-grapheme-base-tests: New file.
29733         * modules/unictype/property-grapheme-extend-tests: New file.
29734         * modules/unictype/property-grapheme-link-tests: New file.
29735         * modules/unictype/property-hex-digit-tests: New file.
29736         * modules/unictype/property-hyphen-tests: New file.
29737         * modules/unictype/property-id-continue-tests: New file.
29738         * modules/unictype/property-id-start-tests: New file.
29739         * modules/unictype/property-ideographic-tests: New file.
29740         * modules/unictype/property-ids-binary-operator-tests: New file.
29741         * modules/unictype/property-ids-trinary-operator-tests: New file.
29742         * modules/unictype/property-ignorable-control-tests: New file.
29743         * modules/unictype/property-iso-control-tests: New file.
29744         * modules/unictype/property-join-control-tests: New file.
29745         * modules/unictype/property-left-of-pair-tests: New file.
29746         * modules/unictype/property-line-separator-tests: New file.
29747         * modules/unictype/property-logical-order-exception-tests: New file.
29748         * modules/unictype/property-lowercase-tests: New file.
29749         * modules/unictype/property-math-tests: New file.
29750         * modules/unictype/property-non-break-tests: New file.
29751         * modules/unictype/property-not-a-character-tests: New file.
29752         * modules/unictype/property-numeric-tests: New file.
29753         * modules/unictype/property-other-alphabetic-tests: New file.
29754         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
29755         * modules/unictype/property-other-grapheme-extend-tests: New file.
29756         * modules/unictype/property-other-id-continue-tests: New file.
29757         * modules/unictype/property-other-id-start-tests: New file.
29758         * modules/unictype/property-other-lowercase-tests: New file.
29759         * modules/unictype/property-other-math-tests: New file.
29760         * modules/unictype/property-other-uppercase-tests: New file.
29761         * modules/unictype/property-paired-punctuation-tests: New file.
29762         * modules/unictype/property-paragraph-separator-tests: New file.
29763         * modules/unictype/property-pattern-syntax-tests: New file.
29764         * modules/unictype/property-pattern-white-space-tests: New file.
29765         * modules/unictype/property-private-use-tests: New file.
29766         * modules/unictype/property-punctuation-tests: New file.
29767         * modules/unictype/property-quotation-mark-tests: New file.
29768         * modules/unictype/property-radical-tests: New file.
29769         * modules/unictype/property-sentence-terminal-tests: New file.
29770         * modules/unictype/property-soft-dotted-tests: New file.
29771         * modules/unictype/property-space-tests: New file.
29772         * modules/unictype/property-terminal-punctuation-tests: New file.
29773         * modules/unictype/property-test-tests: New file.
29774         * modules/unictype/property-titlecase-tests: New file.
29775         * modules/unictype/property-unassigned-code-value-tests: New file.
29776         * modules/unictype/property-unified-ideograph-tests: New file.
29777         * modules/unictype/property-uppercase-tests: New file.
29778         * modules/unictype/property-variation-selector-tests: New file.
29779         * modules/unictype/property-white-space-tests: New file.
29780         * modules/unictype/property-xid-continue-tests: New file.
29781         * modules/unictype/property-xid-start-tests: New file.
29782         * modules/unictype/property-zero-width-tests: New file.
29783         * modules/unictype/scripts-tests: New file.
29784         * modules/unictype/syntax-c-ident-tests: New file.
29785         * modules/unictype/syntax-c-whitespace-tests: New file.
29786         * modules/unictype/syntax-java-ident-tests: New file.
29787         * modules/unictype/syntax-java-whitespace-tests: New file.
29788         * tests/unictype/test-bidi_byname.c: New file.
29789         * tests/unictype/test-bidi_name.c: New file.
29790         * tests/unictype/test-bidi_of.c: New file.
29791         * tests/unictype/test-bidi_test.c: New file.
29792         * tests/unictype/test-block_list.c: New file.
29793         * tests/unictype/test-block_of.c: New file.
29794         * tests/unictype/test-block_test.c: New file.
29795         * tests/unictype/test-categ_and.c: New file.
29796         * tests/unictype/test-categ_and_not.c: New file.
29797         * tests/unictype/test-categ_byname.c: New file.
29798         * tests/unictype/test-categ_name.c: New file.
29799         * tests/unictype/test-categ_none.c: New file.
29800         * tests/unictype/test-categ_of.c: New file.
29801         * tests/unictype/test-categ_or.c: New file.
29802         * tests/unictype/test-categ_test_withtable.c: New file.
29803         * tests/unictype/test-combining.c: New file.
29804         * tests/unictype/test-decdigit.c: New file.
29805         * tests/unictype/test-digit.c: New file.
29806         * tests/unictype/test-mirror.c: New file.
29807         * tests/unictype/test-numeric.c: New file.
29808         * tests/unictype/test-pr_byname.c: New file.
29809         * tests/unictype/test-pr_test.c: New file.
29810         * tests/unictype/test-predicate-part1.h: New file.
29811         * tests/unictype/test-predicate-part2.h: New file.
29812         * tests/unictype/test-scripts.c: New file.
29813         * tests/unictype/test-sy_c_ident.c: New file.
29814         * tests/unictype/test-sy_java_ident.c: New file.
29815
29816         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
29817         for Unicode 5.0.0.
29818         * tests/unictype/test-categ_Cc.c: Likewise.
29819         * tests/unictype/test-categ_Cf.c: Likewise.
29820         * tests/unictype/test-categ_Cn.c: Likewise.
29821         * tests/unictype/test-categ_Co.c: Likewise.
29822         * tests/unictype/test-categ_Cs.c: Likewise.
29823         * tests/unictype/test-categ_L.c: Likewise.
29824         * tests/unictype/test-categ_Ll.c: Likewise.
29825         * tests/unictype/test-categ_Lm.c: Likewise.
29826         * tests/unictype/test-categ_Lo.c: Likewise.
29827         * tests/unictype/test-categ_Lt.c: Likewise.
29828         * tests/unictype/test-categ_Lu.c: Likewise.
29829         * tests/unictype/test-categ_M.c: Likewise.
29830         * tests/unictype/test-categ_Mc.c: Likewise.
29831         * tests/unictype/test-categ_Me.c: Likewise.
29832         * tests/unictype/test-categ_Mn.c: Likewise.
29833         * tests/unictype/test-categ_N.c: Likewise.
29834         * tests/unictype/test-categ_Nd.c: Likewise.
29835         * tests/unictype/test-categ_Nl.c: Likewise.
29836         * tests/unictype/test-categ_No.c: Likewise.
29837         * tests/unictype/test-categ_P.c: Likewise.
29838         * tests/unictype/test-categ_Pc.c: Likewise.
29839         * tests/unictype/test-categ_Pd.c: Likewise.
29840         * tests/unictype/test-categ_Pe.c: Likewise.
29841         * tests/unictype/test-categ_Pf.c: Likewise.
29842         * tests/unictype/test-categ_Pi.c: Likewise.
29843         * tests/unictype/test-categ_Po.c: Likewise.
29844         * tests/unictype/test-categ_Ps.c: Likewise.
29845         * tests/unictype/test-categ_S.c: Likewise.
29846         * tests/unictype/test-categ_Sc.c: Likewise.
29847         * tests/unictype/test-categ_Sk.c: Likewise.
29848         * tests/unictype/test-categ_Sm.c: Likewise.
29849         * tests/unictype/test-categ_So.c: Likewise.
29850         * tests/unictype/test-categ_Z.c: Likewise.
29851         * tests/unictype/test-categ_Zl.c: Likewise.
29852         * tests/unictype/test-categ_Zp.c: Likewise.
29853         * tests/unictype/test-categ_Zs.c: Likewise.
29854         * tests/unictype/test-ctype_alnum.c: Likewise.
29855         * tests/unictype/test-ctype_alpha.c: Likewise.
29856         * tests/unictype/test-ctype_blank.c: Likewise.
29857         * tests/unictype/test-ctype_cntrl.c: Likewise.
29858         * tests/unictype/test-ctype_digit.c: Likewise.
29859         * tests/unictype/test-ctype_graph.c: Likewise.
29860         * tests/unictype/test-ctype_lower.c: Likewise.
29861         * tests/unictype/test-ctype_print.c: Likewise.
29862         * tests/unictype/test-ctype_punct.c: Likewise.
29863         * tests/unictype/test-ctype_space.c: Likewise.
29864         * tests/unictype/test-ctype_upper.c: Likewise.
29865         * tests/unictype/test-ctype_xdigit.c: Likewise.
29866         * tests/unictype/test-decdigit.h: Likewise.
29867         * tests/unictype/test-digit.h: Likewise.
29868         * tests/unictype/test-numeric.h: Likewise.
29869         * tests/unictype/test-pr_alphabetic.c: Likewise.
29870         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
29871         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
29872         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
29873         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
29874         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
29875         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
29876         * tests/unictype/test-pr_bidi_control.c: Likewise.
29877         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
29878         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
29879         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
29880         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
29881         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
29882         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
29883         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
29884         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
29885         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
29886         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
29887         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
29888         * tests/unictype/test-pr_combining.c: Likewise.
29889         * tests/unictype/test-pr_composite.c: Likewise.
29890         * tests/unictype/test-pr_currency_symbol.c: Likewise.
29891         * tests/unictype/test-pr_dash.c: Likewise.
29892         * tests/unictype/test-pr_decimal_digit.c: Likewise.
29893         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
29894         * tests/unictype/test-pr_deprecated.c: Likewise.
29895         * tests/unictype/test-pr_diacritic.c: Likewise.
29896         * tests/unictype/test-pr_extender.c: Likewise.
29897         * tests/unictype/test-pr_format_control.c: Likewise.
29898         * tests/unictype/test-pr_grapheme_base.c: Likewise.
29899         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
29900         * tests/unictype/test-pr_grapheme_link.c: Likewise.
29901         * tests/unictype/test-pr_hex_digit.c: Likewise.
29902         * tests/unictype/test-pr_hyphen.c: Likewise.
29903         * tests/unictype/test-pr_id_continue.c: Likewise.
29904         * tests/unictype/test-pr_id_start.c: Likewise.
29905         * tests/unictype/test-pr_ideographic.c: Likewise.
29906         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
29907         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
29908         * tests/unictype/test-pr_ignorable_control.c: Likewise.
29909         * tests/unictype/test-pr_iso_control.c: Likewise.
29910         * tests/unictype/test-pr_join_control.c: Likewise.
29911         * tests/unictype/test-pr_left_of_pair.c: Likewise.
29912         * tests/unictype/test-pr_line_separator.c: Likewise.
29913         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
29914         * tests/unictype/test-pr_lowercase.c: Likewise.
29915         * tests/unictype/test-pr_math.c: Likewise.
29916         * tests/unictype/test-pr_non_break.c: Likewise.
29917         * tests/unictype/test-pr_not_a_character.c: Likewise.
29918         * tests/unictype/test-pr_numeric.c: Likewise.
29919         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
29920         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
29921         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
29922         * tests/unictype/test-pr_other_id_continue.c: Likewise.
29923         * tests/unictype/test-pr_other_id_start.c: Likewise.
29924         * tests/unictype/test-pr_other_lowercase.c: Likewise.
29925         * tests/unictype/test-pr_other_math.c: Likewise.
29926         * tests/unictype/test-pr_other_uppercase.c: Likewise.
29927         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
29928         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
29929         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
29930         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
29931         * tests/unictype/test-pr_private_use.c: Likewise.
29932         * tests/unictype/test-pr_punctuation.c: Likewise.
29933         * tests/unictype/test-pr_quotation_mark.c: Likewise.
29934         * tests/unictype/test-pr_radical.c: Likewise.
29935         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
29936         * tests/unictype/test-pr_soft_dotted.c: Likewise.
29937         * tests/unictype/test-pr_space.c: Likewise.
29938         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
29939         * tests/unictype/test-pr_titlecase.c: Likewise.
29940         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
29941         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
29942         * tests/unictype/test-pr_uppercase.c: Likewise.
29943         * tests/unictype/test-pr_variation_selector.c: Likewise.
29944         * tests/unictype/test-pr_white_space.c: Likewise.
29945         * tests/unictype/test-pr_xid_continue.c: Likewise.
29946         * tests/unictype/test-pr_xid_start.c: Likewise.
29947         * tests/unictype/test-pr_zero_width.c: Likewise.
29948         * tests/unictype/test-sy_c_whitespace.c: Likewise.
29949         * tests/unictype/test-sy_java_whitespace.c: Likewise.
29950
29951 2007-11-12  Bruno Haible  <bruno@clisp.org>
29952
29953         Unicode character classification functions.
29954         * lib/unictype.h: New file.
29955         * modules/unictype/base: New file.
29956         * modules/unictype/category-L: New file.
29957         * modules/unictype/category-Lu: New file.
29958         * modules/unictype/category-Ll: New file.
29959         * modules/unictype/category-Lt: New file.
29960         * modules/unictype/category-Lm: New file.
29961         * modules/unictype/category-Lo: New file.
29962         * modules/unictype/category-M: New file.
29963         * modules/unictype/category-Mn: New file.
29964         * modules/unictype/category-Mc: New file.
29965         * modules/unictype/category-Me: New file.
29966         * modules/unictype/category-N: New file.
29967         * modules/unictype/category-Nd: New file.
29968         * modules/unictype/category-Nl: New file.
29969         * modules/unictype/category-No: New file.
29970         * modules/unictype/category-P: New file.
29971         * modules/unictype/category-Pc: New file.
29972         * modules/unictype/category-Pd: New file.
29973         * modules/unictype/category-Ps: New file.
29974         * modules/unictype/category-Pe: New file.
29975         * modules/unictype/category-Pi: New file.
29976         * modules/unictype/category-Pf: New file.
29977         * modules/unictype/category-Po: New file.
29978         * modules/unictype/category-S: New file.
29979         * modules/unictype/category-Sm: New file.
29980         * modules/unictype/category-Sc: New file.
29981         * modules/unictype/category-Sk: New file.
29982         * modules/unictype/category-So: New file.
29983         * modules/unictype/category-Z: New file.
29984         * modules/unictype/category-Zs: New file.
29985         * modules/unictype/category-Zl: New file.
29986         * modules/unictype/category-Zp: New file.
29987         * modules/unictype/category-C: New file.
29988         * modules/unictype/category-Cc: New file.
29989         * modules/unictype/category-Cf: New file.
29990         * modules/unictype/category-Cs: New file.
29991         * modules/unictype/category-Co: New file.
29992         * modules/unictype/category-Cn: New file.
29993         * modules/unictype/category-or: New file.
29994         * modules/unictype/category-of: New file.
29995         * modules/unictype/category-test: New file.
29996         * modules/unictype/category-test-withtable: New file.
29997         * modules/unictype/category-byname: New file.
29998         * modules/unictype/category-none: New file.
29999         * modules/unictype/category-and: New file.
30000         * modules/unictype/category-and-not: New file.
30001         * modules/unictype/category-name: New file.
30002         * modules/unictype/combining-class: New file.
30003         * modules/unictype/category-all: New file.
30004         * modules/unictype/bidicategory-all: New file.
30005         * modules/unictype/bidicategory-byname: New file.
30006         * modules/unictype/bidicategory-name: New file.
30007         * modules/unictype/bidicategory-of: New file.
30008         * modules/unictype/bidicategory-test: New file.
30009         * modules/unictype/decimal-digit: New file.
30010         * modules/unictype/digit: New file.
30011         * modules/unictype/numeric: New file.
30012         * modules/unictype/mirror: New file.
30013         * modules/unictype/property-white-space: New file.
30014         * modules/unictype/property-alphabetic: New file.
30015         * modules/unictype/property-other-alphabetic: New file.
30016         * modules/unictype/property-not-a-character: New file.
30017         * modules/unictype/property-default-ignorable-code-point: New file.
30018         * modules/unictype/property-other-default-ignorable-code-point: New
30019         file.
30020         * modules/unictype/property-deprecated: New file.
30021         * modules/unictype/property-logical-order-exception: New file.
30022         * modules/unictype/property-variation-selector: New file.
30023         * modules/unictype/property-private-use: New file.
30024         * modules/unictype/property-unassigned-code-value: New file.
30025         * modules/unictype/property-uppercase: New file.
30026         * modules/unictype/property-other-uppercase: New file.
30027         * modules/unictype/property-lowercase: New file.
30028         * modules/unictype/property-other-lowercase: New file.
30029         * modules/unictype/property-titlecase: New file.
30030         * modules/unictype/property-soft-dotted: New file.
30031         * modules/unictype/property-id-start: New file.
30032         * modules/unictype/property-other-id-start: New file.
30033         * modules/unictype/property-id-continue: New file.
30034         * modules/unictype/property-other-id-continue: New file.
30035         * modules/unictype/property-xid-start: New file.
30036         * modules/unictype/property-xid-continue: New file.
30037         * modules/unictype/property-pattern-white-space: New file.
30038         * modules/unictype/property-pattern-syntax: New file.
30039         * modules/unictype/property-join-control: New file.
30040         * modules/unictype/property-grapheme-base: New file.
30041         * modules/unictype/property-grapheme-extend: New file.
30042         * modules/unictype/property-other-grapheme-extend: New file.
30043         * modules/unictype/property-grapheme-link: New file.
30044         * modules/unictype/property-bidi-control: New file.
30045         * modules/unictype/property-bidi-left-to-right: New file.
30046         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
30047         * modules/unictype/property-bidi-arabic-right-to-left: New file.
30048         * modules/unictype/property-bidi-european-digit: New file.
30049         * modules/unictype/property-bidi-eur-num-separator: New file.
30050         * modules/unictype/property-bidi-eur-num-terminator: New file.
30051         * modules/unictype/property-bidi-arabic-digit: New file.
30052         * modules/unictype/property-bidi-common-separator: New file.
30053         * modules/unictype/property-bidi-block-separator: New file.
30054         * modules/unictype/property-bidi-segment-separator: New file.
30055         * modules/unictype/property-bidi-whitespace: New file.
30056         * modules/unictype/property-bidi-non-spacing-mark: New file.
30057         * modules/unictype/property-bidi-boundary-neutral: New file.
30058         * modules/unictype/property-bidi-pdf: New file.
30059         * modules/unictype/property-bidi-embedding-or-override: New file.
30060         * modules/unictype/property-bidi-other-neutral: New file.
30061         * modules/unictype/property-hex-digit: New file.
30062         * modules/unictype/property-ascii-hex-digit: New file.
30063         * modules/unictype/property-ideographic: New file.
30064         * modules/unictype/property-unified-ideograph: New file.
30065         * modules/unictype/property-radical: New file.
30066         * modules/unictype/property-ids-binary-operator: New file.
30067         * modules/unictype/property-ids-trinary-operator: New file.
30068         * modules/unictype/property-zero-width: New file.
30069         * modules/unictype/property-space: New file.
30070         * modules/unictype/property-non-break: New file.
30071         * modules/unictype/property-iso-control: New file.
30072         * modules/unictype/property-format-control: New file.
30073         * modules/unictype/property-dash: New file.
30074         * modules/unictype/property-hyphen: New file.
30075         * modules/unictype/property-punctuation: New file.
30076         * modules/unictype/property-line-separator: New file.
30077         * modules/unictype/property-paragraph-separator: New file.
30078         * modules/unictype/property-quotation-mark: New file.
30079         * modules/unictype/property-sentence-terminal: New file.
30080         * modules/unictype/property-terminal-punctuation: New file.
30081         * modules/unictype/property-currency-symbol: New file.
30082         * modules/unictype/property-math: New file.
30083         * modules/unictype/property-other-math: New file.
30084         * modules/unictype/property-paired-punctuation: New file.
30085         * modules/unictype/property-left-of-pair: New file.
30086         * modules/unictype/property-combining: New file.
30087         * modules/unictype/property-composite: New file.
30088         * modules/unictype/property-decimal-digit: New file.
30089         * modules/unictype/property-numeric: New file.
30090         * modules/unictype/property-diacritic: New file.
30091         * modules/unictype/property-extender: New file.
30092         * modules/unictype/property-ignorable-control: New file.
30093         * modules/unictype/property-test: New file.
30094         * modules/unictype/property-byname: New file.
30095         * modules/unictype/property-all: New file.
30096         * modules/unictype/scripts: New file.
30097         * modules/unictype/scripts-all: New file.
30098         * modules/unictype/block-of: New file.
30099         * modules/unictype/block-test: New file.
30100         * modules/unictype/block-list: New file.
30101         * modules/unictype/block-all: New file.
30102         * modules/unictype/syntax-c-whitespace: New file.
30103         * modules/unictype/syntax-java-whitespace: New file.
30104         * modules/unictype/syntax-c-ident: New file.
30105         * modules/unictype/syntax-java-ident: New file.
30106         * modules/unictype/ctype-alnum: New file.
30107         * modules/unictype/ctype-alpha: New file.
30108         * modules/unictype/ctype-cntrl: New file.
30109         * modules/unictype/ctype-digit: New file.
30110         * modules/unictype/ctype-graph: New file.
30111         * modules/unictype/ctype-lower: New file.
30112         * modules/unictype/ctype-print: New file.
30113         * modules/unictype/ctype-punct: New file.
30114         * modules/unictype/ctype-space: New file.
30115         * modules/unictype/ctype-upper: New file.
30116         * modules/unictype/ctype-xdigit: New file.
30117         * modules/unictype/ctype-blank: New file.
30118         * lib/unictype/bidi_byname.c: New file.
30119         * lib/unictype/bidi_name.c: New file.
30120         * lib/unictype/bidi_of.c: New file.
30121         * lib/unictype/bidi_test.c: New file.
30122         * lib/unictype/bitmap.h: New file.
30123         * lib/unictype/block_test.c: New file.
30124         * lib/unictype/blocks.c: New file.
30125         * lib/unictype/categ_C.c: New file.
30126         * lib/unictype/categ_Cc.c: New file.
30127         * lib/unictype/categ_Cf.c: New file.
30128         * lib/unictype/categ_Cn.c: New file.
30129         * lib/unictype/categ_Co.c: New file.
30130         * lib/unictype/categ_Cs.c: New file.
30131         * lib/unictype/categ_L.c: New file.
30132         * lib/unictype/categ_Ll.c: New file.
30133         * lib/unictype/categ_Lm.c: New file.
30134         * lib/unictype/categ_Lo.c: New file.
30135         * lib/unictype/categ_Lt.c: New file.
30136         * lib/unictype/categ_Lu.c: New file.
30137         * lib/unictype/categ_M.c: New file.
30138         * lib/unictype/categ_Mc.c: New file.
30139         * lib/unictype/categ_Me.c: New file.
30140         * lib/unictype/categ_Mn.c: New file.
30141         * lib/unictype/categ_N.c: New file.
30142         * lib/unictype/categ_Nd.c: New file.
30143         * lib/unictype/categ_Nl.c: New file.
30144         * lib/unictype/categ_No.c: New file.
30145         * lib/unictype/categ_P.c: New file.
30146         * lib/unictype/categ_Pc.c: New file.
30147         * lib/unictype/categ_Pd.c: New file.
30148         * lib/unictype/categ_Pe.c: New file.
30149         * lib/unictype/categ_Pf.c: New file.
30150         * lib/unictype/categ_Pi.c: New file.
30151         * lib/unictype/categ_Po.c: New file.
30152         * lib/unictype/categ_Ps.c: New file.
30153         * lib/unictype/categ_S.c: New file.
30154         * lib/unictype/categ_Sc.c: New file.
30155         * lib/unictype/categ_Sk.c: New file.
30156         * lib/unictype/categ_Sm.c: New file.
30157         * lib/unictype/categ_So.c: New file.
30158         * lib/unictype/categ_Z.c: New file.
30159         * lib/unictype/categ_Zl.c: New file.
30160         * lib/unictype/categ_Zp.c: New file.
30161         * lib/unictype/categ_Zs.c: New file.
30162         * lib/unictype/categ_and.c: New file.
30163         * lib/unictype/categ_and_not.c: New file.
30164         * lib/unictype/categ_byname.c: New file.
30165         * lib/unictype/categ_name.c: New file.
30166         * lib/unictype/categ_none.c: New file.
30167         * lib/unictype/categ_of.c: New file.
30168         * lib/unictype/categ_or.c: New file.
30169         * lib/unictype/categ_test.c: New file.
30170         * lib/unictype/combining.c: New file.
30171         * lib/unictype/ctype_alnum.c: New file.
30172         * lib/unictype/ctype_alpha.c: New file.
30173         * lib/unictype/ctype_blank.c: New file.
30174         * lib/unictype/ctype_cntrl.c: New file.
30175         * lib/unictype/ctype_digit.c: New file.
30176         * lib/unictype/ctype_graph.c: New file.
30177         * lib/unictype/ctype_lower.c: New file.
30178         * lib/unictype/ctype_print.c: New file.
30179         * lib/unictype/ctype_punct.c: New file.
30180         * lib/unictype/ctype_space.c: New file.
30181         * lib/unictype/ctype_upper.c: New file.
30182         * lib/unictype/ctype_xdigit.c: New file.
30183         * lib/unictype/decdigit.c: New file.
30184         * lib/unictype/digit.c: New file.
30185         * lib/unictype/identsyntaxmap.h: New file.
30186         * lib/unictype/mirror.c: New file.
30187         * lib/unictype/numeric.c: New file.
30188         * lib/unictype/pr_alphabetic.c: New file.
30189         * lib/unictype/pr_ascii_hex_digit.c: New file.
30190         * lib/unictype/pr_bidi_arabic_digit.c: New file.
30191         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
30192         * lib/unictype/pr_bidi_block_separator.c: New file.
30193         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
30194         * lib/unictype/pr_bidi_common_separator.c: New file.
30195         * lib/unictype/pr_bidi_control.c: New file.
30196         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
30197         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
30198         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
30199         * lib/unictype/pr_bidi_european_digit.c: New file.
30200         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
30201         * lib/unictype/pr_bidi_left_to_right.c: New file.
30202         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
30203         * lib/unictype/pr_bidi_other_neutral.c: New file.
30204         * lib/unictype/pr_bidi_pdf.c: New file.
30205         * lib/unictype/pr_bidi_segment_separator.c: New file.
30206         * lib/unictype/pr_bidi_whitespace.c: New file.
30207         * lib/unictype/pr_byname.c: New file.
30208         * lib/unictype/pr_byname.gperf: New file.
30209         * lib/unictype/pr_combining.c: New file.
30210         * lib/unictype/pr_composite.c: New file.
30211         * lib/unictype/pr_currency_symbol.c: New file.
30212         * lib/unictype/pr_dash.c: New file.
30213         * lib/unictype/pr_decimal_digit.c: New file.
30214         * lib/unictype/pr_default_ignorable_code_point.c: New file.
30215         * lib/unictype/pr_deprecated.c: New file.
30216         * lib/unictype/pr_diacritic.c: New file.
30217         * lib/unictype/pr_extender.c: New file.
30218         * lib/unictype/pr_format_control.c: New file.
30219         * lib/unictype/pr_grapheme_base.c: New file.
30220         * lib/unictype/pr_grapheme_extend.c: New file.
30221         * lib/unictype/pr_grapheme_link.c: New file.
30222         * lib/unictype/pr_hex_digit.c: New file.
30223         * lib/unictype/pr_hyphen.c: New file.
30224         * lib/unictype/pr_id_continue.c: New file.
30225         * lib/unictype/pr_id_start.c: New file.
30226         * lib/unictype/pr_ideographic.c: New file.
30227         * lib/unictype/pr_ids_binary_operator.c: New file.
30228         * lib/unictype/pr_ids_trinary_operator.c: New file.
30229         * lib/unictype/pr_ignorable_control.c: New file.
30230         * lib/unictype/pr_iso_control.c: New file.
30231         * lib/unictype/pr_join_control.c: New file.
30232         * lib/unictype/pr_left_of_pair.c: New file.
30233         * lib/unictype/pr_line_separator.c: New file.
30234         * lib/unictype/pr_logical_order_exception.c: New file.
30235         * lib/unictype/pr_lowercase.c: New file.
30236         * lib/unictype/pr_math.c: New file.
30237         * lib/unictype/pr_non_break.c: New file.
30238         * lib/unictype/pr_not_a_character.c: New file.
30239         * lib/unictype/pr_numeric.c: New file.
30240         * lib/unictype/pr_other_alphabetic.c: New file.
30241         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
30242         * lib/unictype/pr_other_grapheme_extend.c: New file.
30243         * lib/unictype/pr_other_id_continue.c: New file.
30244         * lib/unictype/pr_other_id_start.c: New file.
30245         * lib/unictype/pr_other_lowercase.c: New file.
30246         * lib/unictype/pr_other_math.c: New file.
30247         * lib/unictype/pr_other_uppercase.c: New file.
30248         * lib/unictype/pr_paired_punctuation.c: New file.
30249         * lib/unictype/pr_paragraph_separator.c: New file.
30250         * lib/unictype/pr_pattern_syntax.c: New file.
30251         * lib/unictype/pr_pattern_white_space.c: New file.
30252         * lib/unictype/pr_private_use.c: New file.
30253         * lib/unictype/pr_punctuation.c: New file.
30254         * lib/unictype/pr_quotation_mark.c: New file.
30255         * lib/unictype/pr_radical.c: New file.
30256         * lib/unictype/pr_sentence_terminal.c: New file.
30257         * lib/unictype/pr_soft_dotted.c: New file.
30258         * lib/unictype/pr_space.c: New file.
30259         * lib/unictype/pr_terminal_punctuation.c: New file.
30260         * lib/unictype/pr_test.c: New file.
30261         * lib/unictype/pr_titlecase.c: New file.
30262         * lib/unictype/pr_unassigned_code_value.c: New file.
30263         * lib/unictype/pr_unified_ideograph.c: New file.
30264         * lib/unictype/pr_uppercase.c: New file.
30265         * lib/unictype/pr_variation_selector.c: New file.
30266         * lib/unictype/pr_white_space.c: New file.
30267         * lib/unictype/pr_xid_continue.c: New file.
30268         * lib/unictype/pr_xid_start.c: New file.
30269         * lib/unictype/pr_zero_width.c: New file.
30270         * lib/unictype/scripts.c: New file.
30271         * lib/unictype/sy_c_ident.c: New file.
30272         * lib/unictype/sy_c_whitespace.c: New file.
30273         * lib/unictype/sy_java_ident.c: New file.
30274         * lib/unictype/sy_java_whitespace.c: New file.
30275
30276         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
30277         Unicode 5.0.0.
30278         * lib/unictype/blocks.h: Likewise.
30279         * lib/unictype/categ_C.h: Likewise.
30280         * lib/unictype/categ_Cc.h: Likewise.
30281         * lib/unictype/categ_Cf.h: Likewise.
30282         * lib/unictype/categ_Cn.h: Likewise.
30283         * lib/unictype/categ_Co.h: Likewise.
30284         * lib/unictype/categ_Cs.h: Likewise.
30285         * lib/unictype/categ_L.h: Likewise.
30286         * lib/unictype/categ_Ll.h: Likewise.
30287         * lib/unictype/categ_Lm.h: Likewise.
30288         * lib/unictype/categ_Lo.h: Likewise.
30289         * lib/unictype/categ_Lt.h: Likewise.
30290         * lib/unictype/categ_Lu.h: Likewise.
30291         * lib/unictype/categ_M.h: Likewise.
30292         * lib/unictype/categ_Mc.h: Likewise.
30293         * lib/unictype/categ_Me.h: Likewise.
30294         * lib/unictype/categ_Mn.h: Likewise.
30295         * lib/unictype/categ_N.h: Likewise.
30296         * lib/unictype/categ_Nd.h: Likewise.
30297         * lib/unictype/categ_Nl.h: Likewise.
30298         * lib/unictype/categ_No.h: Likewise.
30299         * lib/unictype/categ_P.h: Likewise.
30300         * lib/unictype/categ_Pc.h: Likewise.
30301         * lib/unictype/categ_Pd.h: Likewise.
30302         * lib/unictype/categ_Pe.h: Likewise.
30303         * lib/unictype/categ_Pf.h: Likewise.
30304         * lib/unictype/categ_Pi.h: Likewise.
30305         * lib/unictype/categ_Po.h: Likewise.
30306         * lib/unictype/categ_Ps.h: Likewise.
30307         * lib/unictype/categ_S.h: Likewise.
30308         * lib/unictype/categ_Sc.h: Likewise.
30309         * lib/unictype/categ_Sk.h: Likewise.
30310         * lib/unictype/categ_Sm.h: Likewise.
30311         * lib/unictype/categ_So.h: Likewise.
30312         * lib/unictype/categ_Z.h: Likewise.
30313         * lib/unictype/categ_Zl.h: Likewise.
30314         * lib/unictype/categ_Zp.h: Likewise.
30315         * lib/unictype/categ_Zs.h: Likewise.
30316         * lib/unictype/categ_of.h: Likewise.
30317         * lib/unictype/combining.h: Likewise.
30318         * lib/unictype/ctype_alnum.h: Likewise.
30319         * lib/unictype/ctype_alpha.h: Likewise.
30320         * lib/unictype/ctype_blank.h: Likewise.
30321         * lib/unictype/ctype_cntrl.h: Likewise.
30322         * lib/unictype/ctype_digit.h: Likewise.
30323         * lib/unictype/ctype_graph.h: Likewise.
30324         * lib/unictype/ctype_lower.h: Likewise.
30325         * lib/unictype/ctype_print.h: Likewise.
30326         * lib/unictype/ctype_punct.h: Likewise.
30327         * lib/unictype/ctype_space.h: Likewise.
30328         * lib/unictype/ctype_upper.h: Likewise.
30329         * lib/unictype/ctype_xdigit.h: Likewise.
30330         * lib/unictype/decdigit.h: Likewise.
30331         * lib/unictype/digit.h: Likewise.
30332         * lib/unictype/mirror.h: Likewise.
30333         * lib/unictype/numeric.h: Likewise.
30334         * lib/unictype/pr_alphabetic.h: Likewise.
30335         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
30336         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
30337         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
30338         * lib/unictype/pr_bidi_block_separator.h: Likewise.
30339         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
30340         * lib/unictype/pr_bidi_common_separator.h: Likewise.
30341         * lib/unictype/pr_bidi_control.h: Likewise.
30342         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
30343         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
30344         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
30345         * lib/unictype/pr_bidi_european_digit.h: Likewise.
30346         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
30347         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
30348         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
30349         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
30350         * lib/unictype/pr_bidi_pdf.h: Likewise.
30351         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
30352         * lib/unictype/pr_bidi_whitespace.h: Likewise.
30353         * lib/unictype/pr_combining.h: Likewise.
30354         * lib/unictype/pr_composite.h: Likewise.
30355         * lib/unictype/pr_currency_symbol.h: Likewise.
30356         * lib/unictype/pr_dash.h: Likewise.
30357         * lib/unictype/pr_decimal_digit.h: Likewise.
30358         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
30359         * lib/unictype/pr_deprecated.h: Likewise.
30360         * lib/unictype/pr_diacritic.h: Likewise.
30361         * lib/unictype/pr_extender.h: Likewise.
30362         * lib/unictype/pr_format_control.h: Likewise.
30363         * lib/unictype/pr_grapheme_base.h: Likewise.
30364         * lib/unictype/pr_grapheme_extend.h: Likewise.
30365         * lib/unictype/pr_grapheme_link.h: Likewise.
30366         * lib/unictype/pr_hex_digit.h: Likewise.
30367         * lib/unictype/pr_hyphen.h: Likewise.
30368         * lib/unictype/pr_id_continue.h: Likewise.
30369         * lib/unictype/pr_id_start.h: Likewise.
30370         * lib/unictype/pr_ideographic.h: Likewise.
30371         * lib/unictype/pr_ids_binary_operator.h: Likewise.
30372         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
30373         * lib/unictype/pr_ignorable_control.h: Likewise.
30374         * lib/unictype/pr_iso_control.h: Likewise.
30375         * lib/unictype/pr_join_control.h: Likewise.
30376         * lib/unictype/pr_left_of_pair.h: Likewise.
30377         * lib/unictype/pr_line_separator.h: Likewise.
30378         * lib/unictype/pr_logical_order_exception.h: Likewise.
30379         * lib/unictype/pr_lowercase.h: Likewise.
30380         * lib/unictype/pr_math.h: Likewise.
30381         * lib/unictype/pr_non_break.h: Likewise.
30382         * lib/unictype/pr_not_a_character.h: Likewise.
30383         * lib/unictype/pr_numeric.h: Likewise.
30384         * lib/unictype/pr_other_alphabetic.h: Likewise.
30385         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
30386         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
30387         * lib/unictype/pr_other_id_continue.h: Likewise.
30388         * lib/unictype/pr_other_id_start.h: Likewise.
30389         * lib/unictype/pr_other_lowercase.h: Likewise.
30390         * lib/unictype/pr_other_math.h: Likewise.
30391         * lib/unictype/pr_other_uppercase.h: Likewise.
30392         * lib/unictype/pr_paired_punctuation.h: Likewise.
30393         * lib/unictype/pr_paragraph_separator.h: Likewise.
30394         * lib/unictype/pr_pattern_syntax.h: Likewise.
30395         * lib/unictype/pr_pattern_white_space.h: Likewise.
30396         * lib/unictype/pr_private_use.h: Likewise.
30397         * lib/unictype/pr_punctuation.h: Likewise.
30398         * lib/unictype/pr_quotation_mark.h: Likewise.
30399         * lib/unictype/pr_radical.h: Likewise.
30400         * lib/unictype/pr_sentence_terminal.h: Likewise.
30401         * lib/unictype/pr_soft_dotted.h: Likewise.
30402         * lib/unictype/pr_space.h: Likewise.
30403         * lib/unictype/pr_terminal_punctuation.h: Likewise.
30404         * lib/unictype/pr_titlecase.h: Likewise.
30405         * lib/unictype/pr_unassigned_code_value.h: Likewise.
30406         * lib/unictype/pr_unified_ideograph.h: Likewise.
30407         * lib/unictype/pr_uppercase.h: Likewise.
30408         * lib/unictype/pr_variation_selector.h: Likewise.
30409         * lib/unictype/pr_white_space.h: Likewise.
30410         * lib/unictype/pr_xid_continue.h: Likewise.
30411         * lib/unictype/pr_xid_start.h: Likewise.
30412         * lib/unictype/pr_zero_width.h: Likewise.
30413         * lib/unictype/scripts.h: Likewise.
30414         * lib/unictype/scripts_byname.gperf: Likewise.
30415         * lib/unictype/sy_c_ident.h: Likewise.
30416         * lib/unictype/sy_c_whitespace.h: Likewise.
30417         * lib/unictype/sy_java_ident.h: Likewise.
30418         * lib/unictype/sy_java_whitespace.h: Likewise.
30419
30420         * lib/unictype/Makefile: New file.
30421         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
30422         glibc.
30423         * lib/unictype/3level.h: New file, copied from glibc.
30424         * lib/unictype/3levelbit.h: New file.
30425
30426 2007-11-11  Bruno Haible  <bruno@clisp.org>
30427
30428         * modules/gperf: New file.
30429         * modules/iconv_open (Depends-on): Add it.
30430         (Makefile.am): Remove the GPERF definition.
30431
30432 2007-11-11  Bruno Haible  <bruno@clisp.org>
30433
30434         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
30435         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
30436
30437 2007-11-11  Bruno Haible  <bruno@clisp.org>
30438
30439         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
30440         (usage): Remove function.
30441
30442 2007-11-11  Bruno Haible  <bruno@clisp.org>
30443
30444         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
30445         gl_FUNC_CEILF_LIBS.
30446         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
30447         gl_FUNC_CEIL_LIBS.
30448         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
30449         gl_FUNC_CEILL_LIBS.
30450         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
30451         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
30452         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
30453
30454 2007-11-11  Bruno Haible  <bruno@clisp.org>
30455
30456         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
30457         roundf were declared but do not exist on functions.
30458         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
30459         roundl were declared but do not exist on functions.
30460         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
30461         HAVE_FLOORL_AND_CEILL, respectively.
30462         Needed for Sun C on Solaris 10.
30463
30464 2007-11-11  Bruno Haible  <bruno@clisp.org>
30465
30466         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
30467         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
30468         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
30469         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
30470         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
30471         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
30472         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
30473         HAVE_DECL_ROUNDF.
30474         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
30475         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
30476         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
30477         of HAVE_DECL_ROUND*.
30478         * modules/math (Makefile.am): Update.
30479
30480 2007-11-10  Bruno Haible  <bruno@clisp.org>
30481
30482         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
30483         ptrdiff_t as m4/intl.m4.
30484
30485 2007-11-10  Jim Meyering  <meyering@redhat.com>
30486
30487         Avoid link failure for the argmatch test.
30488         * tests/test-argmatch.c (usage): Define function to avoid a link
30489         failure: argmatch_die requires a usage function.
30490
30491 2007-11-09  Bruno Haible  <bruno@clisp.org>
30492
30493         * doc/functions/snprintf.texi: Mention BeOS deficiency.
30494         * doc/functions/vsnprintf.texi: Likewise.
30495         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
30496         with a size argument < 2.
30497
30498 2007-11-09  Bruno Haible  <bruno@clisp.org>
30499
30500         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
30501         buffer. Fixes an inefficiency introduced on 2007-11-03.
30502
30503 2007-11-09  Bruno Haible  <bruno@clisp.org>
30504
30505         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
30506         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
30507
30508 2007-11-08  Jim Meyering  <meyering@redhat.com>
30509
30510         Change cache variable name prefix "jm_" to "gl_" everywhere.
30511         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
30512         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
30513         * m4/uptime.m4: s/gl_/jm_/
30514
30515 2007-11-07  Bruno Haible  <bruno@clisp.org>
30516
30517         Update to GNU gettext 0.17.
30518         * m4/intl.m4: Update to GNU gettext 0.17.
30519         * m4/po.m4: Likewise.
30520         * modules/gettext (Files): Remove m4/ulonglong.m4.
30521         (configure.ac): Require gettext infrastructure from version 0.17.
30522
30523 2007-11-06  Bruno Haible  <bruno@clisp.org>
30524
30525         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
30526         symbolic values are not defined in a public header.
30527         * lib/freadable.c (freadable) [QNX]: Likewise.
30528         * lib/freadahead.c (freadahead) [QNX]: Likewise.
30529         * lib/freading.c (freading) [QNX]: Likewise.
30530         * lib/fseterr.c (fseterr) [QNX]: Likewise.
30531         * lib/fwritable.c (fwritable) [QNX]: Likewise.
30532         * lib/fwriting.c (fwriting) [QNX]: Likewise.
30533         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
30534         Reported by Alain Magloire.
30535
30536         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
30537
30538 2007-11-05  Bruno Haible  <bruno@clisp.org>
30539
30540         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
30541         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
30542         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
30543         Reported by Eric Blake.
30544
30545 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30546             Bruno Haible  <bruno@clisp.org>
30547
30548         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
30549         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
30550         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
30551         (malloc): Undefine also before including <stdlib.h>.
30552         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
30553         Needed on OSF/1 4.0.
30554
30555 2007-11-05  Jim Meyering  <meyering@redhat.com>
30556
30557         git-version-gen: sync from coreutils.
30558         * build-aux/git-version-gen: Add comments.
30559         Change the first '-' to '.' in the snapshot version string,
30560         e.g., 6.9-377-08144 -> 6.9.377-08144
30561         Remove first parameter.
30562         Don't declare a version "-dirty" merely because a time
30563         stamp has changed.
30564
30565 2007-11-04  Bruno Haible  <bruno@clisp.org>
30566
30567         * lib/lock.h: Protect all macro definitions containing an 'if'
30568         statement through a "do { ... } while (0)".
30569         * lib/tls.h: Likewise.
30570
30571 2007-11-04  Bruno Haible  <bruno@clisp.org>
30572
30573         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
30574
30575 2007-11-04  Bruno Haible  <bruno@clisp.org>
30576
30577         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
30578         * modules/fprintf-posix (Depends-on): Add nocrash.
30579         * modules/snprintf-posix (Depends-on): Likewise.
30580         * modules/sprintf-posix (Depends-on): Likewise.
30581         * modules/vasnprintf-posix (Depends-on): Likewise.
30582         * modules/vasprintf-posix (Depends-on): Likewise.
30583         * modules/vfprintf-posix (Depends-on): Likewise.
30584         * modules/vsnprintf-posix (Depends-on): Likewise.
30585         * modules/vsprintf-posix (Depends-on): Likewise.
30586         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
30587         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
30588         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
30589         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
30590         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
30591         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
30592         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
30593
30594 2007-11-04  Bruno Haible  <bruno@clisp.org>
30595
30596         * modules/nocrash: New file.
30597         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
30598         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
30599
30600 2007-11-04  Bruno Haible  <bruno@clisp.org>
30601
30602         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
30603         precision handling.
30604         * tests/test-vasprintf-posix.c (test_function): Likewise.
30605         * tests/test-snprintf-posix.h (test_function): Likewise.
30606         * tests/test-sprintf-posix.h (test_function): Likewise.
30607
30608         Fix *printf behaviour for large precisions on mingw and BeOS.
30609         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
30610         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
30611         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
30612         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
30613         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
30614         gl_PRINTF_PRECISION and test its result. Invoke
30615         gl_PREREQ_VASNPRINTF_PRECISION.
30616         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
30617         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30618         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30619         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30620         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30621         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30622         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30623         * doc/functions/fprintf.texi: Update.
30624         * doc/functions/printf.texi: Update.
30625         * doc/functions/snprintf.texi: Update.
30626         * doc/functions/sprintf.texi: Update.
30627         * doc/functions/vfprintf.texi: Update.
30628         * doc/functions/vprintf.texi: Update.
30629         * doc/functions/vsnprintf.texi: Update.
30630         * doc/functions/vsprintf.texi: Update.
30631
30632 2007-11-04  Bruno Haible  <bruno@clisp.org>
30633
30634         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
30635
30636 2007-11-04  Bruno Haible  <bruno@clisp.org>
30637
30638         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
30639         Reported by Sylvain Beucler <beuc@gnu.org>.
30640
30641 2007-11-03  Bruno Haible  <bruno@clisp.org>
30642
30643         * tests/test-fprintf-posix2.sh: New file.
30644         * tests/test-fprintf-posix2.c: New file.
30645         * modules/fprintf-posix-tests (Files): Add them.
30646         (TESTS): Add test-fprintf-posix2.sh.
30647         (configure.ac): Check for getrlimit and setrlimit.
30648         (check_PROGRAMS): Add test-fprintf-posix2.
30649
30650         * tests/test-printf-posix2.sh: New file.
30651         * tests/test-printf-posix2.c: New file.
30652         * modules/printf-posix-tests (Files): Add them.
30653         (TESTS): Add test-printf-posix2.sh.
30654         (configure.ac): Check for getrlimit and setrlimit.
30655         (check_PROGRAMS): Add test-printf-posix2.
30656
30657         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
30658         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
30659         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
30660         (decode_double): New function, copied from decode_long_double.
30661         (scale10_round_decimal_decoded): New function, extracted from
30662         scale10_round_decimal_long_double.
30663         (scale10_round_decimal_long_double): Use it.
30664         (scale10_round_decimal_double): New function.
30665         (floorlog10): New function.
30666         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
30667         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
30668         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
30669         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
30670         gl_PRINTF_ENOMEM and test its result. Invoke
30671         gl_PREREQ_VASNPRINTF_ENOMEM.
30672         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
30673         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
30674         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
30675         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
30676         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
30677         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
30678         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
30679         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
30680         * modules/snprintf-posix (Depends-on): Likewise.
30681         * modules/sprintf-posix (Depends-on): Likewise.
30682         * modules/vasnprintf-posix (Depends-on): Likewise.
30683         * modules/vasprintf-posix (Depends-on): Likewise.
30684         * modules/vfprintf-posix (Depends-on): Likewise.
30685         * modules/vsnprintf-posix (Depends-on): Likewise.
30686         * modules/vsprintf-posix (Depends-on): Likewise.
30687         * doc/functions/fprintf.texi: Update.
30688         * doc/functions/printf.texi: Update.
30689         * doc/functions/snprintf.texi: Update.
30690         * doc/functions/sprintf.texi: Update.
30691         * doc/functions/vfprintf.texi: Update.
30692         * doc/functions/vprintf.texi: Update.
30693         * doc/functions/vsnprintf.texi: Update.
30694         * doc/functions/vsprintf.texi: Update.
30695
30696 2007-11-03  Bruno Haible  <bruno@clisp.org>
30697
30698         * modules/frexp-nolibm-tests: New file.
30699
30700         * modules/frexp-nolibm: New file.
30701         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
30702
30703 2007-11-03  Bruno Haible  <bruno@clisp.org>
30704
30705         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
30706         value is C99 compliant.
30707         Needed for OSF/1 5.1.
30708
30709 2007-11-03  Bruno Haible  <bruno@clisp.org>
30710
30711         Fix out-of-memory handling of vasnprintf.
30712         * lib/printf-parse.c: Include <errno.h>.
30713         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
30714         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
30715         is already set.
30716
30717 2007-11-02  Eric Blake  <ebb9@byu.net>
30718
30719         Fix tests on cygwin.
30720         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
30721
30722 2007-11-01  Bruno Haible  <bruno@clisp.org>
30723
30724         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
30725         warning.
30726         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
30727         needed for POSIX compatibility.
30728
30729 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
30730
30731         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
30732         for compatibility with GNU.
30733
30734 2007-11-01  Bruno Haible  <bruno@clisp.org>
30735
30736         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
30737         (putenv): Renamed from rpl_putenv. Change argument type from
30738         'const char *' to 'char *'.
30739         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
30740         of defining putenv in config.h, just set REPLACE_PUTENV.
30741         * modules/putenv (Depends-on): Add stdlib.
30742         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
30743         (Include): Use <stdlib.h>.
30744         * lib/stdlib.in.h (putenv): New declaration.
30745         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
30746         REPLACE_PUTENV.
30747         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
30748         REPLACE_PUTENV.
30749         Needed for MacOS X 10.5.0.
30750         Reported by Peter O'Gorman <peter@pogma.com>.
30751
30752 2007-11-01  Jim Meyering  <meyering@redhat.com>
30753
30754         Treat an empty date string exactly like "0".
30755         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
30756         if the remaining date string (to be parsed) is empty, use "0".
30757         Reported by Mischa Molhoek and discussed in this thread:
30758         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
30759
30760 2007-10-31  Bruno Haible  <bruno@clisp.org>
30761
30762         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
30763         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
30764         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
30765         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
30766         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
30767         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
30768
30769 2007-10-31  Bruno Haible  <bruno@clisp.org>
30770
30771         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
30772         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
30773         (AC_TYPE_LONG_LONG_INT): Use it.
30774         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
30775         it as well.
30776         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
30777         to m4/longlong.m4.
30778         * modules/stdint (Files): Remove m4/ulonglong.m4.
30779         * modules/strtoull (Files): Use m4/longlong.m4 instead of
30780         m4/ulonglong.m4.
30781         * modules/strtoumax (Files): Likewise.
30782
30783 2007-10-30  Bruno Haible  <bruno@clisp.org>
30784
30785         * modules/xvasprintf-posix: New file.
30786         Suggested by Eric Blake.
30787
30788 2007-10-30  Bruno Haible  <bruno@clisp.org>
30789
30790         * modules/xprintf-posix-tests: New file.
30791         * tests/test-xprintf-posix.sh: New file.
30792         * tests/test-xprintf-posix.c: New file.
30793         * tests/test-xfprintf-posix.c: New file.
30794
30795         * modules/xprintf-posix: New file.
30796
30797 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30798
30799         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
30800         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
30801         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
30802
30803 2007-10-29  Bruno Haible  <bruno@clisp.org>
30804
30805         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
30806         contain the special marker '_cv_'.
30807         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
30808         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
30809         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
30810         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
30811         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
30812         Reported by Ralf Wildenhues.
30813
30814 2007-10-29  Bruno Haible  <bruno@clisp.org>
30815
30816         * gnulib-tool (func_import): When --lgpl is not specified, set
30817         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
30818         GPLv3.
30819         Reported by Simon Josefsson.
30820
30821 2007-10-28  Bruno Haible  <bruno@clisp.org>
30822
30823         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
30824         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
30825         HAVE_DECL_ISFINITE.
30826         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
30827         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
30828         HAVE_DECL_ISFINITE.
30829
30830 2007-10-28  Bruno Haible  <bruno@clisp.org>
30831
30832         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
30833         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
30834
30835 2007-10-28  Bruno Haible  <bruno@clisp.org>
30836
30837         Fix link errors with Sun C 5.0 on Solaris 10.
30838         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
30839         function is declared but not present in the compiler's libm.
30840         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
30841         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
30842         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
30843         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
30844         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
30845         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
30846         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
30847         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
30848         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
30849         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
30850         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
30851         HAVE_DECL_FLOORL.
30852
30853 2007-10-28  Bruno Haible  <bruno@clisp.org>
30854
30855         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
30856         gl_FUNC_FLOORL. Cache the result.
30857         (gl_FUNC_FLOORL): Use it.
30858         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
30859         gl_FUNC_CEILL. Cache the result.
30860         (gl_FUNC_CEILL): Use it.
30861
30862         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
30863         gl_FUNC_FLOOR. Cache the result.
30864         (gl_FUNC_FLOOR): Use it.
30865         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
30866         gl_FUNC_CEIL. Cache the result.
30867         (gl_FUNC_CEIL): Use it.
30868
30869         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
30870         gl_FUNC_FLOORF. Cache the result.
30871         (gl_FUNC_FLOORF): Use it.
30872         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
30873         gl_FUNC_CEILF. Cache the result.
30874         (gl_FUNC_CEILF): Use it.
30875
30876 2007-10-28  Bruno Haible  <bruno@clisp.org>
30877
30878         * gnulib-tool: Allow specifying the LGPL version number through
30879         --lgpl=2 or --lgpl=3.
30880         (func_usage): Document --lgpl with argument.
30881         Handle --lgpl=... arguments.
30882         (func_import): Recognize also gl_LGPL calls with an argument. When
30883         --lgpl=2 is used and the module's license is just LGPL, report an
30884         error. Set sed_transform_lib_file according to the lgpl variable. In
30885         the generated files, use --lgpl or gl_LGPL invocations with argument,
30886         if necessary.
30887         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
30888         an LGPv2+ license.
30889         * doc/gnulib-tool.texi (Modified imports): Update explanation of
30890         gl_LGPL macro.
30891
30892 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30893             Bruno Haible  <bruno@clisp.org>
30894
30895         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
30896         (u16_uctomb_aux): Likewise.
30897         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
30898         !HAVE_INLINE.
30899         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
30900
30901 2007-10-28  Bruno Haible  <bruno@clisp.org>
30902
30903         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
30904         Invoke AM_GETTEXT_OPTION if it exists.
30905         * modules/vasprintf: Likewise.
30906         * modules/verror: Likewise.
30907         * modules/xprintf: Likewise.
30908         * modules/xvasprintf: Likewise.
30909
30910 2007-10-27  Ben Pfaff  <blp@gnu.org>
30911
30912         * lib/math.in.h: Define isfinite macro and prototypes for
30913         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
30914         implementations.
30915         * m4/math_h.m4: New substitutions for isfinite module.
30916         * lib/isfinite.c: New file.
30917         * m4/isfinite.m4: New file.
30918         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
30919         * modules/isfinite: New file.
30920         * modules/isfinite-tests: New file.
30921         * tests/tests-isfinite.c: New file.
30922         * doc/functions/isfinite.texi: Mention isfinite module.
30923         * MODULES.html.sh: Mention new module.
30924
30925 2007-10-27  Ben Pfaff  <blp@gnu.org>
30926
30927         Ralf Wildenhues reported that Tru64 4.0D declares the round
30928         functions but does not have definitions.
30929         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
30930         cannot be found in any library, set the output variable to
30931         "missing" instead of "".
30932         * m4/round.m4: Also use our substitute if we cannot find round in
30933         any library, even if it is declared.
30934         * m4/roundf.m4: Likewise for roundf.
30935         * m4/roundl.m4: Likewise for roundl.
30936         * lib/math.in.h: Undefine roundf, round, roundl before defining
30937         their replacements, to allow for hypothetical systems where these
30938         may be defined as macros but not available in libraries.
30939
30940 2007-10-27  Bruno Haible  <bruno@clisp.org>
30941
30942         * doc/gnulib.texi: Invoke @firstparagraphindent.
30943         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
30944         changes in gnulib.
30945         (Source changes): New section.
30946
30947 2007-10-26  Bruno Haible  <bruno@clisp.org>
30948
30949         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
30950         borrowed from autoconf.
30951
30952 2007-10-26  Bruno Haible  <bruno@clisp.org>
30953
30954         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
30955         strerror returned the empty string. Needed on HP-UX 11.00.
30956
30957 2007-10-24  Micah Cowan  <micah@cowan.name>
30958
30959         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
30960         * build-aux/bootstrap: Remove support for now-unnecessary option,
30961         --cvs-user, and envvars CVS_USER, CVS_RSH.
30962
30963 2007-10-24  Jim Meyering  <meyering@redhat.com>
30964
30965         Avoid diagnostics from sha1sum when there is no cached checksum.
30966         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
30967         if the po.s1 file hasn't been created yet.
30968
30969         * build-aux/bootstrap: Sync from coreutils:
30970         2007-10-24  Jim Meyering  <meyering@redhat.com>
30971         Get gnulib from the git repository, not from an obsolete cvs one.
30972         * build-aux/bootstrap: Suggestion from Micah Cowan.
30973         2007-10-04  Jim Meyering  <jim@meyering.net>
30974         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
30975         (update_po_files): Work also when there are no .po files in po/.
30976
30977 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
30978
30979         * README: Append ".git" to git and cg examples.
30980         Problem reported by Benoit Sigoure.
30981
30982 2007-10-23  Micah Cowan  <micah@cowan.name>
30983
30984         * users.txt: Add wget.
30985
30986 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30987
30988         Fix linking of some unistdio tests on FreeBSD.
30989         * modules/unistdio/u16-vsnprintf-tests
30990         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
30991         * modules/unistdio/u16-vsprintf-tests
30992         (test_u16_vsnprintf1_LDADD): Likewise.
30993         * modules/unistdio/u32-vsnprintf-tests
30994         (test_u32_vsnprintf1_LDADD): Likewise.
30995         * modules/unistdio/u32-vsprintf-tests
30996         (test_u32_vsprintf1_LDADD): Likewise.
30997         * modules/unistdio/u8-vsnprintf-tests
30998         (test_u8_vsnprintf1_LDADD): Likewise.
30999         * modules/unistdio/u8-vsprintf-tests
31000         (test_u8_vsprintf1_LDADD): Likewise.
31001         * modules/unistdio/ulc-vsnprintf-tests
31002         (test_ulc_vsnprintf1_LDADD): Likewise.
31003         * modules/unistdio/ulc-vsprintf-tests
31004         (test_ulc_vsprintf1_LDADD): Likewise.
31005
31006         Fix linking of some uniconv tests on FreeBSD.
31007         * modules/uniconv/u16-conv-from-enc-tests
31008         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
31009         * modules/uniconv/u16-conv-to-enc-tests
31010         (test_u16_conv_to_enc_LDADD): Likewise.
31011         * modules/uniconv/u16-strconv-from-enc-tests
31012         (test_u16_strconv_from_enc_LDADD): Likewise.
31013         * modules/uniconv/u16-strconv-to-enc-tests
31014         (test_u16_strconv_to_enc_LDADD): Likewise.
31015         * modules/uniconv/u32-conv-from-enc-tests
31016         (test_u32_conv_from_enc_LDADD): Likewise.
31017         * modules/uniconv/u32-conv-to-enc-tests
31018         (test_u32_conv_to_enc_LDADD): Likewise.
31019         * modules/uniconv/u32-strconv-from-enc-tests
31020         (test_u32_strconv_from_enc_LDADD): Likewise.
31021         * modules/uniconv/u32-strconv-to-enc-tests
31022         (test_u32_strconv_to_enc_LDADD): Likewise.
31023         * modules/uniconv/u8-conv-from-enc-tests
31024         (test_u8_conv_from_enc_LDADD): Likewise.
31025         * modules/uniconv/u8-conv-to-enc-tests
31026         (test_u8_conv_to_enc_LDADD): Likewise.
31027         * modules/uniconv/u8-strconv-from-enc-tests
31028         (test_u8_strconv_from_enc_LDADD): Likewise.
31029         * modules/uniconv/u8-strconv-to-enc-tests
31030         (test_u8_strconv_to_enc_LDADD): Likewise.
31031
31032 2007-10-22  Bruno Haible  <bruno@clisp.org>
31033
31034         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
31035         size.
31036
31037 2007-10-22  Eric Blake  <ebb9@byu.net>
31038
31039         Tweak x*printf documentation.
31040         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
31041         variable name and comments.
31042         Suggested by Bruno Haible.
31043
31044 2007-10-22  Bruno Haible  <bruno@clisp.org>
31045
31046         * lib/acl.c (copy_acl): Fix file name in comment.
31047
31048 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
31049
31050         Fix Tru64 problem with stdbool.h.
31051         * lib/stdbool.in.h (false, true):
31052         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
31053         Don't declare as an enum in this situation; it runs afoul of Tru64.
31054         Problem reported by Steven M. Schweda in
31055         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
31056
31057 2007-10-22  Eric Blake  <ebb9@byu.net>
31058
31059         Also wrap vf?printf.
31060         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
31061         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
31062         (xvprintf, xvfprintf): New functions.
31063
31064 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31065
31066         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
31067         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
31068
31069         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
31070         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
31071
31072 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
31073
31074         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
31075         by Bruno Haible.
31076
31077 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31078
31079         * lib/getloadavg.c
31080         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
31081         Undef `sys' after including sys/table.h, for Tru64 4.0D.
31082
31083         * tests/test-i-ring.c: Work for C89.
31084
31085 2007-10-22  Bruno Haible  <bruno@clisp.org>
31086
31087         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
31088         -1u, in preprocessor expression, so that we don't test for the bug
31089         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
31090         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
31091
31092 2007-10-22  Eric Blake  <ebb9@byu.net>
31093
31094         * tests/test-yesno.sh: Silence stderr during test.
31095
31096 2007-10-22  Simon Josefsson  <simon@josefsson.org>
31097
31098         * modules/crypto/gc-camellia: New file.
31099
31100         * m4/gc-camellia.m4: New file.
31101
31102         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
31103
31104         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
31105
31106 2007-10-22  Simon Josefsson  <simon@josefsson.org>
31107
31108         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
31109         --help to stdout.  Reported by sms@antinode.org (Steven
31110         M. Schweda).
31111
31112 2007-10-22  Simon Josefsson  <simon@josefsson.org>
31113
31114         * users.txt: Fix link to libksba.
31115
31116 2007-10-21  Ben Pfaff  <blp@gnu.org>
31117
31118         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
31119         round.c roundf implementation that depends on floorf and ceilf to
31120         be tested unconditionally.
31121
31122 2007-10-21  Ben Pfaff  <blp@gnu.org>
31123
31124         * m4/check-libm-func.m4: Removed.
31125         * m4/check-math-lib.m4: New file.
31126         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
31127         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
31128         definition and lack of AC_LIBOBJ([roundf]).
31129         * m4/roundl.m4: Ditto, and similarly for roundl.
31130         * modules/round: Reference new m4 file.
31131         * modules/roundf: Ditto.
31132         * modules/roundl: Ditto.
31133         * tests/test-round2.c (main): Use ROUND instead of round.
31134         Bug report from Bruno Haible.
31135
31136 2007-10-21  Bruno Haible  <bruno@clisp.org>
31137
31138         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
31139         context.
31140
31141 2007-10-21  Bruno Haible  <bruno@clisp.org>
31142
31143         * tests/test-wcwidth.c (main): Allow negative result for some control
31144         characters.
31145
31146         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
31147         Needed on OSF/1 5.1.
31148
31149 2007-10-21  Bruno Haible  <bruno@clisp.org>
31150
31151         * tests/test-floorf1.c: Include isnanf.h.
31152         (main): Use isnanf() instead of isnan().
31153         * tests/test-ceilf1.c: Include isnanf.h.
31154         (main): Use isnanf() instead of isnan().
31155         * tests/test-truncf1.c: Include isnanf.h.
31156         (main): Use isnanf() instead of isnan().
31157         * tests/test-roundf1.c: Include isnanf.h.
31158         (main): Use isnanf() instead of isnan().
31159
31160 2007-10-21  Eric Blake  <ebb9@byu.net>
31161
31162         * users.txt: Update URL for m4.
31163
31164 2007-10-21  Bruno Haible  <bruno@clisp.org>
31165
31166         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
31167
31168 2007-10-21  Bruno Haible  <bruno@clisp.org>
31169
31170         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
31171         Git's management files if the CVS files are not present.
31172
31173 2007-10-20  Bruno Haible  <bruno@clisp.org>
31174
31175         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
31176         gcc-3.4.x.
31177
31178 2007-10-20  Ben Pfaff  <blp@gnu.org>
31179
31180         * lib/math.in.h: Declare round, roundf, roundl if we are providing
31181         implementations.
31182         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
31183         * lib/round.c: New file.
31184         * lib/roundf.c: New file.
31185         * lib/roundl.c: New file.
31186         * m4/round.m4: New file.
31187         * m4/roundf.m4: New file.
31188         * m4/roundl.m4: New file.
31189         * m4/check-libm-func-m4: New file.
31190         * modules/math: Replace round, roundf, roundl related @VARS@ in
31191         math.in.h.
31192         * modules/round: New file.
31193         * modules/round-tests: New file.
31194         * modules/roundf: New file.
31195         * modules/roundf-tests: New file.
31196         * modules/roundl: New file.
31197         * modules/roundl-tests: New file.
31198         * tests/test-round1.c: New file.
31199         * tests/test-round2.c: New file.
31200         * tests/test-roundf1.c: New file.
31201         * tests/test-roundf2.c: New file.
31202         * tests/test-roundl.c: New file.
31203         * doc/functions/round.texi: Mention round module.
31204         * doc/functions/roundf.texi: Mention roundf module.
31205         * doc/functions/roundl.texi: Mention roundl module.
31206         * MODULES.html.sh: Mention new modules.
31207         Thanks to Bruno Haible for suggestions.
31208
31209 2007-10-20  Jim Meyering  <meyering@redhat.com>
31210
31211         * lib/xprintf.c: Include <config.h> unconditionally.
31212
31213         Change xprintf's license to GPL.
31214         * modules/xprintf (License): s/LGPL/GPL/, since this module
31215         depends on modules (exit and exitfail) which are GPL.
31216         Suggestion from Bruno Haible.
31217
31218         xprintf fixes.
31219         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
31220         Use a clearer diagnostic.
31221         Patch from Bruno Haible.
31222
31223 2007-10-20  Bruno Haible  <bruno@clisp.org>
31224
31225         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
31226         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
31227         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31228
31229 2007-10-20  Bruno Haible  <bruno@clisp.org>
31230
31231         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
31232         precision in the comparison result > x - 1 or similar.
31233         * tests/test-ceilf2.c (correct_result_p): Likewise.
31234         * tests/test-truncf2.c (correct_result_p): Likewise.
31235         * tests/test-trunc2.c (correct_result_p): Likewise.
31236         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
31237
31238 2007-10-20  Bruno Haible  <bruno@clisp.org>
31239
31240         * modules/ceil: New file.
31241         * m4/ceil.m4: New file.
31242         * doc/functions/ceil.texi: Mention the 'ceil' module.
31243
31244 2007-10-20  Bruno Haible  <bruno@clisp.org>
31245
31246         * modules/floor: New file.
31247         * m4/floor.m4: New file.
31248         * doc/functions/floor.texi: Mention the 'floor' module.
31249
31250 2007-10-20  Bruno Haible  <bruno@clisp.org>
31251
31252         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
31253         of %a.
31254         * modules/floorf-tests (Depends-on): Likewise.
31255         * modules/truncf-tests (Depends-on): Likewise.
31256         * modules/trunc-tests (Depends-on): Likewise.
31257         Reported by Ben Pfaff.
31258
31259 2007-10-19  Jim Meyering  <meyering@redhat.com>
31260
31261         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
31262         Don't bother testing specific errno values.  Just test ferror.
31263
31264         New module: xprintf
31265         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
31266
31267 2007-10-19  Bruno Haible  <bruno@clisp.org>
31268
31269         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
31270         syntax.
31271         * modules/javaexec (Makefile.am): Likewise.
31272         * modules/relocatable-prog (Makefile.am): Likewise.
31273         Suggested by Jim Meyering.
31274
31275 2007-10-18  Bruno Haible  <bruno@clisp.org>
31276
31277         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
31278         Reported by Jim Meyering.
31279
31280 2007-10-18  Eric Blake  <ebb9@byu.net>
31281
31282         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
31283
31284 2007-10-18  Bruno Haible  <bruno@clisp.org>
31285
31286         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
31287         the format string into writable memory. Needed in Fortify conditions.
31288
31289 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
31290             Bruno Haible  <bruno@clisp.org>
31291
31292         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
31293         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
31294         * modules/trim (Depends-on): Add mbchar.
31295         (configure.ac): Add gl_FUNC_MBRTOWC.
31296         (Makefile.am): Augment lib_SOURCES.
31297
31298 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
31299
31300         Modify glob.c to use fstatat and dirfd, to simplify it.
31301         Suggested by Eric Blake.
31302         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
31303         Don't include <stdbool.h>; not used.
31304         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
31305         (link_exists_p): Simplify implementation, since we can now assume
31306         dirfd and fstatat.
31307         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
31308
31309 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31310
31311         * gnulib-tool (func_get_dependencies): Fix sed script to
31312         match only tests.
31313
31314 2007-10-17  Bruno Haible  <bruno@clisp.org>
31315
31316         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
31317         allow locale names without encoding suffix.
31318         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
31319         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
31320
31321 2007-10-16  Bruno Haible  <bruno@clisp.org>
31322
31323         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
31324         * lib/getgroups.c (getgroups): Likewise.
31325         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
31326
31327 2007-10-16  Bruno Haible  <bruno@clisp.org>
31328
31329         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
31330         * modules/malloc-posix (License): Likewise.
31331         * modules/realloc-posix (License): Likewise.
31332         * modules/calloc-posix (License): Likewise.
31333         * modules/intprops (License): Change from GPL to LGPL, with
31334         Paul Eggert's approval.
31335
31336 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
31337
31338         Merge glibc changes into lib/glob.c.
31339
31340         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
31341         2007-10-15 04:59:03 UTC.  Here are the changes:
31342
31343         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
31344
31345         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
31346
31347         * lib/glob.c: Add some branch prediction throughout.
31348
31349         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
31350
31351         [BZ #5103]
31352         * lib/glob.c (glob): Recognize patterns starting \/.
31353
31354         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
31355
31356         [BZ #3996]
31357         * lib/glob.c (attribute_hidden): Define if not defined.
31358         (glob): Unescape dirname, filename or username when needed and not
31359         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
31360         is NULL.  Handle unescaped [ in pattern without closing ].
31361         Don't pass GLOB_CHECK down to recursive glob for directories.
31362         (__glob_pattern_type): New function.
31363         (__glob_pattern_p): Implement using __glob_pattern_type.
31364         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
31365         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
31366         Remove unreachable code.
31367
31368         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
31369
31370         * lib/glob.c (glob_in_dir): Add some comments and asserts to
31371         explain why there are no leaks.
31372
31373         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
31374
31375         [BZ #3253]
31376         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
31377         time, rather allocate increasingly bigger arrays of pointers, if
31378         possible with alloca, if too large with malloc.
31379
31380 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
31381
31382         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
31383         Problem reported by H.Merijn Brand in
31384         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
31385         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
31386         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
31387
31388 2007-10-15  Bruno Haible  <bruno@clisp.org>
31389
31390         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
31391         with explicit rpl_ prefix.
31392         * lib/fopen.c (fopen): Likewise.
31393         * lib/freopen.c (freopen): Likewise.
31394         * lib/iconv.c (iconv): Likewise.
31395         * lib/iconv_close.c (iconv_close): Likewise.
31396
31397 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31398
31399         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
31400
31401 2007-10-15  Bruno Haible  <bruno@clisp.org>
31402
31403         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
31404         <stddef.h> instead of <stdlib.h> since we only need NULL.
31405         Reported by Ben Pfaff <blp@cs.stanford.edu>.
31406
31407 2007-10-15  Bruno Haible  <bruno@clisp.org>
31408
31409         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
31410         Replace paragraph talking about LIBOBJS.
31411         Reported by Colin Watson <cjwatson@debian.org>.
31412
31413 2007-10-15  Bruno Haible  <bruno@clisp.org>
31414
31415         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
31416         <stdlib.h> before using NULL.
31417
31418 2007-10-15  Simon Josefsson  <simon@josefsson.org>
31419
31420         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
31421         Reported by Albert Chin <china@thewrittenword.com>.
31422
31423 2007-10-14  Bruno Haible  <bruno@clisp.org>
31424
31425         * modules/iconv_open-utf-tests: New file.
31426         * tests/test-iconv-utf.c: New file.
31427
31428         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
31429         * modules/iconv_open-utf: New file.
31430         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
31431         (iconv, iconv_close): New declarations.
31432         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
31433         be defined.
31434         (iconv_open): Add special handling of conversion between UTF-8 and
31435         UTF-{16,32}{BE,LE}.
31436         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
31437         * lib/iconv_close.c: New file.
31438         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
31439         gl_FUNC_ICONV_OPEN.
31440         (gl_FUNC_ICONV_OPEN): Use it.
31441         (gl_FUNC_ICONV_OPEN_UTF): New macro.
31442         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
31443         and REPLACE_ICONV_UTF.
31444         * modules/iconv_open (Depends-on): Add c-strcase.
31445         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
31446         ICONV_CONST.
31447         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
31448
31449 2007-10-13  Albert Chin  <china@thewrittenword.com>
31450             Bruno Haible  <bruno@clisp.org>
31451
31452         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
31453         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
31454
31455 2007-10-13  Bruno Haible  <bruno@clisp.org>
31456
31457         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
31458         defined, use the ISO C99 inline semantics.
31459         * lib/argp.h (ARGP_EI): Likewise.
31460
31461 2007-10-13  Bruno Haible  <bruno@clisp.org>
31462
31463         Handle 'inline' change in gcc 4.3.0.
31464         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
31465         argp_fmtstream_write, argp_fmtstream_set_lmargin,
31466         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
31467         argp_fmtstream_point): Disable 'extern' declaration if the function
31468         definition is going to be provided inline.
31469         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
31470         semantics, not the ISO C99 inline semantics.
31471         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
31472         'extern' declaration if the function definition is going to be provided
31473         inline.
31474         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
31475         the GNU C inline semantics, not the ISO C99 inline semantics. With
31476         GCC 4.2, avoid a warning.
31477
31478 2007-10-13  Bruno Haible  <bruno@clisp.org>
31479
31480         * lib/freading.h (freading): Enable the use of __freading for
31481         glibc >= 2.7.
31482         * lib/freading.c (freading): Likewise.
31483
31484 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
31485
31486         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
31487         "warning: C99 inline functions are not supported; using GNU89".
31488
31489 2007-10-12  Bruno Haible  <bruno@clisp.org>
31490
31491         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
31492         of 2.
31493         * tests/test-ceilf2.c: New file.
31494         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
31495
31496         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
31497         * modules/ceilf-tests: Update.
31498
31499 2007-10-12  Bruno Haible  <bruno@clisp.org>
31500
31501         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
31502         of 2.
31503         * tests/test-floorf2.c: New file.
31504         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
31505
31506         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
31507         * modules/floorf-tests: Update.
31508
31509 2007-10-12  Bruno Haible  <bruno@clisp.org>
31510
31511         * tests/test-trunc2.c: New file.
31512         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
31513
31514         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
31515         * modules/trunc-tests: Update.
31516
31517 2007-10-12  Bruno Haible  <bruno@clisp.org>
31518
31519         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
31520         of 2.
31521         * tests/test-truncf2.c: New file.
31522         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
31523
31524         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
31525         * modules/truncf-tests: Update.
31526
31527 2007-10-11  Eric Blake  <ebb9@byu.net>
31528
31529         Don't claim strerror is broken on Interix.
31530         * doc/functions/strerror.texi (strerror): Known broken systems are
31531         now Solaris 8, and not Interix.
31532         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
31533         Interix on cross-compile.
31534         Reported by Martin Koeppe in
31535         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
31536
31537 2007-10-11  Bruno Haible  <bruno@clisp.org>
31538
31539         * modules/i-ring-tests: New file.
31540         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
31541         instead of assert.
31542
31543 2007-10-11  Bruno Haible  <bruno@clisp.org>
31544
31545         * modules/filenamecat-tests: New file.
31546         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
31547         * lib/filenamecat.c: Remove test code.
31548
31549 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
31550
31551         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
31552
31553         * lib/strerror.c: Include <string.h> always, to test interface,
31554         and to remove the need for the dummy.
31555         Include intprops.h to compute width instead of doing it ourselves
31556         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
31557         (strerror): Define it to return NULL if there's no system strerror.
31558         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
31559         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
31560         ancient pre-strerror Unix systems well any more.  Saying "unknown
31561         system error" is enough.
31562         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
31563         simpler strerror.c implementation.
31564         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
31565         Simplify the tests to reflect the simpler strerror implementation.
31566         * modules/strerror (Depends-on): Add intprops.
31567
31568 2007-10-09  Eric Blake  <ebb9@byu.net>
31569
31570         Silence test-fpending.
31571         * modules/fpending-tests (Files): Add wrapper script.
31572         * tests/test-fpending.sh: New file.
31573
31574 2007-10-09  Bruno Haible  <bruno@clisp.org>
31575
31576         * MODULES.html.sh (func_module): Don't create a hyperlink for
31577         function names like 'printf_frexp'.
31578         (Misc): Add crc, memxor.
31579         (Characteristics of floating types): New section.
31580         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
31581         isnanf-nolibm, signbit, trunc, truncf, truncl.
31582         (Enhancements for ISO C 99 functions): New subsection Input/output.
31583         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
31584         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
31585         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
31586         (Compatibility checks for POSIX:2001 functions): Add clock-time.
31587         (Enhancements for POSIX:2001 functions): Add chdir-long.
31588         (File system functions): Add areadlink, chdir-safer, read-file.
31589         Remove cycle-check.
31590         (File system as inode set): New section.
31591         (Date and time): Add gethrxtime.
31592         (Multithreading): Add openmp.
31593         (Internationalization functions): Add localename.
31594         (Unicode string functions): Add unistr/u*-mbsnlen.
31595         (Support for maintaining and releasing projects): Add git-version-gen.
31596         (Lone files): Remove directories.
31597
31598 2007-10-08  Ben Pfaff  <blp@gnu.org>
31599
31600         * lib/xmalloca.h: Fix typo in comment.
31601
31602 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
31603
31604         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
31605         when avoiding problems with integer overflow.  Use a portable test
31606         instead.
31607
31608 2007-10-08  Simon Josefsson  <simon@josefsson.org>
31609
31610         * modules/dummy (License): Change to LGPLv2+.
31611         * modules/float (License): Likewise
31612         * modules/realloc (License): Likewise
31613         * modules/stdlib (License): Likewise
31614
31615 2007-10-07  Bruno Haible  <bruno@clisp.org>
31616
31617         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
31618         * floor.c (TWO_MANT_DIG): Likewise.
31619         * ceil.c (TWO_MANT_DIG): Likewise.
31620         Reported by Ben Pfaff.
31621
31622 2007-10-07  Bruno Haible  <bruno@clisp.org>
31623
31624         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
31625         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
31626         * lib/frexp.c (FUNC): Likewise.
31627         * lib/printf-frexp.h (printf_frexp): Likewise.
31628         * lib/printf-frexpl.h (printf_frexpl): Likewise.
31629         * lib/printf-frexp.c (FUNC): Likewise.
31630         Suggested by Jim Meyering.
31631
31632 2007-10-07  Jim Meyering  <meyering@redhat.com>
31633
31634         Make xnanosleep's integer overflow test more robust.
31635         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
31636         so that gcc-4.3.0 doesn't optimize away this test for overflow.
31637
31638 2007-10-07  Bruno Haible  <bruno@clisp.org>
31639
31640         * NEWS: Mention the license change.
31641
31642         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
31643         abbreviations in the modules files.
31644
31645         Change copyright notice from GPLv2+ to GPLv3+.
31646         * README: Change copyright notice.
31647         * MODULES.html.sh: Likewise.
31648         * build-aux/bootstrap.conf: Likewise.
31649         * build-aux/config.libpath: Likewise.
31650         * build-aux/csharpcomp.sh.in: Likewise.
31651         * build-aux/csharpexec.sh.in: Likewise.
31652         * build-aux/install-reloc: Likewise.
31653         * build-aux/javacomp.sh.in: Likewise.
31654         * build-aux/javaexec.sh.in: Likewise.
31655         * build-aux/ldd.sh.in: Likewise.
31656         * build-aux/reloc-ldflags: Likewise.
31657         * build-aux/relocatable.sh.in: Likewise.
31658         * build-aux/x-to-1.in: Likewise.
31659         * check-module: Likewise.
31660         * config/srclistvars.sh: Likewise.
31661         * gnulib-tool: Likewise.
31662         * lib/acl-internal.h: Likewise.
31663         * lib/acl.c: Likewise.
31664         * lib/acl.h: Likewise.
31665         * lib/acl_entries.c: Likewise.
31666         * lib/areadlink-with-size.c: Likewise.
31667         * lib/areadlink.c: Likewise.
31668         * lib/areadlink.h: Likewise.
31669         * lib/argmatch.c: Likewise.
31670         * lib/argmatch.h: Likewise.
31671         * lib/argp-ba.c: Likewise.
31672         * lib/argp-eexst.c: Likewise.
31673         * lib/argp-fmtstream.c: Likewise.
31674         * lib/argp-fmtstream.h: Likewise.
31675         * lib/argp-fs-xinl.c: Likewise.
31676         * lib/argp-help.c: Likewise.
31677         * lib/argp-namefrob.h: Likewise.
31678         * lib/argp-parse.c: Likewise.
31679         * lib/argp-pin.c: Likewise.
31680         * lib/argp-pv.c: Likewise.
31681         * lib/argp-pvh.c: Likewise.
31682         * lib/argp-xinl.c: Likewise.
31683         * lib/argp.h: Likewise.
31684         * lib/at-func.c: Likewise.
31685         * lib/atanl.c: Likewise.
31686         * lib/backupfile.c: Likewise.
31687         * lib/backupfile.h: Likewise.
31688         * lib/basename.c: Likewise.
31689         * lib/binary-io.h: Likewise.
31690         * lib/byteswap.in.h: Likewise.
31691         * lib/c-stack.c: Likewise.
31692         * lib/c-stack.h: Likewise.
31693         * lib/c-strcasestr.c: Likewise.
31694         * lib/c-strcasestr.h: Likewise.
31695         * lib/c-strstr.c: Likewise.
31696         * lib/c-strstr.h: Likewise.
31697         * lib/c-strtod.c: Likewise.
31698         * lib/calloc.c: Likewise.
31699         * lib/canon-host.c: Likewise.
31700         * lib/canon-host.h: Likewise.
31701         * lib/canonicalize-lgpl.c: Likewise.
31702         * lib/canonicalize.c: Likewise.
31703         * lib/canonicalize.h: Likewise.
31704         * lib/ceil.c: Likewise.
31705         * lib/ceilf.c: Likewise.
31706         * lib/ceill.c: Likewise.
31707         * lib/chdir-long.c: Likewise.
31708         * lib/chdir-long.h: Likewise.
31709         * lib/chdir-safer.c: Likewise.
31710         * lib/chdir-safer.h: Likewise.
31711         * lib/chown.c: Likewise.
31712         * lib/classpath.c: Likewise.
31713         * lib/classpath.h: Likewise.
31714         * lib/clean-temp.c: Likewise.
31715         * lib/clean-temp.h: Likewise.
31716         * lib/cloexec.c: Likewise.
31717         * lib/close-stream.c: Likewise.
31718         * lib/closein.c: Likewise.
31719         * lib/closein.h: Likewise.
31720         * lib/closeout.c: Likewise.
31721         * lib/closeout.h: Likewise.
31722         * lib/concat-filename.c: Likewise.
31723         * lib/copy-file.c: Likewise.
31724         * lib/copy-file.h: Likewise.
31725         * lib/count-one-bits.h: Likewise.
31726         * lib/crc.c: Likewise.
31727         * lib/crc.h: Likewise.
31728         * lib/creat-safer.c: Likewise.
31729         * lib/csharpcomp.c: Likewise.
31730         * lib/csharpcomp.h: Likewise.
31731         * lib/csharpexec.c: Likewise.
31732         * lib/csharpexec.h: Likewise.
31733         * lib/cycle-check.c: Likewise.
31734         * lib/cycle-check.h: Likewise.
31735         * lib/diacrit.c: Likewise.
31736         * lib/diacrit.h: Likewise.
31737         * lib/diffseq.h: Likewise.
31738         * lib/dirchownmod.c: Likewise.
31739         * lib/dirent.in.h: Likewise.
31740         * lib/dirfd.c: Likewise.
31741         * lib/dirfd.h: Likewise.
31742         * lib/dirname.c: Likewise.
31743         * lib/dirname.h: Likewise.
31744         * lib/dummy.c: Likewise.
31745         * lib/dup-safer.c: Likewise.
31746         * lib/dup2.c: Likewise.
31747         * lib/eealloc.h: Likewise.
31748         * lib/error.c: Likewise.
31749         * lib/error.h: Likewise.
31750         * lib/euidaccess.c: Likewise.
31751         * lib/exclude.c: Likewise.
31752         * lib/exclude.h: Likewise.
31753         * lib/execute.c: Likewise.
31754         * lib/execute.h: Likewise.
31755         * lib/exitfail.c: Likewise.
31756         * lib/exitfail.h: Likewise.
31757         * lib/expl.c: Likewise.
31758         * lib/fatal-signal.c: Likewise.
31759         * lib/fatal-signal.h: Likewise.
31760         * lib/fbufmode.c: Likewise.
31761         * lib/fbufmode.h: Likewise.
31762         * lib/fchdir.c: Likewise.
31763         * lib/fchmodat.c: Likewise.
31764         * lib/fchownat.c: Likewise.
31765         * lib/fcntl--.h: Likewise.
31766         * lib/fcntl-safer.h: Likewise.
31767         * lib/fcntl.in.h: Likewise.
31768         * lib/fd-safer.c: Likewise.
31769         * lib/fflush.c: Likewise.
31770         * lib/file-has-acl.c: Likewise.
31771         * lib/file-set.c: Likewise.
31772         * lib/file-type.c: Likewise.
31773         * lib/file-type.h: Likewise.
31774         * lib/fileblocks.c: Likewise.
31775         * lib/filemode.c: Likewise.
31776         * lib/filemode.h: Likewise.
31777         * lib/filename.h: Likewise.
31778         * lib/filenamecat.c: Likewise.
31779         * lib/filenamecat.h: Likewise.
31780         * lib/findprog.c: Likewise.
31781         * lib/findprog.h: Likewise.
31782         * lib/float.in.h: Likewise.
31783         * lib/floor.c: Likewise.
31784         * lib/floorf.c: Likewise.
31785         * lib/floorl.c: Likewise.
31786         * lib/fopen-safer.c: Likewise.
31787         * lib/fopen.c: Likewise.
31788         * lib/fpending.c: Likewise.
31789         * lib/fpending.h: Likewise.
31790         * lib/fprintf.c: Likewise.
31791         * lib/fprintftime.h: Likewise.
31792         * lib/fpucw.h: Likewise.
31793         * lib/fpurge.c: Likewise.
31794         * lib/fpurge.h: Likewise.
31795         * lib/freadable.c: Likewise.
31796         * lib/freadable.h: Likewise.
31797         * lib/freadahead.c: Likewise.
31798         * lib/freadahead.h: Likewise.
31799         * lib/freading.c: Likewise.
31800         * lib/freading.h: Likewise.
31801         * lib/free.c: Likewise.
31802         * lib/freopen.c: Likewise.
31803         * lib/frexp.c: Likewise.
31804         * lib/frexpl.c: Likewise.
31805         * lib/fseek.c: Likewise.
31806         * lib/fseterr.c: Likewise.
31807         * lib/fseterr.h: Likewise.
31808         * lib/fstatat.c: Likewise.
31809         * lib/fstrcmp.c: Likewise.
31810         * lib/fstrcmp.h: Likewise.
31811         * lib/fsusage.c: Likewise.
31812         * lib/fsusage.h: Likewise.
31813         * lib/ftell.c: Likewise.
31814         * lib/ftello.c: Likewise.
31815         * lib/fts-cycle.c: Likewise.
31816         * lib/fts.c: Likewise.
31817         * lib/fts_.h: Likewise.
31818         * lib/full-read.c: Likewise.
31819         * lib/full-read.h: Likewise.
31820         * lib/full-write.c: Likewise.
31821         * lib/full-write.h: Likewise.
31822         * lib/fwritable.c: Likewise.
31823         * lib/fwritable.h: Likewise.
31824         * lib/fwriteerror.c: Likewise.
31825         * lib/fwriteerror.h: Likewise.
31826         * lib/fwriting.c: Likewise.
31827         * lib/fwriting.h: Likewise.
31828         * lib/gcd.c: Likewise.
31829         * lib/gcd.h: Likewise.
31830         * lib/getcwd.c: Likewise.
31831         * lib/getdate.h: Likewise.
31832         * lib/getdate.y: Likewise.
31833         * lib/getdomainname.c: Likewise.
31834         * lib/getdomainname.h: Likewise.
31835         * lib/getgroups.c: Likewise.
31836         * lib/gethostname.c: Likewise.
31837         * lib/gethrxtime.c: Likewise.
31838         * lib/gethrxtime.h: Likewise.
31839         * lib/getloadavg.c: Likewise.
31840         * lib/getndelim2.c: Likewise.
31841         * lib/getndelim2.h: Likewise.
31842         * lib/getnline.c: Likewise.
31843         * lib/getnline.h: Likewise.
31844         * lib/getopt.c: Likewise.
31845         * lib/getopt.in.h: Likewise.
31846         * lib/getopt1.c: Likewise.
31847         * lib/getopt_int.h: Likewise.
31848         * lib/getpagesize.h: Likewise.
31849         * lib/getsubopt.c: Likewise.
31850         * lib/gettime.c: Likewise.
31851         * lib/getugroups.c: Likewise.
31852         * lib/getugroups.h: Likewise.
31853         * lib/getusershell.c: Likewise.
31854         * lib/gl_anyavltree_list1.h: Likewise.
31855         * lib/gl_anyavltree_list2.h: Likewise.
31856         * lib/gl_anyhash_list1.h: Likewise.
31857         * lib/gl_anyhash_list2.h: Likewise.
31858         * lib/gl_anylinked_list1.h: Likewise.
31859         * lib/gl_anylinked_list2.h: Likewise.
31860         * lib/gl_anyrbtree_list1.h: Likewise.
31861         * lib/gl_anyrbtree_list2.h: Likewise.
31862         * lib/gl_anytree_list1.h: Likewise.
31863         * lib/gl_anytree_list2.h: Likewise.
31864         * lib/gl_anytree_oset.h: Likewise.
31865         * lib/gl_anytreehash_list1.h: Likewise.
31866         * lib/gl_anytreehash_list2.h: Likewise.
31867         * lib/gl_array_list.c: Likewise.
31868         * lib/gl_array_list.h: Likewise.
31869         * lib/gl_array_oset.c: Likewise.
31870         * lib/gl_array_oset.h: Likewise.
31871         * lib/gl_avltree_list.c: Likewise.
31872         * lib/gl_avltree_list.h: Likewise.
31873         * lib/gl_avltree_oset.c: Likewise.
31874         * lib/gl_avltree_oset.h: Likewise.
31875         * lib/gl_avltreehash_list.c: Likewise.
31876         * lib/gl_avltreehash_list.h: Likewise.
31877         * lib/gl_carray_list.c: Likewise.
31878         * lib/gl_carray_list.h: Likewise.
31879         * lib/gl_linked_list.c: Likewise.
31880         * lib/gl_linked_list.h: Likewise.
31881         * lib/gl_linkedhash_list.c: Likewise.
31882         * lib/gl_linkedhash_list.h: Likewise.
31883         * lib/gl_list.c: Likewise.
31884         * lib/gl_list.h: Likewise.
31885         * lib/gl_oset.c: Likewise.
31886         * lib/gl_oset.h: Likewise.
31887         * lib/gl_rbtree_list.c: Likewise.
31888         * lib/gl_rbtree_list.h: Likewise.
31889         * lib/gl_rbtree_oset.c: Likewise.
31890         * lib/gl_rbtree_oset.h: Likewise.
31891         * lib/gl_rbtreehash_list.c: Likewise.
31892         * lib/gl_rbtreehash_list.h: Likewise.
31893         * lib/gl_sublist.c: Likewise.
31894         * lib/gl_sublist.h: Likewise.
31895         * lib/group-member.c: Likewise.
31896         * lib/group-member.h: Likewise.
31897         * lib/hard-locale.c: Likewise.
31898         * lib/hard-locale.h: Likewise.
31899         * lib/hash-pjw.c: Likewise.
31900         * lib/hash-pjw.h: Likewise.
31901         * lib/hash-triple.c: Likewise.
31902         * lib/hash.c: Likewise.
31903         * lib/hash.h: Likewise.
31904         * lib/human.c: Likewise.
31905         * lib/human.h: Likewise.
31906         * lib/i-ring.c: Likewise.
31907         * lib/i-ring.h: Likewise.
31908         * lib/idcache.c: Likewise.
31909         * lib/imaxabs.c: Likewise.
31910         * lib/imaxdiv.c: Likewise.
31911         * lib/inet_pton.c: Likewise.
31912         * lib/inet_pton.h: Likewise.
31913         * lib/intprops.h: Likewise.
31914         * lib/inttostr.c: Likewise.
31915         * lib/inttostr.h: Likewise.
31916         * lib/inttypes.in.h: Likewise.
31917         * lib/isapipe.c: Likewise.
31918         * lib/isdir.c: Likewise.
31919         * lib/isnan.c: Likewise.
31920         * lib/isnan.h: Likewise.
31921         * lib/isnanf.c: Likewise.
31922         * lib/isnanf.h: Likewise.
31923         * lib/isnanl-nolibm.h: Likewise.
31924         * lib/isnanl.c: Likewise.
31925         * lib/isnanl.h: Likewise.
31926         * lib/javacomp.c: Likewise.
31927         * lib/javacomp.h: Likewise.
31928         * lib/javaexec.c: Likewise.
31929         * lib/javaexec.h: Likewise.
31930         * lib/javaversion.c: Likewise.
31931         * lib/javaversion.h: Likewise.
31932         * lib/javaversion.java: Likewise.
31933         * lib/lbrkprop.h: Likewise.
31934         * lib/lchmod.h: Likewise.
31935         * lib/lchown.c: Likewise.
31936         * lib/ldexpl.c: Likewise.
31937         * lib/linebreak.c: Likewise.
31938         * lib/linebreak.h: Likewise.
31939         * lib/linebuffer.c: Likewise.
31940         * lib/linebuffer.h: Likewise.
31941         * lib/locale.in.h: Likewise.
31942         * lib/logl.c: Likewise.
31943         * lib/long-options.c: Likewise.
31944         * lib/long-options.h: Likewise.
31945         * lib/lstat.c: Likewise.
31946         * lib/lstat.h: Likewise.
31947         * lib/math.in.h: Likewise.
31948         * lib/mbchar.c: Likewise.
31949         * lib/mbchar.h: Likewise.
31950         * lib/mbfile.h: Likewise.
31951         * lib/mbiter.h: Likewise.
31952         * lib/mbscasecmp.c: Likewise.
31953         * lib/mbscasestr.c: Likewise.
31954         * lib/mbschr.c: Likewise.
31955         * lib/mbscspn.c: Likewise.
31956         * lib/mbslen.c: Likewise.
31957         * lib/mbsncasecmp.c: Likewise.
31958         * lib/mbsnlen.c: Likewise.
31959         * lib/mbspbrk.c: Likewise.
31960         * lib/mbspcasecmp.c: Likewise.
31961         * lib/mbsrchr.c: Likewise.
31962         * lib/mbssep.c: Likewise.
31963         * lib/mbsspn.c: Likewise.
31964         * lib/mbsstr.c: Likewise.
31965         * lib/mbstok_r.c: Likewise.
31966         * lib/mbswidth.c: Likewise.
31967         * lib/mbswidth.h: Likewise.
31968         * lib/mbuiter.h: Likewise.
31969         * lib/memcasecmp.c: Likewise.
31970         * lib/memcasecmp.h: Likewise.
31971         * lib/memchr.c: Likewise.
31972         * lib/memcmp.c: Likewise.
31973         * lib/memcoll.c: Likewise.
31974         * lib/memcoll.h: Likewise.
31975         * lib/memcpy.c: Likewise.
31976         * lib/memrchr.c: Likewise.
31977         * lib/mkancesdirs.c: Likewise.
31978         * lib/mkdir-p.c: Likewise.
31979         * lib/mkdir-p.h: Likewise.
31980         * lib/mkdir.c: Likewise.
31981         * lib/mkdirat.c: Likewise.
31982         * lib/mkdtemp.c: Likewise.
31983         * lib/mkstemp-safer.c: Likewise.
31984         * lib/mkstemp.c: Likewise.
31985         * lib/modechange.c: Likewise.
31986         * lib/modechange.h: Likewise.
31987         * lib/mountlist.c: Likewise.
31988         * lib/mountlist.h: Likewise.
31989         * lib/mpsort.c: Likewise.
31990         * lib/nanosleep.c: Likewise.
31991         * lib/obstack.c: Likewise.
31992         * lib/obstack.h: Likewise.
31993         * lib/open-safer.c: Likewise.
31994         * lib/open.c: Likewise.
31995         * lib/openat-die.c: Likewise.
31996         * lib/openat-priv.h: Likewise.
31997         * lib/openat-proc.c: Likewise.
31998         * lib/openat.c: Likewise.
31999         * lib/openat.h: Likewise.
32000         * lib/pagealign_alloc.c: Likewise.
32001         * lib/pagealign_alloc.h: Likewise.
32002         * lib/physmem.c: Likewise.
32003         * lib/physmem.h: Likewise.
32004         * lib/pipe-safer.c: Likewise.
32005         * lib/pipe.c: Likewise.
32006         * lib/pipe.h: Likewise.
32007         * lib/posixtm.c: Likewise.
32008         * lib/posixtm.h: Likewise.
32009         * lib/posixver.c: Likewise.
32010         * lib/printf-frexp.c: Likewise.
32011         * lib/printf-frexp.h: Likewise.
32012         * lib/printf-frexpl.c: Likewise.
32013         * lib/printf-frexpl.h: Likewise.
32014         * lib/printf.c: Likewise.
32015         * lib/progname.c: Likewise.
32016         * lib/progname.h: Likewise.
32017         * lib/progreloc.c: Likewise.
32018         * lib/putenv.c: Likewise.
32019         * lib/quote.c: Likewise.
32020         * lib/quote.h: Likewise.
32021         * lib/quotearg.c: Likewise.
32022         * lib/quotearg.h: Likewise.
32023         * lib/raise.c: Likewise.
32024         * lib/readline.c: Likewise.
32025         * lib/readline.h: Likewise.
32026         * lib/readlink.c: Likewise.
32027         * lib/readtokens.c: Likewise.
32028         * lib/readtokens.h: Likewise.
32029         * lib/readtokens0.c: Likewise.
32030         * lib/readtokens0.h: Likewise.
32031         * lib/readutmp.c: Likewise.
32032         * lib/readutmp.h: Likewise.
32033         * lib/realloc.c: Likewise.
32034         * lib/relocwrapper.c: Likewise.
32035         * lib/rename-dest-slash.c: Likewise.
32036         * lib/rename.c: Likewise.
32037         * lib/rmdir.c: Likewise.
32038         * lib/rpmatch.c: Likewise.
32039         * lib/safe-read.c: Likewise.
32040         * lib/safe-read.h: Likewise.
32041         * lib/safe-write.c: Likewise.
32042         * lib/safe-write.h: Likewise.
32043         * lib/same-inode.h: Likewise.
32044         * lib/same.c: Likewise.
32045         * lib/same.h: Likewise.
32046         * lib/save-cwd.c: Likewise.
32047         * lib/save-cwd.h: Likewise.
32048         * lib/savedir.c: Likewise.
32049         * lib/savedir.h: Likewise.
32050         * lib/savewd.c: Likewise.
32051         * lib/savewd.h: Likewise.
32052         * lib/search.in.h: Likewise.
32053         * lib/setenv.c: Likewise.
32054         * lib/setenv.h: Likewise.
32055         * lib/settime.c: Likewise.
32056         * lib/sh-quote.c: Likewise.
32057         * lib/sh-quote.h: Likewise.
32058         * lib/sig2str.c: Likewise.
32059         * lib/sig2str.h: Likewise.
32060         * lib/signal.in.h: Likewise.
32061         * lib/signbitd.c: Likewise.
32062         * lib/signbitf.c: Likewise.
32063         * lib/signbitl.c: Likewise.
32064         * lib/sigprocmask.c: Likewise.
32065         * lib/sincosl.c: Likewise.
32066         * lib/sleep.c: Likewise.
32067         * lib/sprintf.c: Likewise.
32068         * lib/sqrtl.c: Likewise.
32069         * lib/stat-time.h: Likewise.
32070         * lib/stdio--.h: Likewise.
32071         * lib/stdio-safer.h: Likewise.
32072         * lib/stdlib--.h: Likewise.
32073         * lib/stdlib-safer.h: Likewise.
32074         * lib/stdlib.in.h: Likewise.
32075         * lib/stpcpy.c: Likewise.
32076         * lib/stpncpy.c: Likewise.
32077         * lib/strchrnul.c: Likewise.
32078         * lib/strcspn.c: Likewise.
32079         * lib/strerror.c: Likewise.
32080         * lib/strftime.c: Likewise.
32081         * lib/strftime.h: Likewise.
32082         * lib/striconveh.c: Likewise.
32083         * lib/striconveh.h: Likewise.
32084         * lib/striconveha.c: Likewise.
32085         * lib/striconveha.h: Likewise.
32086         * lib/stripslash.c: Likewise.
32087         * lib/strnlen1.c: Likewise.
32088         * lib/strnlen1.h: Likewise.
32089         * lib/strtod.c: Likewise.
32090         * lib/strtoimax.c: Likewise.
32091         * lib/strtok_r.c: Likewise.
32092         * lib/strtol.c: Likewise.
32093         * lib/strtoll.c: Likewise.
32094         * lib/strtoul.c: Likewise.
32095         * lib/strtoull.c: Likewise.
32096         * lib/sysexits.in.h: Likewise.
32097         * lib/tempname.c: Likewise.
32098         * lib/tempname.h: Likewise.
32099         * lib/timespec.h: Likewise.
32100         * lib/tls.c: Likewise.
32101         * lib/tls.h: Likewise.
32102         * lib/tmpdir.c: Likewise.
32103         * lib/tmpdir.h: Likewise.
32104         * lib/tmpfile-safer.c: Likewise.
32105         * lib/tmpfile.c: Likewise.
32106         * lib/trigl.c: Likewise.
32107         * lib/trigl.h: Likewise.
32108         * lib/trim.c: Likewise.
32109         * lib/trim.h: Likewise.
32110         * lib/trunc.c: Likewise.
32111         * lib/truncf.c: Likewise.
32112         * lib/truncl.c: Likewise.
32113         * lib/tsearch.c: Likewise.
32114         * lib/unicodeio.c: Likewise.
32115         * lib/unicodeio.h: Likewise.
32116         * lib/unistd--.h: Likewise.
32117         * lib/unistd-safer.h: Likewise.
32118         * lib/unistdio/ulc-fprintf.c: Likewise.
32119         * lib/unistdio/ulc-vfprintf.c: Likewise.
32120         * lib/unlinkdir.c: Likewise.
32121         * lib/unlinkdir.h: Likewise.
32122         * lib/unlocked-io.h: Likewise.
32123         * lib/unsetenv.c: Likewise.
32124         * lib/userspec.c: Likewise.
32125         * lib/utime.c: Likewise.
32126         * lib/utimecmp.c: Likewise.
32127         * lib/utimecmp.h: Likewise.
32128         * lib/utimens.c: Likewise.
32129         * lib/verify.h: Likewise.
32130         * lib/verror.c: Likewise.
32131         * lib/verror.h: Likewise.
32132         * lib/version-etc-fsf.c: Likewise.
32133         * lib/version-etc.c: Likewise.
32134         * lib/version-etc.h: Likewise.
32135         * lib/vfprintf.c: Likewise.
32136         * lib/vprintf.c: Likewise.
32137         * lib/vsprintf.c: Likewise.
32138         * lib/w32spawn.h: Likewise.
32139         * lib/wait-process.c: Likewise.
32140         * lib/wait-process.h: Likewise.
32141         * lib/wcwidth.c: Likewise.
32142         * lib/write-any-file.c: Likewise.
32143         * lib/xalloc-die.c: Likewise.
32144         * lib/xalloc.h: Likewise.
32145         * lib/xasprintf.c: Likewise.
32146         * lib/xgetcwd.c: Likewise.
32147         * lib/xgetcwd.h: Likewise.
32148         * lib/xgetdomainname.c: Likewise.
32149         * lib/xgetdomainname.h: Likewise.
32150         * lib/xgethostname.c: Likewise.
32151         * lib/xmalloc.c: Likewise.
32152         * lib/xmalloca.c: Likewise.
32153         * lib/xmalloca.h: Likewise.
32154         * lib/xmemcoll.c: Likewise.
32155         * lib/xnanosleep.c: Likewise.
32156         * lib/xreadlink.c: Likewise.
32157         * lib/xreadlink.h: Likewise.
32158         * lib/xsetenv.c: Likewise.
32159         * lib/xsetenv.h: Likewise.
32160         * lib/xstriconv.c: Likewise.
32161         * lib/xstriconv.h: Likewise.
32162         * lib/xstrndup.c: Likewise.
32163         * lib/xstrndup.h: Likewise.
32164         * lib/xstrtod.c: Likewise.
32165         * lib/xstrtod.h: Likewise.
32166         * lib/xstrtol-error.c: Likewise.
32167         * lib/xstrtol.c: Likewise.
32168         * lib/xstrtol.h: Likewise.
32169         * lib/xtime.h: Likewise.
32170         * lib/xvasprintf.c: Likewise.
32171         * lib/xvasprintf.h: Likewise.
32172         * lib/yesno.c: Likewise.
32173         * lib/yesno.h: Likewise.
32174         * posix-modules: Likewise.
32175         * tests/test-alloca-opt.c: Likewise.
32176         * tests/test-arcfour.c: Likewise.
32177         * tests/test-arctwo.c: Likewise.
32178         * tests/test-argmatch.c: Likewise.
32179         * tests/test-argp-2.sh: Likewise.
32180         * tests/test-argp.c: Likewise.
32181         * tests/test-arpa_inet.c: Likewise.
32182         * tests/test-array_list.c: Likewise.
32183         * tests/test-array_oset.c: Likewise.
32184         * tests/test-atexit.c: Likewise.
32185         * tests/test-avltree_list.c: Likewise.
32186         * tests/test-avltree_oset.c: Likewise.
32187         * tests/test-avltreehash_list.c: Likewise.
32188         * tests/test-base64.c: Likewise.
32189         * tests/test-binary-io.c: Likewise.
32190         * tests/test-byteswap.c: Likewise.
32191         * tests/test-c-ctype.c: Likewise.
32192         * tests/test-c-strcasecmp.c: Likewise.
32193         * tests/test-c-strcasestr.c: Likewise.
32194         * tests/test-c-strncasecmp.c: Likewise.
32195         * tests/test-c-strstr.c: Likewise.
32196         * tests/test-canonicalize-lgpl.c: Likewise.
32197         * tests/test-canonicalize.c: Likewise.
32198         * tests/test-carray_list.c: Likewise.
32199         * tests/test-ceilf.c: Likewise.
32200         * tests/test-ceill.c: Likewise.
32201         * tests/test-count-one-bits.c: Likewise.
32202         * tests/test-crc.c: Likewise.
32203         * tests/test-dirname.c: Likewise.
32204         * tests/test-fbufmode.c: Likewise.
32205         * tests/test-fcntl.c: Likewise.
32206         * tests/test-fflush.c: Likewise.
32207         * tests/test-floorf.c: Likewise.
32208         * tests/test-floorl.c: Likewise.
32209         * tests/test-fopen.c: Likewise.
32210         * tests/test-fprintf-posix.c: Likewise.
32211         * tests/test-fprintf-posix.h: Likewise.
32212         * tests/test-fpurge.c: Likewise.
32213         * tests/test-freadable.c: Likewise.
32214         * tests/test-freadahead.c: Likewise.
32215         * tests/test-freading.c: Likewise.
32216         * tests/test-freopen.c: Likewise.
32217         * tests/test-frexp.c: Likewise.
32218         * tests/test-frexpl.c: Likewise.
32219         * tests/test-fseek.c: Likewise.
32220         * tests/test-fseeko.c: Likewise.
32221         * tests/test-fseterr.c: Likewise.
32222         * tests/test-fstrcmp.c: Likewise.
32223         * tests/test-ftell.c: Likewise.
32224         * tests/test-ftello.c: Likewise.
32225         * tests/test-fwritable.c: Likewise.
32226         * tests/test-fwriting.c: Likewise.
32227         * tests/test-getaddrinfo.c: Likewise.
32228         * tests/test-getpass.c: Likewise.
32229         * tests/test-gettimeofday.c: Likewise.
32230         * tests/test-hmac-md5.c: Likewise.
32231         * tests/test-hmac-sha1.c: Likewise.
32232         * tests/test-iconv.c: Likewise.
32233         * tests/test-iconvme.c: Likewise.
32234         * tests/test-inttypes.c: Likewise.
32235         * tests/test-isnan.c: Likewise.
32236         * tests/test-isnanf.c: Likewise.
32237         * tests/test-isnanl-nolibm.c: Likewise.
32238         * tests/test-isnanl.c: Likewise.
32239         * tests/test-isnanl.h: Likewise.
32240         * tests/test-ldexpl.c: Likewise.
32241         * tests/test-linked_list.c: Likewise.
32242         * tests/test-linkedhash_list.c: Likewise.
32243         * tests/test-locale.c: Likewise.
32244         * tests/test-localename.c: Likewise.
32245         * tests/test-lock.c: Likewise.
32246         * tests/test-lseek.c: Likewise.
32247         * tests/test-malloca.c: Likewise.
32248         * tests/test-math.c: Likewise.
32249         * tests/test-mbscasecmp.c: Likewise.
32250         * tests/test-mbscasestr1.c: Likewise.
32251         * tests/test-mbscasestr2.c: Likewise.
32252         * tests/test-mbscasestr3.c: Likewise.
32253         * tests/test-mbscasestr4.c: Likewise.
32254         * tests/test-mbschr.c: Likewise.
32255         * tests/test-mbscspn.c: Likewise.
32256         * tests/test-mbsncasecmp.c: Likewise.
32257         * tests/test-mbspbrk.c: Likewise.
32258         * tests/test-mbspcasecmp.c: Likewise.
32259         * tests/test-mbsrchr.c: Likewise.
32260         * tests/test-mbsspn.c: Likewise.
32261         * tests/test-mbsstr1.c: Likewise.
32262         * tests/test-mbsstr2.c: Likewise.
32263         * tests/test-mbsstr3.c: Likewise.
32264         * tests/test-md5.c: Likewise.
32265         * tests/test-memmem.c: Likewise.
32266         * tests/test-netinet_in.c: Likewise.
32267         * tests/test-open.c: Likewise.
32268         * tests/test-printf-frexp.c: Likewise.
32269         * tests/test-printf-frexpl.c: Likewise.
32270         * tests/test-printf-posix.c: Likewise.
32271         * tests/test-printf-posix.h: Likewise.
32272         * tests/test-rbtree_list.c: Likewise.
32273         * tests/test-rbtree_oset.c: Likewise.
32274         * tests/test-rbtreehash_list.c: Likewise.
32275         * tests/test-read-file.c: Likewise.
32276         * tests/test-rijndael.c: Likewise.
32277         * tests/test-search.c: Likewise.
32278         * tests/test-signbit.c: Likewise.
32279         * tests/test-sleep.c: Likewise.
32280         * tests/test-snprintf-posix.c: Likewise.
32281         * tests/test-snprintf-posix.h: Likewise.
32282         * tests/test-snprintf.c: Likewise.
32283         * tests/test-sprintf-posix.c: Likewise.
32284         * tests/test-sprintf-posix.h: Likewise.
32285         * tests/test-stat-time.c: Likewise.
32286         * tests/test-stdbool.c: Likewise.
32287         * tests/test-stdint.c: Likewise.
32288         * tests/test-stdio.c: Likewise.
32289         * tests/test-stdlib.c: Likewise.
32290         * tests/test-stpncpy.c: Likewise.
32291         * tests/test-strcasestr.c: Likewise.
32292         * tests/test-striconv.c: Likewise.
32293         * tests/test-striconveh.c: Likewise.
32294         * tests/test-striconveha.c: Likewise.
32295         * tests/test-string.c: Likewise.
32296         * tests/test-sys_select.c: Likewise.
32297         * tests/test-sys_socket.c: Likewise.
32298         * tests/test-sys_stat.c: Likewise.
32299         * tests/test-sys_time.c: Likewise.
32300         * tests/test-sysexits.c: Likewise.
32301         * tests/test-time.c: Likewise.
32302         * tests/test-tls.c: Likewise.
32303         * tests/test-trunc.c: Likewise.
32304         * tests/test-truncf.c: Likewise.
32305         * tests/test-truncl.c: Likewise.
32306         * tests/test-unistd.c: Likewise.
32307         * tests/test-vasnprintf-posix.c: Likewise.
32308         * tests/test-vasnprintf-posix2.c: Likewise.
32309         * tests/test-vasnprintf.c: Likewise.
32310         * tests/test-vasprintf-posix.c: Likewise.
32311         * tests/test-vasprintf.c: Likewise.
32312         * tests/test-verify.c: Likewise.
32313         * tests/test-vfprintf-posix.c: Likewise.
32314         * tests/test-vprintf-posix.c: Likewise.
32315         * tests/test-vsnprintf-posix.c: Likewise.
32316         * tests/test-vsnprintf.c: Likewise.
32317         * tests/test-vsprintf-posix.c: Likewise.
32318         * tests/test-wchar.c: Likewise.
32319         * tests/test-wctype.c: Likewise.
32320         * tests/test-wcwidth.c: Likewise.
32321         * tests/test-xstrtol.c: Likewise.
32322         * tests/test-xvasprintf.c: Likewise.
32323         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
32324         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
32325         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
32326         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
32327         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
32328         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
32329         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
32330         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
32331         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
32332         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
32333         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
32334         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
32335         * tests/uniname/test-uninames.c: Likewise.
32336         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
32337         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
32338         * tests/unistdio/test-u16-printf1.h: Likewise.
32339         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
32340         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
32341         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
32342         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
32343         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
32344         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
32345         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
32346         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
32347         * tests/unistdio/test-u32-printf1.h: Likewise.
32348         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
32349         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
32350         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
32351         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
32352         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
32353         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
32354         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
32355         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
32356         * tests/unistdio/test-u8-printf1.h: Likewise.
32357         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
32358         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
32359         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
32360         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
32361         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
32362         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
32363         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
32364         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
32365         * tests/unistdio/test-ulc-printf1.h: Likewise.
32366         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
32367         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
32368         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
32369         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
32370         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
32371         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
32372         * tests/uniwidth/test-u16-strwidth.c: Likewise.
32373         * tests/uniwidth/test-u16-width.c: Likewise.
32374         * tests/uniwidth/test-u32-strwidth.c: Likewise.
32375         * tests/uniwidth/test-u32-width.c: Likewise.
32376         * tests/uniwidth/test-u8-strwidth.c: Likewise.
32377         * tests/uniwidth/test-u8-width.c: Likewise.
32378         * tests/uniwidth/test-uc_width.c: Likewise.
32379         * config/srclist-update: Likewise.
32380         (fixlicense): Update to GPLv3+.
32381
32382         Change copyright notice from LGPLv2.1+ to LGPLv3+.
32383         * tests/test-tsearch.c: Change copyright notice.
32384
32385         Change copyright notice from LGPLv2.0+ to LGPLv3+.
32386         * lib/c-strcaseeq.h: Change copyright notice.
32387         * lib/streq.h: Likewise.
32388         * lib/uniconv.h: Likewise.
32389         * lib/uniconv/u-conv-from-enc.h: Likewise.
32390         * lib/uniconv/u-conv-to-enc.h: Likewise.
32391         * lib/uniconv/u-strconv-from-enc.h: Likewise.
32392         * lib/uniconv/u-strconv-to-enc.h: Likewise.
32393         * lib/uniconv/u16-conv-from-enc.c: Likewise.
32394         * lib/uniconv/u16-conv-to-enc.c: Likewise.
32395         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
32396         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
32397         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
32398         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
32399         * lib/uniconv/u32-conv-from-enc.c: Likewise.
32400         * lib/uniconv/u32-conv-to-enc.c: Likewise.
32401         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
32402         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
32403         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
32404         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
32405         * lib/uniconv/u8-conv-from-enc.c: Likewise.
32406         * lib/uniconv/u8-conv-to-enc.c: Likewise.
32407         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
32408         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
32409         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
32410         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
32411         * lib/uniname.h: Likewise.
32412         * lib/uniname/uniname.c: Likewise.
32413         * lib/unistdio.h: Likewise.
32414         * lib/unistdio/u-asnprintf.h: Likewise.
32415         * lib/unistdio/u-asprintf.h: Likewise.
32416         * lib/unistdio/u-printf-args.c: Likewise.
32417         * lib/unistdio/u-printf-args.h: Likewise.
32418         * lib/unistdio/u-printf-parse.h: Likewise.
32419         * lib/unistdio/u-snprintf.h: Likewise.
32420         * lib/unistdio/u-sprintf.h: Likewise.
32421         * lib/unistdio/u-vasprintf.h: Likewise.
32422         * lib/unistdio/u-vsnprintf.h: Likewise.
32423         * lib/unistdio/u-vsprintf.h: Likewise.
32424         * lib/unistdio/u16-asnprintf.c: Likewise.
32425         * lib/unistdio/u16-asprintf.c: Likewise.
32426         * lib/unistdio/u16-printf-parse.c: Likewise.
32427         * lib/unistdio/u16-snprintf.c: Likewise.
32428         * lib/unistdio/u16-sprintf.c: Likewise.
32429         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
32430         * lib/unistdio/u16-u16-asprintf.c: Likewise.
32431         * lib/unistdio/u16-u16-snprintf.c: Likewise.
32432         * lib/unistdio/u16-u16-sprintf.c: Likewise.
32433         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
32434         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
32435         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
32436         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
32437         * lib/unistdio/u16-vasnprintf.c: Likewise.
32438         * lib/unistdio/u16-vasprintf.c: Likewise.
32439         * lib/unistdio/u16-vsnprintf.c: Likewise.
32440         * lib/unistdio/u16-vsprintf.c: Likewise.
32441         * lib/unistdio/u32-asnprintf.c: Likewise.
32442         * lib/unistdio/u32-asprintf.c: Likewise.
32443         * lib/unistdio/u32-printf-parse.c: Likewise.
32444         * lib/unistdio/u32-snprintf.c: Likewise.
32445         * lib/unistdio/u32-sprintf.c: Likewise.
32446         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
32447         * lib/unistdio/u32-u32-asprintf.c: Likewise.
32448         * lib/unistdio/u32-u32-snprintf.c: Likewise.
32449         * lib/unistdio/u32-u32-sprintf.c: Likewise.
32450         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
32451         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
32452         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
32453         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
32454         * lib/unistdio/u32-vasnprintf.c: Likewise.
32455         * lib/unistdio/u32-vasprintf.c: Likewise.
32456         * lib/unistdio/u32-vsnprintf.c: Likewise.
32457         * lib/unistdio/u32-vsprintf.c: Likewise.
32458         * lib/unistdio/u8-asnprintf.c: Likewise.
32459         * lib/unistdio/u8-asprintf.c: Likewise.
32460         * lib/unistdio/u8-printf-parse.c: Likewise.
32461         * lib/unistdio/u8-snprintf.c: Likewise.
32462         * lib/unistdio/u8-sprintf.c: Likewise.
32463         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
32464         * lib/unistdio/u8-u8-asprintf.c: Likewise.
32465         * lib/unistdio/u8-u8-snprintf.c: Likewise.
32466         * lib/unistdio/u8-u8-sprintf.c: Likewise.
32467         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
32468         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
32469         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
32470         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
32471         * lib/unistdio/u8-vasnprintf.c: Likewise.
32472         * lib/unistdio/u8-vasprintf.c: Likewise.
32473         * lib/unistdio/u8-vsnprintf.c: Likewise.
32474         * lib/unistdio/u8-vsprintf.c: Likewise.
32475         * lib/unistdio/ulc-asnprintf.c: Likewise.
32476         * lib/unistdio/ulc-asprintf.c: Likewise.
32477         * lib/unistdio/ulc-printf-parse.c: Likewise.
32478         * lib/unistdio/ulc-snprintf.c: Likewise.
32479         * lib/unistdio/ulc-sprintf.c: Likewise.
32480         * lib/unistdio/ulc-vasnprintf.c: Likewise.
32481         * lib/unistdio/ulc-vasprintf.c: Likewise.
32482         * lib/unistdio/ulc-vsnprintf.c: Likewise.
32483         * lib/unistdio/ulc-vsprintf.c: Likewise.
32484         * lib/unistr.h: Likewise.
32485         * lib/unistr/u-cpy-alloc.h: Likewise.
32486         * lib/unistr/u-cpy.h: Likewise.
32487         * lib/unistr/u-endswith.h: Likewise.
32488         * lib/unistr/u-move.h: Likewise.
32489         * lib/unistr/u-set.h: Likewise.
32490         * lib/unistr/u-startswith.h: Likewise.
32491         * lib/unistr/u-stpcpy.h: Likewise.
32492         * lib/unistr/u-stpncpy.h: Likewise.
32493         * lib/unistr/u-strcat.h: Likewise.
32494         * lib/unistr/u-strcpy.h: Likewise.
32495         * lib/unistr/u-strcspn.h: Likewise.
32496         * lib/unistr/u-strdup.h: Likewise.
32497         * lib/unistr/u-strlen.h: Likewise.
32498         * lib/unistr/u-strncat.h: Likewise.
32499         * lib/unistr/u-strncpy.h: Likewise.
32500         * lib/unistr/u-strnlen.h: Likewise.
32501         * lib/unistr/u-strpbrk.h: Likewise.
32502         * lib/unistr/u-strspn.h: Likewise.
32503         * lib/unistr/u-strstr.h: Likewise.
32504         * lib/unistr/u-strtok.h: Likewise.
32505         * lib/unistr/u16-check.c: Likewise.
32506         * lib/unistr/u16-chr.c: Likewise.
32507         * lib/unistr/u16-cmp.c: Likewise.
32508         * lib/unistr/u16-cpy-alloc.c: Likewise.
32509         * lib/unistr/u16-cpy.c: Likewise.
32510         * lib/unistr/u16-endswith.c: Likewise.
32511         * lib/unistr/u16-mblen.c: Likewise.
32512         * lib/unistr/u16-mbsnlen.c: Likewise.
32513         * lib/unistr/u16-mbtouc-aux.c: Likewise.
32514         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
32515         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
32516         * lib/unistr/u16-mbtouc.c: Likewise.
32517         * lib/unistr/u16-mbtoucr.c: Likewise.
32518         * lib/unistr/u16-move.c: Likewise.
32519         * lib/unistr/u16-next.c: Likewise.
32520         * lib/unistr/u16-prev.c: Likewise.
32521         * lib/unistr/u16-set.c: Likewise.
32522         * lib/unistr/u16-startswith.c: Likewise.
32523         * lib/unistr/u16-stpcpy.c: Likewise.
32524         * lib/unistr/u16-stpncpy.c: Likewise.
32525         * lib/unistr/u16-strcat.c: Likewise.
32526         * lib/unistr/u16-strchr.c: Likewise.
32527         * lib/unistr/u16-strcmp.c: Likewise.
32528         * lib/unistr/u16-strcpy.c: Likewise.
32529         * lib/unistr/u16-strcspn.c: Likewise.
32530         * lib/unistr/u16-strdup.c: Likewise.
32531         * lib/unistr/u16-strlen.c: Likewise.
32532         * lib/unistr/u16-strmblen.c: Likewise.
32533         * lib/unistr/u16-strmbtouc.c: Likewise.
32534         * lib/unistr/u16-strncat.c: Likewise.
32535         * lib/unistr/u16-strncmp.c: Likewise.
32536         * lib/unistr/u16-strncpy.c: Likewise.
32537         * lib/unistr/u16-strnlen.c: Likewise.
32538         * lib/unistr/u16-strpbrk.c: Likewise.
32539         * lib/unistr/u16-strrchr.c: Likewise.
32540         * lib/unistr/u16-strspn.c: Likewise.
32541         * lib/unistr/u16-strstr.c: Likewise.
32542         * lib/unistr/u16-strtok.c: Likewise.
32543         * lib/unistr/u16-to-u32.c: Likewise.
32544         * lib/unistr/u16-to-u8.c: Likewise.
32545         * lib/unistr/u16-uctomb-aux.c: Likewise.
32546         * lib/unistr/u16-uctomb.c: Likewise.
32547         * lib/unistr/u32-check.c: Likewise.
32548         * lib/unistr/u32-chr.c: Likewise.
32549         * lib/unistr/u32-cmp.c: Likewise.
32550         * lib/unistr/u32-cpy-alloc.c: Likewise.
32551         * lib/unistr/u32-cpy.c: Likewise.
32552         * lib/unistr/u32-endswith.c: Likewise.
32553         * lib/unistr/u32-mblen.c: Likewise.
32554         * lib/unistr/u32-mbsnlen.c: Likewise.
32555         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
32556         * lib/unistr/u32-mbtouc.c: Likewise.
32557         * lib/unistr/u32-mbtoucr.c: Likewise.
32558         * lib/unistr/u32-move.c: Likewise.
32559         * lib/unistr/u32-next.c: Likewise.
32560         * lib/unistr/u32-prev.c: Likewise.
32561         * lib/unistr/u32-set.c: Likewise.
32562         * lib/unistr/u32-startswith.c: Likewise.
32563         * lib/unistr/u32-stpcpy.c: Likewise.
32564         * lib/unistr/u32-stpncpy.c: Likewise.
32565         * lib/unistr/u32-strcat.c: Likewise.
32566         * lib/unistr/u32-strchr.c: Likewise.
32567         * lib/unistr/u32-strcmp.c: Likewise.
32568         * lib/unistr/u32-strcpy.c: Likewise.
32569         * lib/unistr/u32-strcspn.c: Likewise.
32570         * lib/unistr/u32-strdup.c: Likewise.
32571         * lib/unistr/u32-strlen.c: Likewise.
32572         * lib/unistr/u32-strmblen.c: Likewise.
32573         * lib/unistr/u32-strmbtouc.c: Likewise.
32574         * lib/unistr/u32-strncat.c: Likewise.
32575         * lib/unistr/u32-strncmp.c: Likewise.
32576         * lib/unistr/u32-strncpy.c: Likewise.
32577         * lib/unistr/u32-strnlen.c: Likewise.
32578         * lib/unistr/u32-strpbrk.c: Likewise.
32579         * lib/unistr/u32-strrchr.c: Likewise.
32580         * lib/unistr/u32-strspn.c: Likewise.
32581         * lib/unistr/u32-strstr.c: Likewise.
32582         * lib/unistr/u32-strtok.c: Likewise.
32583         * lib/unistr/u32-to-u16.c: Likewise.
32584         * lib/unistr/u32-to-u8.c: Likewise.
32585         * lib/unistr/u32-uctomb.c: Likewise.
32586         * lib/unistr/u8-check.c: Likewise.
32587         * lib/unistr/u8-chr.c: Likewise.
32588         * lib/unistr/u8-cmp.c: Likewise.
32589         * lib/unistr/u8-cpy-alloc.c: Likewise.
32590         * lib/unistr/u8-cpy.c: Likewise.
32591         * lib/unistr/u8-endswith.c: Likewise.
32592         * lib/unistr/u8-mblen.c: Likewise.
32593         * lib/unistr/u8-mbsnlen.c: Likewise.
32594         * lib/unistr/u8-mbtouc-aux.c: Likewise.
32595         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
32596         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
32597         * lib/unistr/u8-mbtouc.c: Likewise.
32598         * lib/unistr/u8-mbtoucr.c: Likewise.
32599         * lib/unistr/u8-move.c: Likewise.
32600         * lib/unistr/u8-next.c: Likewise.
32601         * lib/unistr/u8-prev.c: Likewise.
32602         * lib/unistr/u8-set.c: Likewise.
32603         * lib/unistr/u8-startswith.c: Likewise.
32604         * lib/unistr/u8-stpcpy.c: Likewise.
32605         * lib/unistr/u8-stpncpy.c: Likewise.
32606         * lib/unistr/u8-strcat.c: Likewise.
32607         * lib/unistr/u8-strchr.c: Likewise.
32608         * lib/unistr/u8-strcmp.c: Likewise.
32609         * lib/unistr/u8-strcpy.c: Likewise.
32610         * lib/unistr/u8-strcspn.c: Likewise.
32611         * lib/unistr/u8-strdup.c: Likewise.
32612         * lib/unistr/u8-strlen.c: Likewise.
32613         * lib/unistr/u8-strmblen.c: Likewise.
32614         * lib/unistr/u8-strmbtouc.c: Likewise.
32615         * lib/unistr/u8-strncat.c: Likewise.
32616         * lib/unistr/u8-strncmp.c: Likewise.
32617         * lib/unistr/u8-strncpy.c: Likewise.
32618         * lib/unistr/u8-strnlen.c: Likewise.
32619         * lib/unistr/u8-strpbrk.c: Likewise.
32620         * lib/unistr/u8-strrchr.c: Likewise.
32621         * lib/unistr/u8-strspn.c: Likewise.
32622         * lib/unistr/u8-strstr.c: Likewise.
32623         * lib/unistr/u8-strtok.c: Likewise.
32624         * lib/unistr/u8-to-u16.c: Likewise.
32625         * lib/unistr/u8-to-u32.c: Likewise.
32626         * lib/unistr/u8-uctomb-aux.c: Likewise.
32627         * lib/unistr/u8-uctomb.c: Likewise.
32628         * lib/unitypes.h: Likewise.
32629         * lib/uniwidth.h: Likewise.
32630         * lib/uniwidth/cjk.h: Likewise.
32631         * lib/uniwidth/u16-strwidth.c: Likewise.
32632         * lib/uniwidth/u16-width.c: Likewise.
32633         * lib/uniwidth/u32-strwidth.c: Likewise.
32634         * lib/uniwidth/u32-width.c: Likewise.
32635         * lib/uniwidth/u8-strwidth.c: Likewise.
32636         * lib/uniwidth/u8-width.c: Likewise.
32637         * lib/uniwidth/width.c: Likewise.
32638
32639 2007-10-07  Bruno Haible  <bruno@clisp.org>
32640
32641         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
32642         The file is still under LGPL (see modules/inttypes).
32643
32644 2007-10-06  Bruno Haible  <bruno@clisp.org>
32645
32646         * modules/trunc (Dependencies): Add 'extensions'.
32647         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
32648         Reported by Ben Pfaff <blp@gnu.org>.
32649
32650 2007-10-06  Bruno Haible  <bruno@clisp.org>
32651
32652         * modules/freopen-tests: New file.
32653         * tests/test-freopen.c: New file.
32654
32655         * modules/fopen-tests: New file.
32656         * tests/test-fopen.c: New file.
32657
32658         * modules/fopen: New file.
32659         * lib/fopen.c: New file.
32660         * m4/fopen.m4: New file.
32661         * modules/freopen: New file.
32662         * lib/freopen.c: New file.
32663         * m4/freopen.m4: New file.
32664         * lib/stdio.in.h (fopen, freopen): New declarations.
32665         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
32666         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
32667         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
32668         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
32669         * doc/functions/fopen.texi: Mention the 'fopen' module.
32670         * doc/functions/freopen.texi: Mention the 'freopen' module.
32671
32672 2007-10-06  Bruno Haible  <bruno@clisp.org>
32673
32674         * modules/open-tests: New file.
32675         * tests/test-open.c: New file.
32676
32677         * modules/open: New file.
32678         * lib/open.c: New file.
32679         * m4/open.m4: New file.
32680         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
32681         lib/open.c does.
32682         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
32683         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
32684         macros.
32685         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
32686         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
32687         REPLACE_OPEN.
32688         * doc/functions/open.texi: Mention the 'open' module.
32689
32690 2007-10-04  Bruno Haible  <bruno@clisp.org>
32691
32692         * modules/ceill-tests: New file.
32693         * tests/test-ceill.c: New file.
32694
32695         * modules/ceill: New file.
32696         * lib/ceill.c: Replace entire file.
32697         * m4/ceill.m4: New file.
32698         * lib/math.in.h (ceill): Replace declaration.
32699         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
32700         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
32701         * doc/functions/ceill.texi: Mention the 'ceill' module.
32702         * modules/mathl (Files): Remove lib/ceill.c.
32703         (Depends-on): Add ceill.
32704
32705 2007-10-04  Bruno Haible  <bruno@clisp.org>
32706
32707         * modules/ceilf-tests: New file.
32708         * tests/test-ceilf.c: New file.
32709
32710         * modules/ceilf: New file.
32711         * lib/ceil.c: New file.
32712         * lib/ceilf.c: New file.
32713         * m4/ceilf.m4: New file.
32714         * lib/math.in.h (ceilf): New declaration.
32715         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
32716         HAVE_DECL_CEILF.
32717         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
32718         HAVE_DECL_CEILF.
32719         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
32720
32721 2007-10-04  Bruno Haible  <bruno@clisp.org>
32722
32723         * modules/floorl-tests: New file.
32724         * tests/test-floorl.c: New file.
32725
32726         * modules/floorl: New file.
32727         * lib/floorl.c: Replace entire file.
32728         * m4/floorl.m4: New file.
32729         * lib/math.in.h (floorl): Replace declaration.
32730         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
32731         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
32732         * doc/functions/floorl.texi: Mention the 'floorl' module.
32733         * modules/mathl (Files): Remove lib/floorl.c.
32734         (Depends-on): Add floorl.
32735
32736 2007-10-04  Bruno Haible  <bruno@clisp.org>
32737
32738         * modules/floorf-tests: New file.
32739         * tests/test-floorf.c: New file.
32740
32741         * modules/floorf: New file.
32742         * lib/floor.c: New file.
32743         * lib/floorf.c: New file.
32744         * m4/floorf.m4: New file.
32745         * lib/math.in.h (floorf): New declaration.
32746         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
32747         HAVE_DECL_FLOORF.
32748         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
32749         HAVE_DECL_FLOORF.
32750         * doc/functions/floorf.texi: Mention the 'floorf' module.
32751
32752 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
32753             Bruno Haible  <bruno@clisp.org>
32754
32755         Advertise for the Git server instead of the CVS server.
32756         * doc/gnulib-intro.texi (Steady Development): Mention the Git
32757         repository instead of the CVS one.
32758         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
32759         about all VCS systems generically.
32760         * doc/gnulib.texi (Introduction): Capitalize `Git'.
32761
32762 2007-10-04  Bruno Haible  <bruno@clisp.org>
32763
32764         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
32765         means.
32766         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
32767
32768 2007-10-04  Bruno Haible  <bruno@clisp.org>
32769
32770         * modules/truncl-tests: New file.
32771         * tests/test-truncl.c: New file.
32772
32773         * modules/truncl: New file.
32774         * lib/truncl.c: New file.
32775         * m4/truncl.m4: New file.
32776         * lib/math.in.h (truncl): New declaration.
32777         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
32778         HAVE_DECL_TRUNCL.
32779         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
32780         HAVE_DECL_TRUNCL.
32781         * doc/functions/truncl.texi: Mention the 'truncl' module.
32782
32783 2007-10-04  Bruno Haible  <bruno@clisp.org>
32784
32785         * modules/truncf-tests: New file.
32786         * tests/test-truncf.c: New file.
32787
32788         * modules/truncf: New file.
32789         * lib/trunc.c: Make paramerizable through USE_* macros.
32790         * lib/truncf.c: New file.
32791         * m4/truncf.m4: New file.
32792         * lib/math.in.h (truncf): New declaration.
32793         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
32794         HAVE_DECL_TRUNCF.
32795         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
32796         HAVE_DECL_TRUNCF.
32797         * doc/functions/truncf.texi: Mention the 'truncf' module.
32798
32799 2007-10-03  Bruno Haible  <bruno@clisp.org>
32800
32801         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
32802         augmentation also for tests modules.
32803         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
32804         * modules/atexit-tests (Makefile.am): Likewise.
32805         * modules/binary-io-tests (Makefile.am): Likewise.
32806         * modules/c-strcase-tests (Makefile.am): Likewise.
32807         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
32808         * modules/canonicalize-tests (Makefile.am): Likewise.
32809         * modules/closein-tests (Makefile.am): Likewise.
32810         * modules/fprintf-posix-tests (Makefile.am): Likewise.
32811         * modules/freadahead-tests (Makefile.am): Likewise.
32812         * modules/fseek-tests (Makefile.am): Likewise.
32813         * modules/fseeko-tests (Makefile.am): Likewise.
32814         * modules/ftell-tests (Makefile.am): Likewise.
32815         * modules/ftello-tests (Makefile.am): Likewise.
32816         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
32817         * modules/isnanl-tests (Makefile.am): Likewise.
32818         * modules/lseek-tests (Makefile.am): Likewise.
32819         * modules/mbscasecmp-tests (Makefile.am): Likewise.
32820         * modules/mbscasestr-tests (Makefile.am): Likewise.
32821         * modules/mbschr-tests (Makefile.am): Likewise.
32822         * modules/mbscspn-tests (Makefile.am): Likewise.
32823         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
32824         * modules/mbspbrk-tests (Makefile.am): Likewise.
32825         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
32826         * modules/mbsrchr-tests (Makefile.am): Likewise.
32827         * modules/mbsspn-tests (Makefile.am): Likewise.
32828         * modules/mbsstr-tests (Makefile.am): Likewise.
32829         * modules/printf-posix-tests (Makefile.am): Likewise.
32830         * modules/snprintf-posix-tests (Makefile.am): Likewise.
32831         * modules/sprintf-posix-tests (Makefile.am): Likewise.
32832         * modules/tsearch-tests (Makefile.am): Likewise.
32833         * modules/uniname/uniname-tests (Makefile.am): Likewise.
32834         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
32835         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
32836         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
32837         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
32838         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
32839         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
32840         * modules/vprintf-posix-tests (Makefile.am): Likewise.
32841         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
32842         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
32843         * modules/xstrtoimax-tests (Makefile.am): Likewise.
32844         * modules/xstrtol-tests (Makefile.am): Likewise.
32845         * modules/xstrtoumax-tests (Makefile.am): Likewise.
32846         * modules/yesno-tests (Makefile.am): Likewise.
32847
32848 2007-10-03  Bruno Haible  <bruno@clisp.org>
32849
32850         * modules/trunc-tests: New file.
32851         * tests/test-trunc.c: New file.
32852
32853         * modules/trunc: New file.
32854         * lib/trunc.c: New file.
32855         * m4/trunc.m4: New file.
32856         * lib/math.in.h (trunc): New declaration.
32857         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
32858         HAVE_DECL_TRUNC.
32859         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
32860         HAVE_DECL_TRUNC.
32861         * doc/functions/trunc.texi: Mention the 'trunc' module.
32862
32863 2007-10-03  Bruno Haible  <bruno@clisp.org>
32864
32865         * tests/test-fpending.c: New file, mostly copied
32866         from coreutils/lib/t-fpending.c.
32867         * modules/fpending-tests: New file.
32868
32869 2007-10-03  Bruno Haible  <bruno@clisp.org>
32870
32871         Port the stdio extensions to QNX (untested).
32872         * lib/fseterr.c (fseterr): Add support for QNX.
32873         * lib/fbufmode.c (fbufmode): Likewise.
32874         * lib/freadable.c (freadable): Likewise.
32875         * lib/fwritable.c (fwritable): Likewise.
32876         * lib/freading.c (freading): Likewise.
32877         * lib/fwriting.c (fwriting): Likewise.
32878         * lib/freadahead.c (freadahed): Likewise.
32879         * lib/fpurge.c (fpurge): Likewise.
32880         * lib/fseeko.c (rpl_fseeko): Likewise.
32881
32882 2007-10-03  Bruno Haible  <bruno@clisp.org>
32883             Jim Meyering  <jim@meyering.net>
32884             Eric Blake  <ebb9@byu.net>
32885
32886         * doc/relocatable.texi: Use @command instead of @program.
32887
32888 2007-10-02  Jim Meyering  <jim@meyering.net>
32889
32890         Perform one more "_.h" -> ".in.h" substitution.
32891         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
32892         instead of unistd_.h here, too.
32893
32894 2007-10-01  Bruno Haible  <bruno@clisp.org>
32895
32896         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
32897         Needed for the alloca-opt module.
32898
32899 2007-09-30  Bruno Haible  <bruno@clisp.org>
32900
32901         * lib/alloca.in.h: Renamed from lib/alloca_.h.
32902         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
32903         alloca_.h.
32904         * lib/argz.in.h: Renamed from lib/argz_.h.
32905         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
32906         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
32907         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
32908         byteswap_.h.
32909         * lib/dirent.in.h: Renamed from lib/dirent_.h.
32910         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
32911         dirent_.h.
32912         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
32913         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
32914         fcntl_.h.
32915         * lib/float.in.h: Renamed from lib/float_.h.
32916         * modules/float (Files, Makefile.am): Use float.in.h instead of
32917         float_.h.
32918         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
32919         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
32920         fnmatch_.h.
32921         * lib/getopt.in.h: Renamed from lib/getopt_.h.
32922         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
32923         getopt_.h.
32924         * lib/glob.in.h: Renamed from lib/glob_.h.
32925         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
32926         * lib/iconv.in.h: Renamed from lib/iconv_.h.
32927         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
32928         iconv_.h.
32929         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
32930         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
32931         inttypes_.h.
32932         * lib/locale.in.h: Renamed from lib/locale_.h.
32933         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
32934         locale_.h.
32935         * lib/math.in.h: Renamed from lib/math_.h.
32936         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
32937         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
32938         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
32939         of netinet_in_.h. Add dependency.
32940         * lib/poll.in.h: Renamed from lib/poll_.h.
32941         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
32942         * lib/search.in.h: Renamed from lib/search_.h.
32943         * modules/search (Files, Makefile.am): Use search.in.h instead of
32944         search_.h.
32945         * lib/signal.in.h: Renamed from lib/signal_.h.
32946         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
32947         _signal.h.
32948         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
32949         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
32950         stdbool_.h.
32951         * lib/stdint.in.h: Renamed from lib/stdint_.h.
32952         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
32953         stdint_.h.
32954         * lib/stdio.in.h: Renamed from lib/stdio_.h.
32955         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
32956         stdio_.h.
32957         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
32958         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
32959         stdlib_.h.
32960         * lib/string.in.h: Renamed from lib/string_.h.
32961         * modules/string (Files, Makefile.am): Use string.in.h instead of
32962         string_.h.
32963         * doc/gnulib-tool.texi (Initial import): Update.
32964         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
32965         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
32966         of sys_select_.h. Add dependency.
32967         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
32968         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
32969         of sys_socket_.h.
32970         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
32971         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
32972         sys_stat_.h.
32973         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
32974         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
32975         sys_time_.h.
32976         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
32977         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
32978         sysexits_.h.
32979         * lib/time.in.h: Renamed from lib/time_.h.
32980         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
32981         * lib/unistd.in.h: Renamed from lib/unistd_.h.
32982         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
32983         unistd_.h.
32984         * lib/wchar.in.h: Renamed from lib/wchar_.h.
32985         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
32986         wchar_.h.
32987         * lib/wctype.in.h: Renamed from lib/wctype_.h.
32988         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
32989         wctype_.h.
32990         * build-aux/bootstrap (slurp): Update.
32991         * lib/.cppi-disable: Update.
32992
32993 2007-09-30  Bruno Haible  <bruno@clisp.org>
32994
32995         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
32996         Needed on BeOS.
32997
32998 2007-09-30  Bruno Haible  <bruno@clisp.org>
32999
33000         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
33001
33002 2007-09-29  Bruno Haible  <bruno@clisp.org>
33003
33004         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
33005
33006 2007-09-29  Bruno Haible  <bruno@clisp.org>
33007
33008         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
33009         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
33010         * build-aux/install-reloc: Compile also areadlink.c.
33011         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
33012
33013 2007-09-29  Bruno Haible  <bruno@clisp.org>
33014
33015         * gnulib-tool (func_emit_initmacro_done): Indentation.
33016
33017 2007-09-29  Bruno Haible  <bruno@clisp.org>
33018
33019         * README: Add CVS checkout update instructions.
33020         Info from Bob Proulx <bob@proulx.com>.
33021
33022 2007-09-28  Eric Blake  <ebb9@byu.net>
33023
33024         Provide move-if-change.
33025         * build-aux/move-if-change: New file, based on best practice
33026         rather than any canonical upstream location.
33027
33028 2007-09-28  Jim Meyering  <jim@meyering.net>
33029
33030         Fix canonicalize loop-detection corner case.
33031         Do not attempt to stat the symlink values stored via seen_triple.
33032         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
33033         on linux-2.6.18, (but not 2.6.22).
33034         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
33035         triple_compare.  The former compares dev,ino,filename, while the latter
33036         would actually stat dirname(filename) when dev and ino were equal.
33037         * lib/hash-triple.c: Install <string.h>.
33038         (STREQ): Define.
33039         (triple_compare_ino_str): New function.
33040         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
33041
33042 2007-09-28  Eric Blake  <ebb9@byu.net>
33043
33044         Enforce that AC_REPLACE_FUNCS files exist.
33045         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
33046         override check for typos.
33047
33048         Fix test-closein on Solaris 10.
33049         * tests/test-closein.c (main): Don't assume stdin can be inherited
33050         closed on all systems.
33051         * tests/test-closein.sh: Likewise.
33052         Reported by Piotr Tarnowski.
33053
33054 2007-09-28  Jim Meyering  <jim@meyering.net>
33055
33056         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
33057
33058 2007-09-27  Jim Meyering  <jim@meyering.net>
33059
33060         canonicalize: Avoid a false-positive cycle failure.
33061         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
33062         Sort.  Remove cycle-check.
33063         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
33064         not cycle-check.h.
33065         (seen_triple): New function.
33066         (canonicalize_filename_mode): Use it instead of cycle-check.
33067         * tests/test-canonicalize.c: Add a test for this bug.
33068         * tests/test-canonicalize.sh: Set up and run the test.
33069
33070         New module, file-set, from coreutils.
33071         * modules/file-set: Define it.
33072         * lib/file-set.c, lib/file-set.h: Implement.
33073
33074         New module, hash-triple, from coreutils.
33075         * modules/hash-triple: Define it.
33076         * lib/hash-triple.c, lib/hash-triple.h: Implement.
33077
33078 2007-09-25  Eric Blake  <ebb9@byu.net>
33079
33080         Fix strerror on Interix.
33081         * lib/string_.h (strerror): Declare replacement.
33082         * doc/functions/strerror.texi (strerror): Document the Interix
33083         shortcoming.
33084         * modules/string (Makefile.am): Support new hooks.
33085         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
33086         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
33087         gl_FUNC_STRERROR_SEPARATE.
33088         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
33089         * lib/strerror.c (rpl_strerror): Provide replacement.
33090         * modules/strerror (Depends-on): Add string.
33091         (configure.ac): Detect use of module.
33092         * tests/test-strerror.c: New file.
33093         * modules/strerror-tests: New test module.
33094         * modules/argp (Depends-on): Add strerror.
33095         * modules/error (Depends-on): Likewise.
33096         Reported by Martin Koeppe.
33097
33098 2007-09-24  Bruno Haible  <bruno@clisp.org>
33099
33100         * README: Update git instructions.
33101
33102 2007-09-24  Eric Blake  <ebb9@byu.net>
33103
33104         Revert fpending breakage from 2007-09-08.
33105         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
33106         __fpending.c.
33107
33108 2007-09-24  Jim Meyering  <jim@meyering.net>
33109
33110         filenamecat.c: Add a test.
33111         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
33112         showing how the function works when DIR is the empty string.
33113
33114 2007-09-21  Simon Josefsson  <simon@josefsson.org>
33115
33116         * tests/test-canonicalize.sh: Turn on executable bit.
33117
33118 2007-09-19  Eric Blake  <ebb9@byu.net>
33119
33120         * README: Update CVS instructions.
33121
33122 2007-09-18  Bruno Haible  <bruno@clisp.org>
33123
33124         * modules/areadlink: New file.
33125         * lib/areadlink.h (areadlink): New declaration.
33126         * lib/areadlink.c: New file, based on lib/xreadlink.c.
33127
33128 2007-09-17  Jim Meyering  <jim@meyering.net>
33129
33130         * lib/savewd.c (ESTALE) [!defined]: Define.
33131         Reported to be required on Interix by Martin Koeppe.
33132
33133 2007-09-17  Bruno Haible  <bruno@clisp.org>
33134
33135         * gnulib-tool (func_version): Use $version.
33136
33137 2007-09-16  Bruno Haible  <bruno@clisp.org>
33138
33139         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
33140         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
33141         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
33142         Reported by Greg Schafer <gschafer@zip.com.au>.
33143
33144 2007-09-15  Bruno Haible  <bruno@clisp.org>
33145
33146         * gnulib-tool (sed): Try a little harder to make bash understand the
33147         alias.
33148         Reported by Bruce Korb <bruce.korb@gmail.com>.
33149
33150 2007-09-13  Eric Blake  <ebb9@byu.net>
33151
33152         * ChangeLog: Remove conflict markers.
33153
33154 2007-09-13  Simon Josefsson  <simon@josefsson.org>
33155
33156         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
33157         Reported by Bruno Haible <bruno@clisp.org>.
33158
33159 2007-09-12  Bruno Haible  <bruno@clisp.org>
33160
33161         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
33162         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
33163         is not defined.
33164
33165 2007-09-12  Eric Blake  <ebb9@byu.net>
33166
33167         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
33168         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
33169         Autoconf definition.
33170         * modules/euidaccess (Depends-on): Add extensions, for
33171         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
33172         * modules/fnmatch (Depends-on): Likewise.
33173         * modules/getaddrinfo (Depends-on): Likewise.
33174         * modules/getdelim (Depends-on): Likewise.
33175         * modules/getline (Depends-on): Likewise.
33176         * modules/getsubopt (Depends-on): Likewise.
33177         * modules/gettext (Depends-on): Likewise.
33178         * modules/group-member (Depends-on): Likewise.
33179         * modules/mbchar (Depends-on): Likewise.
33180         * modules/memmem (Depends-on): Likewise.
33181         * modules/mempcpy (Depends-on): Likewise.
33182         * modules/memrchr (Depends-on): Likewise.
33183         * modules/pagealign_alloc (Depends-on): Likewise.
33184         * modules/readutmp (Depends-on): Likewise.
33185         * modules/stpcpy (Depends-on): Likewise.
33186         * modules/stpncpy (Depends-on): Likewise.
33187         * modules/strchrnul (Depends-on): Likewise.
33188         * modules/strndup (Depends-on): Likewise.
33189         * modules/strsep (Depends-on): Likewise.
33190         * modules/strverscmp (Depends-on): Likewise.
33191         * modules/vasprintf (Depends-on): Likewise.
33192         * modules/wcwidth (Depends-on): Likewise.
33193         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
33194         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
33195         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
33196         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
33197         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
33198         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
33199         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
33200         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
33201         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
33202         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
33203         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
33204         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
33205         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
33206         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
33207         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
33208         * m4/readutmp.m4 (gl_READUTMP): Likewise.
33209         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
33210         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
33211         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
33212         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
33213         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
33214         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
33215         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
33216         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
33217         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
33218         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33219         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
33220         so that lock.m4 can be used in gettext without extensions module.
33221
33222 2007-09-11  Bruno Haible  <bruno@clisp.org>
33223
33224         * m4/isc-posix.m4: Remove file.
33225         Suggested by Eric Blake.
33226
33227 2007-09-11  Eric Blake  <ebb9@byu.net>
33228
33229         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
33230
33231 2007-09-10  Bruno Haible  <bruno@clisp.org>
33232
33233         * posix-modules: Fix typo in error message.
33234         Reported by Matt <mkraai@beckman.com>.
33235
33236 2007-09-09  Bruno Haible  <bruno@clisp.org>
33237
33238         * doc/functions/getdelim.texi: Update list of platforms lacking the
33239         function.
33240         * doc/functions/getline.texi: Likewise.
33241
33242 2007-09-09  Jim Meyering  <jim@meyering.net>
33243
33244         * lib/hash.c (hash_initialize): Detect calloc failure.
33245         Reported by Bruno Haible.
33246
33247 2007-09-09  Bruno Haible  <bruno@clisp.org>
33248
33249         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
33250         malloc or realloc fails.
33251
33252 2007-09-09  Bruno Haible  <bruno@clisp.org>
33253
33254         * modules/getcwd (Depends-on): Add malloc-posix.
33255         * modules/glob (Depends-on): Likewise.
33256         * modules/putenv (Depends-on): Likewise.
33257         * modules/strdup (Depends-on): Likewise.
33258         * modules/getdelim (Depends-on): Add realloc-posix.
33259         * modules/read-file (Depends-on): Likewise.
33260
33261 2007-09-09  Bruno Haible  <bruno@clisp.org>
33262
33263         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
33264         (gl_FUNC_MALLOC_POSIX): Require it.
33265         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
33266         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
33267         * modules/realloc (Files): Add m4/malloc.m4.
33268         * modules/calloc (Files): Likewise.
33269
33270 2007-09-09  Bruno Haible  <bruno@clisp.org>
33271
33272         * modules/malloc-posix: New file.
33273         * modules/malloc (Depends-on): Add malloc-posix.
33274         * lib/malloc.c: Include errno.h.
33275         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
33276         and a POSIX-compatible malloc into a single function. Set ENOMEM
33277         when returning NULL.
33278         * m4/malloc.m4: New file.
33279         * doc/functions/malloc.texi: Mention the malloc-posix module.
33280         * lib/stdlib_.h (malloc): New declaration.
33281         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
33282         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
33283         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
33284         and HAVE_MALLOC_POSIX.
33285
33286 2007-09-09  Bruno Haible  <bruno@clisp.org>
33287
33288         * modules/realloc-posix: New file.
33289         * modules/realloc (Depends-on): Add realloc-posix.
33290         * lib/realloc.c: Include errno.h.
33291         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
33292         and a POSIX-compatible realloc into a single function. Set ENOMEM
33293         when returning NULL.
33294         * m4/realloc.m4: New file.
33295         * doc/functions/realloc.texi: Mention the realloc-posix module.
33296         * lib/stdlib_.h (realloc): New declaration.
33297         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
33298         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
33299         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
33300         and HAVE_REALLOC_POSIX.
33301
33302 2007-09-09  Bruno Haible  <bruno@clisp.org>
33303
33304         * modules/calloc-posix: New file.
33305         * modules/calloc (Depends-on): Add calloc-posix.
33306         * lib/calloc.c: Include errno.h.
33307         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
33308         and a POSIX-compatible calloc into a single function. Set ENOMEM
33309         when returning NULL.
33310         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
33311         * doc/functions/calloc.texi: Mention the calloc-posix module.
33312         * lib/stdlib_.h (calloc): New declaration.
33313         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
33314         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
33315         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
33316         and HAVE_CALLOC_POSIX.
33317
33318 2007-09-09  Bruno Haible  <bruno@clisp.org>
33319
33320         Allow for modules to show an arbitrary notice.
33321         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
33322         * gnulib-tool: New option --extract-notice.
33323         (func_usage): Document it.
33324         (sed_extract_prog): Update.
33325         (func_get_notice): New function.
33326         (func_modules_notice): New function.
33327         (func_import, func_create_testdir): Invoke it.
33328         Suggested by Jim Meyering.
33329
33330 2007-09-09  Bruno Haible  <bruno@clisp.org>
33331
33332         * gnulib-tool: New options --verbose, --quiet.
33333         (func_usage): Document them.
33334         (verbose): New variable.
33335         (func_execute_command): New function.
33336         (func_import): Don't show the module list and the file list if
33337         $verbose < 0.
33338         (func_create_testdir): Likewise. Use func_execute_command.
33339         (func_create_megatestdir): Use func_execute_command.
33340
33341 2007-09-08  Bruno Haible  <bruno@clisp.org>
33342
33343         * gnulib-tool (func_import): Prefer rsync over wget when available,
33344         for fetching the PO files.
33345
33346 2007-09-08  Bruno Haible  <bruno@clisp.org>
33347
33348         * posix-modules: New file. Portions copied from gnulib-tool.
33349         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
33350
33351 2007-09-08  Jim Meyering  <jim@meyering.net>
33352
33353         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
33354         * lib/fpending.h: Rename from __fpending.h.
33355         * lib/fpending.c: Rename from __fpending.c.
33356         Include "fpending.h", not "__fpending.h".
33357         * lib/__fpending.h, lib/__fpending.c: Remove files.
33358         * modules/fpending (Files): Reflect new file names.
33359         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
33360
33361 2007-09-08  Bruno Haible  <bruno@clisp.org>
33362
33363         * m4/inttypes-h.m4: Remove stub file.
33364
33365 2007-09-07  Simon Josefsson  <simon@josefsson.org>
33366
33367         * doc/headers/stdint.texi: Discuss #include_next issue.
33368
33369 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
33370
33371         * build-aux/bootstrap: Remove obsolete comment about wget --help.
33372
33373 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33374
33375         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
33376         in variable name.
33377
33378 2007-09-03  Jim Meyering  <jim@meyering.net>
33379
33380         New module: git-version-gen.
33381         * modules/git-version-gen: New file.
33382
33383         Import changes from coreutils for bootstrap script.
33384
33385         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
33386
33387         bootstrap: uses rsync to download the .po files
33388         * build-aux/bootstrap (po_download_command_format): New global.
33389         (download_po_files): Use rsync.
33390         (update_po_files): Don't remove .po files after download,
33391         so future rsync runs can take advantage of the copies.
33392
33393         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
33394
33395         Solve the unnecessary-.po-file-regeneration problem once and for all.
33396         * build-aux/bootstrap (download_po_files): New function, renamed from
33397         get_translations.  Now, downloads, but doesn't update LINGUAS.
33398         (update_po_files): New function.
33399
33400         bootstrap: Ignore more.
33401         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
33402         uniwidth to e.g., lib/.gitignore.
33403         (slurp): Handle the sys_stat_.h -> sys mapping, too.
33404
33405         * build-aux/bootstrap: New setting: vc_ignore.
33406         (insert_sorted_if_absent): Create $file if absent.
33407         Adapt to new, possibly empty, list: $vc_ignore.
33408
33409         bootstrap: generate more ignorable names
33410         * build-aux/bootstrap (slurp): When generating ignorable names,
33411         also map .sin to .sed, .gperf to .c, and .y to .c.
33412
33413 2007-09-03  Jim Meyering  <jim@meyering.net>
33414
33415         * build-aux/git-version-gen: New file, from coreutils.  For details, see
33416         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
33417
33418 2007-09-02  Bruno Haible  <bruno@clisp.org>
33419
33420         Fix mis-recognition of 'mcs' on QNX 6.
33421         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
33422         output contains the string "Mono".
33423         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
33424         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
33425
33426 2007-09-01  Bruno Haible  <bruno@clisp.org>
33427
33428         Fix collision between uniwidth/* and linebreak modules.
33429         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
33430         u32_width): Remove declarations.
33431         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
33432         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
33433         streq3, streq2, streq1, streq0): Remove functions.
33434         (STREQ): Remove macro.
33435         (is_cjk_encoding): Remove function.
33436         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
33437         (uc_width, u8_width, u16_width, u32_width): Remove functions.
33438         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
33439         * NEWS: Document the change.
33440
33441 2007-09-01  Bruno Haible  <bruno@clisp.org>
33442
33443         * lib/streq.h: Add double-inclusion guard.
33444
33445 2007-09-01  Karl Berry  <karl@gnu.org>
33446
33447         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
33448
33449 2007-08-28  Jim Meyering  <jim@meyering.net>
33450
33451         Rename mreadlink_with_size to areadlink_with_size.
33452         * NEWS: Document the change.
33453         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
33454         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
33455         * lib/mreadlink.h: Rename this to...
33456         * lib/areadlink.h: ...this.
33457         * modules/mreadlink-with-size: Rename this to...
33458         * modules/areadlink-with-size: ...this.
33459         * lib/canonicalize.c: Reflect the renaming.
33460         * modules/canonicalize: Likewise.
33461
33462 2007-08-26  Bruno Haible  <bruno@clisp.org>
33463
33464         * gnulib-tool (func_import): When deciding which files to remove,
33465         consider also dangling symbolic links.
33466         Reported by Eric Blake.
33467
33468 2007-08-26  Bruno Haible  <bruno@clisp.org>
33469
33470         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
33471
33472 2007-08-23  Simon Josefsson  <simon@josefsson.org>
33473
33474         * lib/readline.c: Don't include getline.h, the prototype is now
33475         found in stdio.h.
33476
33477 2007-08-23  Jim Meyering  <jim@meyering.net>
33478
33479         Getdelim touchup.
33480         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
33481         around the funlockfile call, since funlockfile never sets errno.
33482         Don't set errno upon failed realloc.
33483
33484 2007-08-22  Eric Blake  <ebb9@byu.net>
33485
33486         Getline touchups.
33487         * lib/getdelim.c (getdelim): Revert regression that required *n to
33488         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
33489         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
33490         getdelim, rather than whether implementation is missing.
33491         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
33492         * lib/stdio_.h (getline): Also declare if replacement is
33493         required.
33494         * doc/functions/getdelim.texi: New file.
33495         * doc/functions/getline.texi: Likewise.
33496         * doc/gnulib.texi (Function Substitutes): Add new files.
33497         Reported by Bruno Haible.
33498
33499 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
33500
33501         * users.txt: Add Guile.
33502
33503 2007-08-22  Eric Blake  <ebb9@byu.net>
33504
33505         * tests/test-getdelim.c (main): Use remove, not unlink.
33506         * tests/test-getline.c (main): Likewise.
33507
33508         Move getline and getdelim into stdio.h, per POSIX 200x.
33509         * modules/getline (Files): Remove getline.h.
33510         (Depends-on): Add stdio.
33511         (configure.ac): Add module indicator.
33512         * modules/getdelim (Files): Remove getdelim.h.
33513         (Depends-on): Add stdio.
33514         (configure.ac): Add module indicator.
33515         * modules/stdio (Makefile.am): Work with new indicators.
33516         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
33517         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
33518         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
33519         * lib/getdelim.h: Delete.
33520         * lib/getline.h: Delete.
33521         * lib/stdio_.h (getdelim, getline): Declare.
33522         * modules/getdelim-tests: New module.
33523         * modules/getline-tests: Likewise.
33524         * tests/test-getdelim.c: New file.
33525         * tests/test-getline.c: Likewise.
33526         * NEWS: Document the change.
33527         * lib/getline.c: Update choice of header.
33528         * lib/csharpcomp.c: Likewise.
33529         * lib/getpass.c: Likewise.
33530         * lib/javacomp.c: Likewise.
33531         * lib/javaversion.c: Likewise.
33532         * lib/yesno.c: Likewise.
33533         * lib/getdelim.c: Likewise.
33534         (getdelim): Set errno on failure, and avoid memory leak.
33535
33536 2007-08-19  Bruno Haible  <bruno@clisp.org>
33537
33538         * modules/closein (Depends-on): Add freadahead.
33539         * lib/closein.c: Include freadahead.h.
33540         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
33541         is zero.
33542
33543 2007-08-19  Bruno Haible  <bruno@clisp.org>
33544
33545         * modules/freadahead-tests: New file.
33546         * tests/test-freadahead.sh: New file.
33547         * tests/test-freadahead.c: New file.
33548
33549         * modules/freadahead: New file.
33550         * lib/freadahead.h: New file.
33551         * lib/freadahead.c: New file.
33552         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
33553         fbufmode, fpurge, freadable, fwritable.
33554
33555 2007-08-19  Eric Blake  <ebb9@byu.net>
33556
33557         Test yesno in combination with closein.
33558         * lib/yesno.c (yesno): Document use of stdin.
33559         * modules/yesno-tests (Files): New module.
33560         * tests/test-yesno.c (main): New file.
33561         * tests/test-yesno.sh: Likewise.
33562
33563 2007-08-19  Bruno Haible  <bruno@clisp.org>
33564
33565         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
33566         * lib/fseeko.c (rpl_fseeko): Likewise.
33567         * lib/fseterr.c (fseterr): Likewise.
33568
33569 2007-08-19  Bruno Haible  <bruno@clisp.org>
33570
33571         * tests/test-lseek.c (main): Disable a test for BeOS.
33572         * doc/functions/lseek.texi: Document the BeOS bug.
33573
33574 2007-08-19  Bruno Haible  <bruno@clisp.org>
33575             Eric Blake  <ebb9@byu.net>
33576
33577         * lib/lseek.c: Include <sys/stat.h>.
33578         (rpl_lseek): Add workaround code also for Unix platforms.
33579         Needed for BeOS.
33580         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
33581         * doc/functions/lseek.texi: Document BeOS definiency.
33582
33583 2007-08-18  Bruno Haible  <bruno@clisp.org>
33584
33585         * modules/fstrcmp-tests: New file.
33586         * tests/test-fstrcmp.c: New file.
33587
33588 2007-08-18  Bruno Haible  <bruno@clisp.org>
33589
33590         * modules/fstrcmp: New file, from GNU gettext with modifications.
33591         * lib/fstrcmp.h: New file, from GNU gettext.
33592         * lib/fstrcmp.c: New file, from GNU gettext.
33593         * MODULES.html.sh (String handling): Add fstrcmp.
33594
33595 2007-08-18  Bruno Haible  <bruno@clisp.org>
33596
33597         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
33598         'bool'.
33599         (diag, compareseq): Remove const from the ctxt argument.
33600         (USE_HEURISTIC): Undefine at the end.
33601
33602 2007-08-18  Jim Meyering  <jim@meyering.net>
33603
33604         New file: lib/idcache.h
33605         * NEWS: Mention the addition.
33606         * modules/idcache (Files): Add lib/idcache.h
33607         * lib/idcache.c: Include "idcache.h".
33608         Don't include <sys/types.h>.
33609         Add a FIXME comment.
33610         Move file-scoped "static" declarations to the top.
33611         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
33612
33613 2007-08-17  Bruno Haible  <bruno@clisp.org>
33614         and Paul Eggert  <eggert@cs.ucla.edu>
33615
33616         * MODULES.html.sh: Add diffseq.
33617         * modules/diffseq: New file.
33618         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
33619         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
33620
33621 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
33622
33623         Import changes from coreutils for bootstrap script.
33624
33625         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
33626
33627         * build-aux/bootstrap (slurp): Work even in environments where
33628         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
33629         current code does not slurp files whose names start with ".", and
33630         this looks like it might be a troublesome area.
33631
33632         2007-07-11  Jim Meyering  <jim@meyering.net>
33633
33634         If there's a GPL vN copyright comment, require that N == 3.
33635
33636         2007-07-08  Jim Meyering  <jim@meyering.net>
33637
33638         Run the coreutils-specific code only if tests/Makefile.am.in exists.
33639         * build-aux/bootstrap (mam_template): Move definition out of loop.
33640
33641         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
33642
33643         * build-aux/bootstrap (symlink_to_dir): Rename function from
33644         symlink_to_gnulib.  Add a directory parameter.  Update all
33645         callers.
33646         (cp_mark_as_generated): Also check for -- and link to -- files in
33647         gl/.
33648
33649         2007-07-08  Jim Meyering  <jim@meyering.net>
33650
33651         Adapt to deeper hierarchy in gnulib.
33652         * build-aux/bootstrap (symlink_to_dir): If the destination
33653         directory doesn't exist, create it. This is required at least for
33654         "lib/uniwidth/cjk.h".
33655
33656         2007-05-15  Jim Meyering  <jim@meyering.net>
33657
33658         * build-aux/bootstrap: Now that generated Makefile.am files
33659         are no longer under version control, they must be created at
33660         bootstrap time.
33661
33662 2007-08-14  Ben Pfaff  <blp@gnu.org>
33663
33664         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
33665
33666 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
33667
33668         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
33669         given the changes below.
33670         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
33671         even on hosts that have padding bits beyond the supported 64.
33672
33673 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
33674
33675         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
33676         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
33677         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
33678         depends on it.
33679         (xstrtol_error): Remove.
33680         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
33681         but with a different signature.
33682         (ATTRIBUTE_NORETURN, __attribute__): New macros.
33683         * lib/xstrtol-error.c: Include exitfail.h.
33684         (xstrtol_fatal): New function, with a different signature from the
33685         old xstrtol_error, so that the caller need not worry about passing
33686         in an exit status, or about storage management of the option argument.
33687         (xstrtol_error): Now a static function.  Redo signature to
33688         implement xstrtol_fatal.  Output the correct number of hyphens in
33689         front of the option so that the caller need not worry about
33690         storage management.
33691         (N_): New macro.
33692         (_): Remove; not used now.
33693         * modules/xstrtol: Depend on getopt.
33694         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
33695         of old STRTOL_FATAL_ERROR macro.
33696         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
33697         of test program.
33698         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
33699         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
33700
33701 2007-08-08  Eric Blake  <ebb9@byu.net>
33702
33703         * lib/xstrtol-error.c: Add missing include.
33704
33705         Move xstrtol messages into gnulib domain, when --pobase is used.
33706         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
33707         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
33708         * modules/xstrtol (Files): Distribute new file.
33709         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
33710         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
33711         * tests/test-xstrtol.c: ...into new file.
33712         * tests/test-xstrtoul.c: Also test xstrtoul.
33713         * tests/test-xstrtoimax.c: Also test xstrtoimax.
33714         * tests/test-xstrtoumax.c: Also test xstrtoumax.
33715         * tests/test-xstrtol.sh: Drive the tests.
33716         * tests/test-xstrtoimax.sh: Likewise.
33717         * tests/test-xstrtoumax.sh: Likewise.
33718         * modules/xstrtol-tests: New module.
33719         * modules/xstrtoimax-tests: Likewise.
33720         * modules/xstrtoumax-tests: Likewise.
33721
33722 2007-08-08  Jim Meyering  <jim@meyering.net>
33723
33724         New function: mfile_name_concat.
33725         * lib/filenamecat.c (mfile_name_concat): New function, just like
33726         file_name_concat, but return NULL upon failure rather than exiting
33727         with a diagnostic.
33728         * lib/filenamecat.h: Declare it.
33729
33730 2007-08-07  Bruno Haible  <bruno@clisp.org>
33731
33732         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
33733         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
33734         warning from gcc.
33735         Reported by Eric Blake.
33736
33737 2007-08-07  Simon Josefsson  <simon@josefsson.org>
33738
33739         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
33740         * modules/crypto/arcfour (License): Likewise.
33741         * modules/crypto/des-tests (License): Likewise.
33742         * modules/crypto/gc-arctwo-tests (License): Likewise.
33743         * modules/crypto/gc-des-tests (License): Likewise.
33744         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
33745         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
33746         * modules/crypto/gc-md2-tests (License): Likewise.
33747         * modules/crypto/gc-md4-tests (License): Likewise.
33748         * modules/crypto/gc-md5-tests (License): Likewise.
33749         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
33750         * modules/crypto/gc-rijndael-tests (License): Likewise.
33751         * modules/crypto/gc-sha1-tests (License): Likewise.
33752         * modules/crypto/gc-tests (License): Likewise.
33753         * modules/crypto/hmac-md5 (License): Likewise.
33754         * modules/crypto/hmac-sha1 (License): Likewise.
33755         * modules/crypto/md2-tests (License): Likewise.
33756         * modules/crypto/md4-tests (License): Likewise.
33757         * modules/crypto/md5 (License): Likewise.
33758         * modules/crypto/rijndael (License): Likewise.
33759         * modules/crypto/sha1 (License): Likewise.
33760         * modules/memxor (License): Likewise.
33761
33762 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
33763         and Bruno Haible  <bruno@clisp.org>
33764
33765         * NEWS: Describe interface changes to human, xstrtol.
33766         * lib/human.h: Include <xstrtol.h>.
33767         (human_options): Return enum strtol_error, not int.  Remove
33768         bool arg; take int * instead.
33769         * lib/human.c: Don't include "gettext.h".
33770         (_): Remove; no longer used.
33771         Don't include <xstrtol.h>, since human.h does it.
33772         (human_options): Adjust to abovementioned interface changes.
33773         Do not report error to stderr; that's now the caller's
33774         responsibility.
33775         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
33776         interface change.
33777         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
33778         Str, Argument_type_string.  All uses changed.  Put " argument"
33779         in diagnostics to make them clearer.  Change wording of suffix
33780         message for clarity.
33781         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
33782         Argument_type_string.
33783         (STRTOL_FATAL_WARN): Remove; no longer used.
33784         * modules/human (Depends-on): Remove gettext-h.
33785
33786 2007-08-06  Simon Josefsson  <simon@josefsson.org>
33787
33788         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
33789
33790 2007-07-31  Bruno Haible  <bruno@clisp.org>
33791
33792         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
33793         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
33794         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
33795
33796 2007-07-31  Bruno Haible  <bruno@clisp.org>
33797
33798         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
33799         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
33800
33801 2007-07-30  Bruno Haible  <bruno@clisp.org>
33802
33803         * modules/base64 (License): Use the synonymous term "LGPLv2+".
33804         * modules/c-ctype (License): Likewise.
33805         * modules/c-strcase (License): Likewise.
33806         * modules/check-version (License): Likewise.
33807         * modules/iconv (License): Likewise.
33808         * modules/iconv_open (License): Likewise.
33809         * modules/read-file (License): Likewise.
33810         * modules/striconv (License): Likewise.
33811         * modules/strverscmp (License): Likewise.
33812         * modules/vasprintf (License): Likewise.
33813         * modules/crypto/des (License): Likewise.
33814         * modules/crypto/gc (License): Likewise.
33815         * modules/crypto/gc-arcfour (License): Likewise.
33816         * modules/crypto/gc-arctwo (License): Likewise.
33817         * modules/crypto/gc-des (License): Likewise.
33818         * modules/crypto/gc-hmac-md5 (License): Likewise.
33819         * modules/crypto/gc-hmac-sha1 (License): Likewise.
33820         * modules/crypto/gc-md2 (License): Likewise.
33821         * modules/crypto/gc-md4 (License): Likewise.
33822         * modules/crypto/gc-md5 (License): Likewise.
33823         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
33824         * modules/crypto/gc-random (License): Likewise.
33825         * modules/crypto/gc-rijndael (License): Likewise.
33826         * modules/crypto/gc-sha1 (License): Likewise.
33827         * modules/crypto/md2 (License): Likewise.
33828         * modules/crypto/md4 (License): Likewise.
33829
33830 2007-07-30  Jim Meyering  <jim@meyering.net>
33831
33832         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
33833         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
33834         it has valid stat data.  This bug would cause du not to count the
33835         sizes of inaccessible directories.
33836         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
33837         in <http://bugzilla.redhat.com/250077>.
33838
33839 2007-07-25  Peter O'Gorman  <peter@pogma.com>
33840             Bruno Haible  <bruno@clisp.org>
33841
33842         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
33843         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
33844         #include_next, gives a diagnostic about it, but reports no error in
33845         the exit code.
33846         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
33847
33848 2007-07-24  Ben Pfaff  <blp@gnu.org>
33849
33850         Improve name: "count-one-bits" is better than "popcount".
33851         * MODULES.html.sh: Update name.
33852         * lib/popcount.h: Renamed lib/count-one-bits.h.
33853         (popcount): Renamed count_one_bits.
33854         (popcountl): Renamed count_one_bits_l.
33855         (popcountll): Renamed count_one_bits_ll.
33856         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
33857         * modules/popcount: Renamed module/count-one-bits.
33858         * modules/popcount-tests: Renamed module/count-one-bits-tests.
33859         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
33860
33861 2007-07-23  Ben Pfaff  <blp@gnu.org>
33862
33863         * lib/popcount.h (popcount32): Reduce size of constants, to allow
33864         better code generation, and add U to large constants to avoid
33865         warnings, in non-GCC case.
33866         Suggested by Bruno Haible.
33867
33868 2007-07-23  Ben Pfaff  <blp@gnu.org>
33869
33870         * lib/popcount.h: Use verify_true instead of if...abort.
33871         * modules/popcount: Depend on verify module.
33872         Suggested by Jim Meyering.
33873
33874 2007-07-23  Bruno Haible  <bruno@clisp.org>
33875
33876         * gnulib-tool (func_import): Create a .cvsignore file also when the
33877         directory is not yet in CVS but the toplevel directory is. When
33878         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
33879         Reported by Karl Berry.
33880
33881 2007-07-22  Ben Pfaff  <blp@gnu.org>
33882
33883         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
33884         case.
33885         Suggested by Eric Blake.
33886
33887 2007-07-22  Ben Pfaff  <blp@gnu.org>
33888
33889         New module: popcount.
33890         * MODULES.html.sh: Add popcount.
33891         * modules/popcount: New file.
33892         * modules/popcount-tests: New file.
33893         * tests/test-popcount.c: New file.
33894         * lib/popcount.h: New file.
33895         * m4/popcount.m4: New file.
33896
33897 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
33898
33899         * build-aux/announce-gen: Update to GPLv3.
33900
33901         * build-aux/config.guess: Update from config.
33902
33903 2007-07-21  Bruno Haible  <bruno@clisp.org>
33904
33905         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
33906         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
33907
33908 2007-07-20  Jim Meyering  <jim@meyering.net>
33909
33910         * check-module: Diagnose a self-dependency.
33911
33912 2007-07-19  Bruno Haible  <bruno@clisp.org>
33913
33914         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
33915         empty.
33916         Reported by Eric Blake.
33917
33918 2007-07-18  Bruno Haible  <bruno@clisp.org>
33919
33920         * gnulib-tool: New options --po-base, --po-domain.
33921         (func_usage): Document them.
33922         (pobase, po_domain): New variables.
33923         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
33924         DEFAULT_TEXT_DOMAIN.
33925         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
33926         (func_import): Consider pobase and po_domain. Create a po/ directory.
33927         (func_create_testdir): Set pobase and po_domain to empty.
33928         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
33929         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
33930
33931 2007-07-18  Bruno Haible  <bruno@clisp.org>
33932
33933         * gnulib-tool (func_get_automake_snippet): Synthesize also an
33934         EXTRA_DIST augmentation for files in build-aux/.
33935
33936 2007-07-16  Bruno Haible  <bruno@clisp.org>
33937
33938         * modules/lseek (License): Use the synonymous term "LGPLv2+".
33939         * modules/getdelim (License): Likewise.
33940
33941 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33942
33943         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
33944         * modules/d-type (License): Likewise.
33945         * modules/extensions (License): Likewise.
33946         * modules/fnmatch (License): Likewise.
33947         * modules/fseeko (License): Likewise.
33948         * modules/getaddrinfo (License): Likewise.
33949         * modules/getline (License): Likewise.
33950         * modules/getlogin_r (License): Likewise.
33951         * modules/getpass (License): Likewise.
33952         * modules/gettimeofday (License): Likewise.
33953         * modules/glob (License): Likewise.
33954         * modules/inet_ntop (License): Likewise.
33955         * modules/malloc (License): Likewise.
33956         * modules/malloca (License): Likewise.
33957         * modules/memmem (License): Likewise.
33958         * modules/mempcpy (License): Likewise.
33959         * modules/memset (License): Likewise.
33960         * modules/minmax (License): Likewise.
33961         * modules/mktime (License): Likewise.
33962         * modules/netinet_in (License): Likewise.
33963         * modules/pathmax (License): Likewise.
33964         * modules/poll (License): Likewise.
33965         * modules/regex (License): Likewise.
33966         * modules/snprintf (License): Likewise.
33967         * modules/stdbool (License): Likewise.
33968         * modules/stdint (License): Likewise.
33969         * modules/stdio (License): Likewise.
33970         * modules/strcase (License): Likewise.
33971         * modules/strcasestr (License): Likewise.
33972         * modules/strdup (License): Likewise.
33973         * modules/string (License): Likewise.
33974         * modules/strndup (License): Likewise.
33975         * modules/strnlen (License): Likewise.
33976         * modules/strpbrk (License): Likewise.
33977         * modules/strptime (License): Likewise.
33978         * modules/strsep (License): Likewise.
33979         * modules/sys_select (License): Likewise.
33980         * modules/sys_socket (License): Likewise.
33981         * modules/sys_stat (License): Likewise.
33982         * modules/sys_time (License): Likewise.
33983         * modules/time (License): Likewise.
33984         * modules/time_r (License): Likewise.
33985         * modules/timegm (License): Likewise.
33986         * modules/unistd (License): Likewise.
33987         * modules/vsnprintf (License): Likewise.
33988         * modules/wctype (License): Likewise.
33989
33990 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33991
33992         * modules/argz (License): LGPLv2+.
33993
33994 2007-07-15  Karl Berry  <karl@gnu.org>
33995
33996         * doc/gnulib.texi: revise node structure per new fdl.texi.
33997
33998 2007-07-14  Bruno Haible  <bruno@clisp.org>
33999
34000         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
34001         the output file.
34002         * lib/uniname/uninames.h: Regenerated.
34003
34004 2007-07-14  Karl Berry  <karl@gnu.org>
34005
34006         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
34007         omitting sectioning and index commands.
34008
34009 2007-07-13  Bruno Haible  <bruno@clisp.org>
34010
34011         New gnulib-tool option --more-symlinks.
34012         * gnulib-tool (func_usage): Document --more-symlinks.
34013         (do_copyrights): New variable.
34014         Recognize option --more-symlinks.
34015         (func_import): Don't add a copyright notice transform to
34016         sed_transform_lib_file if do_copyrights is empty.
34017
34018 2007-07-13  Bruno Haible  <bruno@clisp.org>
34019
34020         * lib/vasnprintf.c (decimal_point_char): Define also if
34021         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
34022         && !NEED_PRINTF_DIRECTIVE_A.
34023         Reported by Clemens Koller <clemens.koller@anagramm.de> via
34024         Gary V. Vaughan <gary@gnu.org>.
34025
34026 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
34027
34028         * lib/inttypes_.h: Undo previous change, since it was fixed
34029         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
34030
34031 2007-07-13  Bruno Haible  <bruno@clisp.org>
34032
34033         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
34034         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
34035
34036 2007-07-13  Jim Meyering  <jim@meyering.net>
34037
34038         df: Don't fail for Tru64's "file-on-file mount".
34039         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
34040         so we fall through and use statfs instead.  Details here:
34041         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
34042         Reported by Albert Chin.
34043
34044 2007-07-13  Bruno Haible  <bruno@clisp.org>
34045
34046         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
34047         * modules/configmake (License): Likewise.
34048         * modules/gettext (License): Likewise.
34049         * modules/gettext-h (License): Likewise.
34050         * modules/include_next (License): Likewise.
34051         * modules/link-warning (License): Likewise.
34052         * modules/localcharset (License): Likewise.
34053         * modules/localename (License): Likewise.
34054         * modules/lock (License): Likewise.
34055         * modules/relocatable-lib-lgpl (License): Likewise.
34056         * modules/size_max (License): Likewise.
34057         * modules/vasnprintf (License): Likewise.
34058         * modules/wchar (License): Likewise.
34059         * modules/xsize (License): Likewise.
34060
34061 2007-07-13  Bruno Haible  <bruno@clisp.org>
34062
34063         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
34064         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
34065
34066 2007-07-12  Bruno Haible  <bruno@clisp.org>
34067
34068         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
34069         in the modules files.
34070
34071 2007-07-11  Karl Berry  <karl@gnu.org>
34072
34073         * MODULES.html.sh (func_module): use
34074          sed -e '\|^'"${includefile}"'$|d'
34075          instead of /.../d, to avoid errors on $includefile's containing /.
34076
34077 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
34078
34079         * gnulib-tool (func_import): Avoid duplication of --avoid
34080         statements
34081         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
34082         names to `_' in variable names.
34083
34084 2007-07-10  Eric Blake  <ebb9@byu.net>
34085
34086         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
34087         * NEWS: Document this change.
34088
34089 2007-07-08  Bruno Haible  <bruno@clisp.org>
34090
34091         Update to Unicode 5.0.
34092         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
34093         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
34094         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
34095         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
34096         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
34097         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
34098         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
34099         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
34100         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
34101         U+10A3F, U+1D242..U+1D244.
34102         (nonspacing_table_ind): Update.
34103         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
34104         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
34105
34106 2007-07-08  Bruno Haible  <bruno@clisp.org>
34107
34108         Update to Unicode 5.0.
34109         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
34110         code transform. Extend the name index field of unicode_name_to_code and
34111         unicode_code_to_name from 16 to 24 bits.
34112         * lib/uniname/uniname.c (unicode_character_name,
34113         unicode_name_character): Add the range 0x12xxx to the code transform.
34114         * lib/uniname/uninames.h: Regenerated.
34115         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
34116
34117 2007-07-07  Bruno Haible  <bruno@clisp.org>
34118
34119         * modules/wcwidth-tests: New file.
34120         * tests/test-wcwidth.c: New file.
34121
34122         Work around MacOS X wcwidth() bug.
34123         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
34124         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
34125         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
34126         original wcwidth in non-UTF-8 locales.
34127         * modules/wcwidth (Depends-on): Add localcharset, streq,
34128         uniwidth/width.
34129         * doc/functions/wcwidth.texi: Update.
34130
34131 2007-07-07  Bruno Haible  <bruno@clisp.org>
34132
34133         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
34134         (wcwidth): New declaration.
34135         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
34136         macros.
34137         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
34138         here. Prepare for creating <wchar.h> unconditionally.
34139         * modules/wchar (Depends-on): Add link-warning.
34140         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
34141         REPLACE_WCWIDTH, and GL_LINK_WARNING.
34142         * lib/wcwidth.h: Remove file.
34143         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
34144         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
34145         * modules/wcwidth (Files): Remove lib/wcwidth.h.
34146         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
34147         (Include): Replace wcwidth.h with <wchar.h>.
34148         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
34149         * lib/mbchar.h: Don't include wcwidth.h.
34150         * lib/mbswidth.c: Likewise.
34151         * NEWS: Mention the change.
34152
34153 2007-07-07  Bruno Haible  <bruno@clisp.org>
34154
34155         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
34156         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
34157         definition with an external declaration.
34158         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
34159         defined as a function. Remove AC_C_INLINE requirement.
34160         * modules/wcwidth (Files): Add lib/wcwidth.c.
34161         (Makefile.am): Remove redundant statement.
34162
34163 2007-07-07  Bruno Haible  <bruno@clisp.org>
34164
34165         * MODULES.html.sh (Unicode string functions): Add the new modules.
34166
34167         * tests/uniwidth/test-u32-strwidth.c: New file.
34168         * modules/uniwidth/u32-strwidth-tests: New file.
34169
34170         * lib/uniwidth/u32-strwidth.c: New file.
34171         * modules/uniwidth/u32-strwidth: New file.
34172
34173         * tests/uniwidth/test-u16-strwidth.c: New file.
34174         * modules/uniwidth/u16-strwidth-tests: New file.
34175
34176         * lib/uniwidth/u16-strwidth.c: New file.
34177         * modules/uniwidth/u16-strwidth: New file.
34178
34179         * tests/uniwidth/test-u8-strwidth.c: New file.
34180         * modules/uniwidth/u8-strwidth-tests: New file.
34181
34182         * lib/uniwidth/u8-strwidth.c: New file.
34183         * modules/uniwidth/u8-strwidth: New file.
34184
34185         * tests/uniwidth/test-u32-width.c: New file.
34186         * modules/uniwidth/u32-width-tests: New file.
34187
34188         * lib/uniwidth/u32-width.c: New file.
34189         * modules/uniwidth/u32-width: New file.
34190
34191         * tests/uniwidth/test-u16-width.c: New file.
34192         * modules/uniwidth/u16-width-tests: New file.
34193
34194         * lib/uniwidth/u16-width.c: New file.
34195         * modules/uniwidth/u16-width: New file.
34196
34197         * tests/uniwidth/test-u8-width.c: New file.
34198         * modules/uniwidth/u8-width-tests: New file.
34199
34200         * lib/uniwidth/u8-width.c: New file.
34201         * modules/uniwidth/u8-width: New file.
34202
34203         * tests/uniwidth/test-uc_width.c: New file.
34204         * modules/uniwidth/width-tests: New file.
34205
34206         * lib/uniwidth/width.c: New file, from GNU libiconv.
34207         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
34208         * modules/uniwidth/width: New file.
34209
34210         * lib/uniwidth.h: New file, from GNU libiconv.
34211         * modules/uniwidth/base: New file.
34212
34213 2007-07-07  Bruno Haible  <bruno@clisp.org>
34214
34215         * lib/uniname.h: New file, from GNU gettext.
34216         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
34217         * lib/uniname/uninames.h: New file, from GNU gettext.
34218         * lib/uniname/uniname.c: New file, from GNU gettext.
34219         * tests/uniname/test-uninames.sh: New file.
34220         * tests/uniname/test-uninames.c: New file, from GNU gettext.
34221         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
34222         * modules/uniname/base: New file.
34223         * modules/uniname/uniname: New file.
34224         * modules/uniname/uniname-tests: New file.
34225         * MODULES.html.sh (Unicode string functions): Add the new modules.
34226
34227 2007-07-06  Bruno Haible  <bruno@clisp.org>
34228
34229         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
34230
34231 2007-07-06  Bruno Haible  <bruno@clisp.org>
34232
34233         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
34234         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
34235         includes <cygwin/sys_time.h> which includes <sys/select.h> which
34236         include <sys/time.h>.
34237         Reported by Eric Blake.
34238
34239 2007-07-06  Eric Blake  <ebb9@byu.net>
34240
34241         Fix testing canonicalize on cygwin.
34242         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
34243         Revert patch from 2007-06-19.
34244         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
34245         canonicalize module is also in use.
34246         * tests/test-canonicalize.c: New file.
34247         * tests/test-canonicalize.sh: Likewise.
34248         * modules/canonicalize-tests: Likewise.
34249
34250 2007-07-06  Jim Meyering  <jim@meyering.net>
34251
34252         * lib/getugroups.c (getugroups): Detect getgrent failure.
34253         Adjust comment to reflect reality: this function may return -1.
34254
34255 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
34256
34257         * build-aux/bootstrap (TP_URL,get_translations): Update to use
34258         the new TP address.
34259         (usage): Fix typo
34260         (gnulib_mk): New variable.
34261
34262 2007-07-05  Jim Meyering  <jim@meyering.net>
34263
34264         Don't let endgrent clobber errno, no matter how improbable.
34265         * lib/getugroups.c (getugroups): Save and restore errno around
34266         endgrent call.
34267
34268         Close the group DB even when failing with 2^31 or more members.
34269         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
34270
34271 2007-07-04  Jim Meyering  <jim@meyering.net>
34272
34273         * lib/getugroups.h: New file.
34274         * lib/getugroups.c: Include "getugroups.h".
34275         Remove uses of "register" keyword.
34276         Move local variable, "cp", down into scope where used.
34277         Give "username" parameter the "const" attribute.
34278         * modules/getugroups (Files): Add lib/getugroups.h
34279
34280 2007-07-04  Karl Berry  <karl@gnu.org>
34281
34282         * MODULES.html.sh (func_all_modules): Complete rename of
34283         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
34284
34285 2007-07-02  Bruno Haible  <bruno@clisp.org>
34286
34287         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
34288         mode, when inttypes.h comes from gnulib.
34289         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
34290
34291 2007-07-02  Simon Josefsson  <simon@josefsson.org>
34292
34293         * NEWS: Mention lgpl module name change.
34294
34295         * modules/lgpl-2.1: Renamed from lgpl.
34296
34297         * NEWS: Mention gpl module name change.
34298
34299         * modules/gpl-3.0: New file, based on gpl-2.0.
34300
34301         * modules/gpl-2.0: Renamed from gpl.
34302
34303         * modules/gpl: Fix filename, doc/gpl.texi is now found at
34304         doc/gpl-2.0.texi.
34305
34306 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
34307
34308         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
34309         #define __STDC_LIMIT_MACROS temporarily while including
34310         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
34311         Problem reported by Joel E. Denny in
34312         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
34313
34314 2007-07-01  Bruno Haible  <bruno@clisp.org>
34315
34316         * lib/unistdio.h: New file.
34317         * lib/unistdio/u-asnprintf.h: New file.
34318         * lib/unistdio/u-asprintf.h: New file.
34319         * lib/unistdio/u-printf-args.c: New file.
34320         * lib/unistdio/u-printf-args.h: New file.
34321         * lib/unistdio/u-printf-parse.h: New file.
34322         * lib/unistdio/u-snprintf.h: New file.
34323         * lib/unistdio/u-sprintf.h: New file.
34324         * lib/unistdio/u-vasprintf.h: New file.
34325         * lib/unistdio/u-vsnprintf.h: New file.
34326         * lib/unistdio/u-vsprintf.h: New file.
34327         * lib/unistdio/ulc-asnprintf.c: New file.
34328         * lib/unistdio/ulc-asprintf.c: New file.
34329         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
34330         * lib/unistdio/ulc-printf-parse.c: New file.
34331         * lib/unistdio/ulc-snprintf.c: New file.
34332         * lib/unistdio/ulc-sprintf.c: New file.
34333         * lib/unistdio/ulc-vasnprintf.c: New file.
34334         * lib/unistdio/ulc-vasprintf.c: New file.
34335         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
34336         * lib/unistdio/ulc-vsnprintf.c: New file.
34337         * lib/unistdio/ulc-vsprintf.c: New file.
34338         * lib/unistdio/u8-asnprintf.c: New file.
34339         * lib/unistdio/u8-asprintf.c: New file.
34340         * lib/unistdio/u8-printf-parse.c: New file.
34341         * lib/unistdio/u8-snprintf.c: New file.
34342         * lib/unistdio/u8-sprintf.c: New file.
34343         * lib/unistdio/u8-vasnprintf.c: New file.
34344         * lib/unistdio/u8-vasprintf.c: New file.
34345         * lib/unistdio/u8-vsnprintf.c: New file.
34346         * lib/unistdio/u8-vsprintf.c: New file.
34347         * lib/unistdio/u8-u8-asnprintf.c: New file.
34348         * lib/unistdio/u8-u8-asprintf.c: New file.
34349         * lib/unistdio/u8-u8-snprintf.c: New file.
34350         * lib/unistdio/u8-u8-sprintf.c: New file.
34351         * lib/unistdio/u8-u8-vasnprintf.c: New file.
34352         * lib/unistdio/u8-u8-vasprintf.c: New file.
34353         * lib/unistdio/u8-u8-vsnprintf.c: New file.
34354         * lib/unistdio/u8-u8-vsprintf.c: New file.
34355         * lib/unistdio/u16-asnprintf.c: New file.
34356         * lib/unistdio/u16-asprintf.c: New file.
34357         * lib/unistdio/u16-printf-parse.c: New file.
34358         * lib/unistdio/u16-snprintf.c: New file.
34359         * lib/unistdio/u16-sprintf.c: New file.
34360         * lib/unistdio/u16-vasnprintf.c: New file.
34361         * lib/unistdio/u16-vasprintf.c: New file.
34362         * lib/unistdio/u16-vsnprintf.c: New file.
34363         * lib/unistdio/u16-vsprintf.c: New file.
34364         * lib/unistdio/u16-u16-asnprintf.c: New file.
34365         * lib/unistdio/u16-u16-asprintf.c: New file.
34366         * lib/unistdio/u16-u16-snprintf.c: New file.
34367         * lib/unistdio/u16-u16-sprintf.c: New file.
34368         * lib/unistdio/u16-u16-vasnprintf.c: New file.
34369         * lib/unistdio/u16-u16-vasprintf.c: New file.
34370         * lib/unistdio/u16-u16-vsnprintf.c: New file.
34371         * lib/unistdio/u16-u16-vsprintf.c: New file.
34372         * lib/unistdio/u32-asnprintf.c: New file.
34373         * lib/unistdio/u32-asprintf.c: New file.
34374         * lib/unistdio/u32-printf-parse.c: New file.
34375         * lib/unistdio/u32-snprintf.c: New file.
34376         * lib/unistdio/u32-sprintf.c: New file.
34377         * lib/unistdio/u32-vasnprintf.c: New file.
34378         * lib/unistdio/u32-vasprintf.c: New file.
34379         * lib/unistdio/u32-vsnprintf.c: New file.
34380         * lib/unistdio/u32-vsprintf.c: New file.
34381         * lib/unistdio/u32-u32-asnprintf.c: New file.
34382         * lib/unistdio/u32-u32-asprintf.c: New file.
34383         * lib/unistdio/u32-u32-snprintf.c: New file.
34384         * lib/unistdio/u32-u32-sprintf.c: New file.
34385         * lib/unistdio/u32-u32-vasnprintf.c: New file.
34386         * lib/unistdio/u32-u32-vasprintf.c: New file.
34387         * lib/unistdio/u32-u32-vsnprintf.c: New file.
34388         * lib/unistdio/u32-u32-vsprintf.c: New file.
34389         * tests/unistdio/test-ulc-asnprintf1.c: New file.
34390         * tests/unistdio/test-ulc-asnprintf1.h: New file.
34391         * tests/unistdio/test-ulc-printf1.h: New file.
34392         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
34393         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
34394         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
34395         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
34396         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
34397         * tests/unistdio/test-ulc-vasprintf1.c: New file.
34398         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
34399         * tests/unistdio/test-ulc-vsprintf1.c: New file.
34400         * tests/unistdio/test-u8-asnprintf1.c: New file.
34401         * tests/unistdio/test-u8-asnprintf1.h: New file.
34402         * tests/unistdio/test-u8-printf1.h: New file.
34403         * tests/unistdio/test-u8-vasnprintf1.c: New file.
34404         * tests/unistdio/test-u8-vasnprintf2.c: New file.
34405         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
34406         * tests/unistdio/test-u8-vasnprintf3.c: New file.
34407         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
34408         * tests/unistdio/test-u8-vasprintf1.c: New file.
34409         * tests/unistdio/test-u8-vsnprintf1.c: New file.
34410         * tests/unistdio/test-u8-vsprintf1.c: New file.
34411         * tests/unistdio/test-u16-asnprintf1.c: New file.
34412         * tests/unistdio/test-u16-asnprintf1.h: New file.
34413         * tests/unistdio/test-u16-printf1.h: New file.
34414         * tests/unistdio/test-u16-vasnprintf1.c: New file.
34415         * tests/unistdio/test-u16-vasnprintf2.c: New file.
34416         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
34417         * tests/unistdio/test-u16-vasnprintf3.c: New file.
34418         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
34419         * tests/unistdio/test-u16-vasprintf1.c: New file.
34420         * tests/unistdio/test-u16-vsnprintf1.c: New file.
34421         * tests/unistdio/test-u16-vsprintf1.c: New file.
34422         * tests/unistdio/test-u32-asnprintf1.c: New file.
34423         * tests/unistdio/test-u32-asnprintf1.h: New file.
34424         * tests/unistdio/test-u32-printf1.h: New file.
34425         * tests/unistdio/test-u32-vasnprintf1.c: New file.
34426         * tests/unistdio/test-u32-vasnprintf2.c: New file.
34427         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
34428         * tests/unistdio/test-u32-vasnprintf3.c: New file.
34429         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
34430         * tests/unistdio/test-u32-vasprintf1.c: New file.
34431         * tests/unistdio/test-u32-vsnprintf1.c: New file.
34432         * tests/unistdio/test-u32-vsprintf1.c: New file.
34433         * modules/unistdio/base: New file.
34434         * modules/unistdio/u-printf-args: New file.
34435         * modules/unistdio/ulc-asnprintf: New file.
34436         * modules/unistdio/ulc-asprintf: New file.
34437         * modules/unistdio/ulc-fprintf: New file.
34438         * modules/unistdio/ulc-printf-parse: New file.
34439         * modules/unistdio/ulc-snprintf: New file.
34440         * modules/unistdio/ulc-sprintf: New file.
34441         * modules/unistdio/ulc-vasnprintf: New file.
34442         * modules/unistdio/ulc-vasprintf: New file.
34443         * modules/unistdio/ulc-vfprintf: New file.
34444         * modules/unistdio/ulc-vsnprintf: New file.
34445         * modules/unistdio/ulc-vsprintf: New file.
34446         * modules/unistdio/u8-asnprintf: New file.
34447         * modules/unistdio/u8-asprintf: New file.
34448         * modules/unistdio/u8-printf-parse: New file.
34449         * modules/unistdio/u8-snprintf: New file.
34450         * modules/unistdio/u8-sprintf: New file.
34451         * modules/unistdio/u8-vasnprintf: New file.
34452         * modules/unistdio/u8-vasprintf: New file.
34453         * modules/unistdio/u8-vsnprintf: New file.
34454         * modules/unistdio/u8-vsprintf: New file.
34455         * modules/unistdio/u8-u8-asnprintf: New file.
34456         * modules/unistdio/u8-u8-asprintf: New file.
34457         * modules/unistdio/u8-u8-snprintf: New file.
34458         * modules/unistdio/u8-u8-sprintf: New file.
34459         * modules/unistdio/u8-u8-vasnprintf: New file.
34460         * modules/unistdio/u8-u8-vasprintf: New file.
34461         * modules/unistdio/u8-u8-vsnprintf: New file.
34462         * modules/unistdio/u8-u8-vsprintf: New file.
34463         * modules/unistdio/u16-asnprintf: New file.
34464         * modules/unistdio/u16-asprintf: New file.
34465         * modules/unistdio/u16-printf-parse: New file.
34466         * modules/unistdio/u16-snprintf: New file.
34467         * modules/unistdio/u16-sprintf: New file.
34468         * modules/unistdio/u16-vasnprintf: New file.
34469         * modules/unistdio/u16-vasprintf: New file.
34470         * modules/unistdio/u16-vsnprintf: New file.
34471         * modules/unistdio/u16-vsprintf: New file.
34472         * modules/unistdio/u16-u16-asnprintf: New file.
34473         * modules/unistdio/u16-u16-asprintf: New file.
34474         * modules/unistdio/u16-u16-snprintf: New file.
34475         * modules/unistdio/u16-u16-sprintf: New file.
34476         * modules/unistdio/u16-u16-vasnprintf: New file.
34477         * modules/unistdio/u16-u16-vasprintf: New file.
34478         * modules/unistdio/u16-u16-vsnprintf: New file.
34479         * modules/unistdio/u16-u16-vsprintf: New file.
34480         * modules/unistdio/u32-asnprintf: New file.
34481         * modules/unistdio/u32-asprintf: New file.
34482         * modules/unistdio/u32-printf-parse: New file.
34483         * modules/unistdio/u32-snprintf: New file.
34484         * modules/unistdio/u32-sprintf: New file.
34485         * modules/unistdio/u32-vasnprintf: New file.
34486         * modules/unistdio/u32-vasprintf: New file.
34487         * modules/unistdio/u32-vsnprintf: New file.
34488         * modules/unistdio/u32-vsprintf: New file.
34489         * modules/unistdio/u32-u32-asnprintf: New file.
34490         * modules/unistdio/u32-u32-asprintf: New file.
34491         * modules/unistdio/u32-u32-snprintf: New file.
34492         * modules/unistdio/u32-u32-sprintf: New file.
34493         * modules/unistdio/u32-u32-vasnprintf: New file.
34494         * modules/unistdio/u32-u32-vasprintf: New file.
34495         * modules/unistdio/u32-u32-vsnprintf: New file.
34496         * modules/unistdio/u32-u32-vsprintf: New file.
34497         * modules/unistdio/ulc-asnprintf-tests: New file.
34498         * modules/unistdio/ulc-vasnprintf-tests: New file.
34499         * modules/unistdio/ulc-vasprintf-tests: New file.
34500         * modules/unistdio/ulc-vsnprintf-tests: New file.
34501         * modules/unistdio/ulc-vsprintf-tests: New file.
34502         * modules/unistdio/u8-asnprintf-tests: New file.
34503         * modules/unistdio/u8-vasnprintf-tests: New file.
34504         * modules/unistdio/u8-vasprintf-tests: New file.
34505         * modules/unistdio/u8-vsnprintf-tests: New file.
34506         * modules/unistdio/u8-vsprintf-tests: New file.
34507         * modules/unistdio/u16-asnprintf-tests: New file.
34508         * modules/unistdio/u16-vasnprintf-tests: New file.
34509         * modules/unistdio/u16-vasprintf-tests: New file.
34510         * modules/unistdio/u16-vsnprintf-tests: New file.
34511         * modules/unistdio/u16-vsprintf-tests: New file.
34512         * modules/unistdio/u32-asnprintf-tests: New file.
34513         * modules/unistdio/u32-vasnprintf-tests: New file.
34514         * modules/unistdio/u32-vasprintf-tests: New file.
34515         * modules/unistdio/u32-vsnprintf-tests: New file.
34516         * modules/unistdio/u32-vsprintf-tests: New file.
34517         * MODULES.html.sh (Unicode string functions): Add the new modules.
34518
34519 2007-07-01  Bruno Haible  <bruno@clisp.org>
34520
34521         * lib/sprintf.c (sprintf): Limit the available length estimation,
34522         to avoid address wraparound.
34523         * lib/vsprintf.c (vsprintf): Likewise.
34524         * modules/sprintf-posix (Dependencies): Add stdint.
34525         * modules/vsprintf-posix (Dependencies): Likewise.
34526
34527 2007-07-01  Bruno Haible  <bruno@clisp.org>
34528
34529         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
34530         Windows PATH as well. Conservative double-quoting. Comments.
34531
34532 2007-07-01  Bruno Haible  <bruno@clisp.org>
34533             Eric Blake  <ebb9@byu.net>
34534             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34535
34536         * gnulib-tool (self_abspathname): Fix algorithm to cope with
34537         empty components in $PATH, denoting '.'.
34538
34539 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34540
34541         * gnulib-tool: Fix indentation.
34542         (func_create_megatestdir): Likewise.
34543         Report by Bruno Haible.
34544
34545 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34546
34547         Sync from Automake.
34548         * build-aux/gnupload: Fix shell portability issues with for loops.
34549         Report by Karl Berry.
34550
34551 2007-06-29  Simon Josefsson  <simon@josefsson.org>
34552
34553         * build-aux/maint.mk (POURL): Use translationproject.org.
34554
34555 2007-06-27  Simon Josefsson  <simon@josefsson.org>
34556             Bruno Haible  <bruno@clisp.org>
34557
34558         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
34559         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
34560         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
34561         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
34562         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
34563
34564 2007-06-27  Bruno Haible  <bruno@clisp.org>
34565
34566         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
34567         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
34568
34569 2007-06-26  Karl Berry  <karl@gnu.org>
34570
34571         * MODULES.html.sh: remove xreadlink-with-size.
34572
34573 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
34574
34575         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
34576         method that I hope also handles the double-include problem noted
34577         by Bruno Haible in
34578         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
34579
34580 2007-06-23  Bruno Haible  <bruno@clisp.org>
34581
34582         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
34583         Don't let the 'mostlyclean' target fail if the last subdirectory could
34584         not be removed.
34585         Reported by Karl Berry.
34586
34587 2007-06-23  Bruno Haible  <bruno@clisp.org>
34588
34589         * gnulib-tool (echo): Add a speedier workaround for ksh.
34590         * tests/test-echo.sh: Likewise.
34591
34592 2007-06-23  Bruno Haible  <bruno@clisp.org>
34593
34594         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
34595         * tests/test-echo.sh: Likewise.
34596
34597 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34598
34599         * gnulib-tool (IFS): Initialize early, so we don't set it to
34600         empty later.
34601         (self_abspathname): Rewrite algorithm to set it, reindent.
34602         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
34603         (func_create_megatestdir): Merge some sed scripts.
34604
34605 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
34606
34607         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
34608         exposed by Sun Studio 11 cc on Solaris 8.
34609
34610 2007-06-22  Bruno Haible  <bruno@clisp.org>
34611
34612         * gnulib-tool (echo): Ensure the echo primitive does not interpret
34613         backslashes.
34614         * tests/test-echo.sh: New file.
34615
34616 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34617
34618         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
34619         simplify `sed_replace_build_aux' scripts, they are portable but
34620         echoing them with `echo' is not.
34621         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
34622
34623 2007-06-21  Karl Berry  <karl@gnu.org>
34624
34625         * config/srclist.txt: guess we can't handle the licenses via
34626         srclist at the moment.
34627
34628 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
34629
34630         * MODULES.html.sh: Add include_next.
34631         * modules/include_next: New file.
34632
34633 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
34634
34635         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
34636         INCLUDE_NEXT.
34637         (gl_CHECK_NEXT_HEADERS): New macro.
34638         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
34639         the obsolescent gl_ABSOLUTE_HEADER.
34640         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
34641         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
34642         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
34643         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
34644         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
34645         * m4/math_h.m4 (gl_MATH_H): Likewise.
34646         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
34647         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
34648         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
34649         * m4/stdint.m4 (gl_STDINT_H): Likewise.
34650         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
34651         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
34652         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
34653         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
34654         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
34655         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
34656         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
34657         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
34658         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
34659         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
34660         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
34661         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
34662         * m4/inttypes.m4 (gl_INTTYPES_H): Define
34663         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
34664         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
34665         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
34666         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
34667         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
34668         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
34669         * lib/float_.h: Likewise.
34670         * lib/inttypes_.h: Likewise.
34671         * lib/math_.h: Likewise.
34672         * lib/search_.h: Likewise.
34673         * lib/signal_.h: Likewise.
34674         * lib/stdint_.h: Likewise.
34675         * lib/stdio_.h: Likewise.
34676         * lib/stdlib_.h: Likewise.
34677         * lib/string_.h: Likewise.
34678         * lib/sys_stat_.h: Likewise.
34679         * lib/sys_time_.h: Likewise.
34680         * lib/time_.h: Likewise.
34681         * lib/unistd_.h: Likewise.
34682         * lib/wchar_.h: Likewise.
34683         * lib/wctype_.h: Likewise.
34684         * lib/dirent_.h: Likewise.
34685         * lib/iconv_.h: Likewise.
34686         * lib/locale_.h: Likewise.
34687         * lib/netinet_in_.h: Likewise.
34688         * lib/sys_select_.h: Likewise.
34689         * lib/sys_socket_.h: Likewise.
34690         * lib/sysexits_.h: Likewise.
34691         * modules/fcntl (Depends-on): Depend on include_next, not
34692         absolute_header.
34693         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
34694         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
34695         * modules/fchdir: Likewise.
34696         * modules/float: Likewise.
34697         * modules/iconv_open: Likewise.
34698         * modules/inttypes: Likewise.
34699         * modules/locale: Likewise.
34700         * modules/math: Likewise.
34701         * modules/netinet_in: Likewise.
34702         * modules/search: Likewise.
34703         * modules/signal: Likewise.
34704         * modules/stdint: Likewise.
34705         * modules/stdio: Likewise.
34706         * modules/stdlib: Likewise.
34707         * modules/string: Likewise.
34708         * modules/sys_select: Likewise.
34709         * modules/sys_socket: Likewise.
34710         * modules/sys_stat: Likewise.
34711         * modules/sys_time: Likewise.
34712         * modules/sysexits: Likewise.
34713         * modules/time: Likewise.
34714         * modules/unistd: Likewise.
34715         * modules/wchar: Likewise.
34716         * modules/wctype: Likewise.
34717         * modules/sys_stat: Change maintainer to "all".
34718         * modules/unistd: Likewise.
34719
34720 2007-06-20  Karl Berry  <karl@gnu.org>
34721
34722         * config/srclist.txt: track www changes in license files.
34723
34724 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
34725
34726         * build-aux/bootstrap: Remove stray dot.
34727         Make sure build_aux settings are honored when linking
34728         gnulib_extra_files.
34729
34730 2007-06-19  Eric Blake  <ebb9@byu.net>
34731
34732         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
34733         Allow compilation on cygwin.
34734
34735 2007-06-19  Jim Meyering  <jim@meyering.net>
34736
34737         xreadlink-with-size: Remove module.  No longer used.
34738         Ex-callers now use xreadlink or mreadlink-with-size.
34739         * modules/xreadlink-with-size: Remove module.
34740         * lib/xreadlink-with-size.c: Remove file.
34741         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
34742         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
34743         just before the function definition *is* accurate.
34744
34745         Eliminate one way canonicalize_filename_mode could exit.
34746         * lib/canonicalize.c (canonicalize_filename_mode):
34747         Use mreadlink_with_size, not xreadlink_with_size.
34748
34749 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
34750
34751         Detect porting problems to FreeBSD/arm, which has time_t wider than
34752         long int.  Original problem reported for GNU diff by Xin Li in
34753         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
34754         * modules/getdate (Depends-on): Add intprops, verify.
34755         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
34756         is an integer type no wider than long int.
34757
34758 2007-06-18  Jim Meyering  <jim@meyering.net>
34759
34760         New module: mreadlink-with-size.
34761         * MODULES.html.sh: Add mreadlink-with-size.
34762         * modules/mreadlink-with-size: New module
34763         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
34764         not xreadlink-with-size.
34765         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
34766
34767 2007-06-16  Bruno Haible  <bruno@clisp.org>
34768
34769         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
34770         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
34771         Reported by Gary V. Vaughan <gary@gnu.org>.
34772
34773 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
34774
34775         Revamp lchown so that it lives in unistd.h where it belongs.
34776         * lib/lchown.h: Remove.
34777         * lib/dirchownmod.c: Don't include lib/lchown.h.
34778         * lib/fchownat.c: Likewise.
34779         * lib/openat.c: Likewise.
34780         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
34781         does not follow symlinks.
34782         (EOPNOTSUPP): Define if not defined.
34783         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
34784         is defined to 0.
34785         (lchown): New decl.
34786         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
34787         Do not check for lchown decl.
34788         Set REPLACE_LCHOWN.
34789         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
34790         REPLACE_LCHOWN.
34791         * modules/chown: Make it clear it follows symlinks.
34792         * modules/lchown: Make it clear it doesn't follow symlinks.
34793         (Files): Remove lib/lchown.h
34794         (Depends-on): Add unistd.
34795         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
34796         (Include): Include <unistd.h>, not "lchown.h".
34797         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
34798         REPLACE_LCHOWN.
34799
34800 2007-06-15  Jim Meyering  <jim@meyering.net>
34801
34802         Change license (GPL to LGPL) of fsusage and dependents.
34803         * modules/fsusage (License): Change to LGPL.
34804         * modules/full-read (License): Likewise.
34805         * modules/full-write (License): Likewise.
34806         * modules/safe-read (License): Likewise.
34807         * modules/safe-write (License): Likewise.
34808
34809 2007-06-14  Ben Pfaff  <blp@gnu.org>
34810
34811         Missing part of allocsa -> malloca transition.
34812         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
34813         gl_MALLOCA.
34814
34815 2007-06-12  Bruno Haible  <bruno@clisp.org>
34816
34817         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
34818         to ia64, x86_64, i386.
34819         Reported by Eric Blake.
34820
34821 2007-06-12  Bruno Haible  <bruno@clisp.org>
34822
34823         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
34824         cross-compiling to x86_64.
34825
34826 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
34827
34828         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
34829         glitch reported by Ralf Wildenhues in
34830         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
34831
34832         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
34833         Vin Shelton.
34834
34835 2007-06-11  Bruno Haible  <bruno@clisp.org>
34836
34837         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
34838         replacement string.
34839         Reported by Eric Blake.
34840
34841 2007-06-10  Bruno Haible  <bruno@clisp.org>
34842
34843         Prepare vasnprintf code for use with Unicode strings.
34844         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
34845         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
34846         TYPE_U32_STRING.
34847         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
34848         a_u32_string variants.
34849         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
34850         * lib/printf-args.c: Don't include config.h and the specification
34851         header if PRINTF_FETCHARGS is already defined.
34852         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
34853         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
34854         TYPE_U16_STRING, TYPE_U32_STRING.
34855         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
34856         u16_directive, u16_directives, u32_directive, u32_directives): New
34857         types.
34858         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
34859         New declarations.
34860         * lib/printf-parse.c: Don't include config.h and the specification
34861         header if PRINTF_PARSE is already defined. Eliminate the set of
34862         parameters for WIDE_CHAR_VERSION; the user of this file must provide
34863         them now. Include c-ctype.h.
34864         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
34865         directive and CHAR_T_ONLY_ASCII.
34866         * lib/vasnprintf.c: Don't include config.h and the specification header
34867         if VASNPRINTF is already defined.
34868         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
34869         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
34870         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
34871         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
34872         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
34873         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
34874         code accordingly.
34875         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
34876         pad_ourselves also in this case, with the 'c' and 's' directives, and
34877         with a different notion of "width".
34878         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
34879
34880 2007-06-10  Bruno Haible  <bruno@clisp.org>
34881
34882         * modules/unistr/u32-mbsnlen: New file.
34883         * lib/unistr/u32-mbsnlen.c: New file.
34884
34885         * modules/unistr/u16-mbsnlen: New file.
34886         * lib/unistr/u16-mbsnlen.c: New file.
34887
34888         * modules/unistr/u8-mbsnlen: New file.
34889         * lib/unistr/u8-mbsnlen.c: New file.
34890
34891         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
34892         declarations.
34893
34894 2007-06-10  Bruno Haible  <bruno@clisp.org>
34895
34896         * lib/string_.h (mbsnlen): New declaration.
34897         * lib/mbsnlen.c: New file.
34898         * m4/mbsnlen.m4: New file.
34899         * modules/mbsnlen: New file.
34900         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
34901         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
34902         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
34903
34904 2007-06-10  Bruno Haible  <bruno@clisp.org>
34905
34906         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
34907
34908 2007-06-10  Bruno Haible  <bruno@clisp.org>
34909
34910         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
34911         * lib/mbuiter.h: Likewise.
34912
34913 2007-06-10  Bruno Haible  <bruno@clisp.org>
34914
34915         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
34916         declaration.
34917
34918 2007-06-10  Karl Berry  <karl@gnu.org>
34919
34920         * config/srclist.txt: remove gettext entries, Bruno prefers
34921         to update individually.
34922
34923 2007-06-10  Bruno Haible  <bruno@clisp.org>
34924
34925         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
34926         'maxlen'. Ensure only length + width bytes are allocated, not
34927         length + 1 + width.
34928
34929 2007-06-09  Bruno Haible  <bruno@clisp.org>
34930
34931         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
34932         (CHAR_T): Remove macro.
34933         (VASNPRINTF): Update.
34934
34935 2007-06-09  Bruno Haible  <bruno@clisp.org>
34936
34937         * MODULES.html.sh (Unicode string functions): Add the new modules.
34938
34939         * modules/uniconv/u32-conv-to-enc: New file.
34940         * lib/uniconv/u32-conv-to-enc.c: New file.
34941         * modules/uniconv/u32-conv-to-enc-tests: New file.
34942         * tests/uniconv/test-u32-conv-to-enc.c: New file.
34943
34944         * modules/uniconv/u16-conv-to-enc: New file.
34945         * lib/uniconv/u16-conv-to-enc.c: New file.
34946         * lib/uniconv/u-conv-to-enc.h: New file.
34947         * modules/uniconv/u16-conv-to-enc-tests: New file.
34948         * tests/uniconv/test-u16-conv-to-enc.c: New file.
34949
34950         * modules/uniconv/u8-conv-to-enc: New file.
34951         * lib/uniconv/u8-conv-to-enc.c: New file.
34952         * modules/uniconv/u8-conv-to-enc-tests: New file.
34953         * tests/uniconv/test-u8-conv-to-enc.c: New file.
34954
34955         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
34956         u32_conv_to_encoding): New declarations.
34957
34958 2007-06-09  Bruno Haible  <bruno@clisp.org>
34959
34960         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
34961
34962 2007-06-09  Bruno Haible  <bruno@clisp.org>
34963
34964         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
34965         * modules/malloca: Renamed from modules/allocsa, updated.
34966         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
34967         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
34968         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
34969         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
34970         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
34971         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
34972         * modules/xmalloca: Renamed from modules/xallocsa, updated.
34973         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
34974         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
34975         * modules/c-strcasestr (Depends-on): Update.
34976         * lib/c-strcasestr.c: Update.
34977         * modules/c-strstr (Depends-on): Update.
34978         * lib/c-strstr.c: Update.
34979         * modules/canonicalize-lgpl (Depends-on): Update.
34980         * lib/canonicalize-lgpl.c: Update.
34981         * modules/clean-temp (Depends-on): Update.
34982         * lib/clean-temp.c: Update.
34983         * modules/csharpcomp (Depends-on): Update.
34984         * lib/csharpcomp.c: Update.
34985         * modules/csharpexec (Depends-on): Update.
34986         * lib/csharpexec.c: Update.
34987         * modules/javacomp (Depends-on): Update.
34988         * lib/javacomp.c: Update.
34989         * modules/javaexec (Depends-on): Update.
34990         * lib/javaexec.c: Update.
34991         * modules/mbscasestr (Depends-on): Update.
34992         * lib/mbscasestr.c: Update.
34993         * modules/mbsstr (Depends-on): Update.
34994         * lib/mbsstr.c: Update.
34995         * modules/setenv (Depends-on): Update.
34996         * lib/setenv.c: Update.
34997         * modules/strcasestr (Depends-on): Update.
34998         * lib/strcasestr.c: Update.
34999         * modules/striconveha (Depends-on): Update.
35000         * lib/striconveha.c: Update.
35001         * modules/relocatable-prog-wrapper (Files): Update.
35002         * lib/relocwrapper.c: Update.
35003         * build-aux/install-reloc: Update.
35004         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
35005
35006 2007-06-08  Bruno Haible  <bruno@clisp.org>
35007
35008         Port to uClibc.
35009         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
35010         * lib/fpurge.c (fpurge): Likewise.
35011         * lib/freading.c (freading): Likewise.
35012         * lib/fseeko.c (rpl_fseeko): Likewise.
35013         * lib/fseterr.c (fseterr): Likewise.
35014         * lib/fwriting.c (fwriting): Likewise.
35015         * tests/test-fflush.c (main): Avoid a failure on uClibc.
35016
35017 2007-06-08  Bruno Haible  <bruno@clisp.org>
35018
35019         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
35020         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
35021         * modules/gettext (Files): Add m4/intlmacosx.m4.
35022
35023 2007-06-07  Bruno Haible  <bruno@clisp.org>
35024
35025         * modules/localename-tests: New file.
35026         * tests/test-localename.c: New file.
35027
35028         New module 'localename'.
35029         * lib/localename.h: New file.
35030         * lib/localename.c: New file, from GNU gettext.
35031         * m4/localename.m4: New file.
35032         * modules/localename: New file.
35033
35034 2007-06-07  Bruno Haible  <bruno@clisp.org>
35035
35036         Work around the lack of <wchar.h> on some builds of uClibc.
35037         * doc/headers/wchar.texi: Update.
35038         * lib/wchar_.h: Include <wchar.h> only if it exists.
35039         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
35040         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
35041         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
35042         doesn't exist.
35043         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
35044         * modules/mbfile (Depends-on): Add wchar.
35045         * modules/mbiter (Depends-on): Likewise.
35046         * modules/mbuiter (Depends-on): Likewise.
35047         Reported by Simon Josefsson.
35048
35049 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
35050
35051         Work around problem reported by Steven M. Schweda in
35052         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
35053         Tru64 5.1B with the Compaq compiler environment installed declares
35054         an 'isblank' function but does not define it in the C library.
35055         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
35056         * lib/regex_internal.h (isblank): Likewise.
35057         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
35058         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
35059
35060 2007-06-05  Bruno Haible  <bruno@clisp.org>
35061
35062         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
35063         ia64.
35064         * modules/printf-safe: New file.
35065         * modules/fprintf-posix (Depends-on): Add printf-safe.
35066         * modules/printf-posix (Depends-on): Likewise.
35067         * modules/snprintf-posix (Depends-on): Likewise.
35068         * modules/sprintf-posix (Depends-on): Likewise.
35069         * modules/vasnprintf-posix (Depends-on): Likewise.
35070         * modules/vasprintf-posix (Depends-on): Likewise.
35071         * modules/vfprintf-posix (Depends-on): Likewise.
35072         * modules/vprintf-posix (Depends-on): Likewise.
35073         * modules/vsnprintf-posix (Depends-on): Likewise.
35074         * modules/vsprintf-posix (Depends-on): Likewise.
35075         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
35076         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
35077         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
35078         "no" on i386, x86_64, ia64.
35079         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
35080         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
35081         on i386, x86_64, ia64.
35082         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
35083         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
35084         on i386, x86_64, ia64.
35085         * tests/test-vasnprintf-posix.c: Include float.h.
35086         (LDBL80_WORDS): New macro.
35087         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
35088         on i386, x86_64, ia64.
35089         * tests/test-vasprintf-posix.c: Include float.h.
35090         (LDBL80_WORDS): New macro.
35091         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
35092         on i386, x86_64, ia64.
35093         * tests/test-snprintf-posix.c: Include float.h.
35094         * tests/test-sprintf-posix.c: Likewise.
35095         * tests/test-vsnprintf-posix.c: Likewise.
35096         * tests/test-vsprintf-posix.c: Likewise.
35097
35098 2007-06-05  Bruno Haible  <bruno@clisp.org>
35099
35100         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
35101         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
35102         non-IEEE numbers on i386, x86_64, ia64.
35103         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
35104         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
35105         * tests/test-isnanl.h: Include float.h.
35106         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
35107
35108 2007-06-05  Bruno Haible  <bruno@clisp.org>
35109
35110         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
35111         also the %a / %A. Handle the %a / %A code before this extra handling.
35112
35113 2007-06-05  Bruno Haible  <bruno@clisp.org>
35114
35115         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
35116         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
35117
35118 2007-06-05  Bruno Haible  <bruno@clisp.org>
35119
35120         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
35121         typo in variable name.
35122
35123 2007-06-05  Eric Blake  <ebb9@byu.net>
35124
35125         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
35126         Reported by Simon Josefsson.
35127
35128 2007-06-04  Bruno Haible  <bruno@clisp.org>
35129
35130         Avoid test failures on some PowerPC platforms.
35131         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
35132         Define differently for PowerPC.
35133         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
35134         Reported by Gary V. Vaughan <gary@gnu.org>.
35135
35136 2007-06-02  Bruno Haible  <bruno@clisp.org>
35137
35138         Fix test-stdint failure on FreeBSD/ia64.
35139         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
35140         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
35141         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
35142         * doc/headers/stdint.texi: Update.
35143
35144 2007-06-01  Bruno Haible  <bruno@clisp.org>
35145
35146         * tests/test-binary-io.c (main): Pass a third argument to open().
35147         Reported by Gary V. Vaughan <gary@gnu.org>.
35148
35149 2007-06-01  Bruno Haible  <bruno@clisp.org>
35150
35151         * doc/functions/frexpl.texi: Update for mingw.
35152
35153 2007-06-01  Bruno Haible  <bruno@clisp.org>
35154
35155         * tests/test-lseek.c (main): Disable test of errno for invalid third
35156         argument.
35157         * doc/functions/lseek.texi: Update.
35158         Reported by Gary V. Vaughan <gary@gnu.org>.
35159
35160 2007-05-28  Bruno Haible  <bruno@clisp.org>
35161
35162         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
35163
35164 2007-05-31  Eric Blake  <ebb9@byu.net>
35165
35166         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
35167         cross compiling.
35168
35169 2007-05-30  Eric Blake  <ebb9@byu.net>
35170         and Bruno Haible  <bruno@clisp.org>
35171
35172         Work around mingw test failures exposed by m4-1.4.9b.
35173         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
35174         * tests/test-unistd.c: Disable uid_t and git_t tests for the
35175         moment.
35176
35177 2007-05-30  Bruno Haible  <bruno@clisp.org>
35178
35179         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
35180         assuming that they are closed. Needed on HP-UX 11.
35181
35182 2007-05-29  Bruno Haible  <bruno@clisp.org>
35183
35184         Fix a problem with #include_next.
35185         * lib/dirent_.h: Split the double-inclusion guard.
35186         * lib/fcntl_.h: Likewise.
35187         * lib/float_.h: Likewise.
35188         * lib/iconv_.h: Likewise.
35189         * lib/inttypes_.h: Likewise.
35190         * lib/locale_.h: Likewise.
35191         * lib/math_.h: Likewise.
35192         * lib/netinet_in_.h: Likewise.
35193         * lib/search_.h: Likewise.
35194         * lib/signal_.h: Likewise.
35195         * lib/stdint_.h: Likewise.
35196         * lib/stdio_.h: Likewise.
35197         * lib/stdlib_.h: Likewise.
35198         * lib/string_.h: Likewise.
35199         * lib/sys_select_.h: Likewise.
35200         * lib/sys_socket_.h: Likewise.
35201         * lib/sys_stat_.h: Likewise.
35202         * lib/sys_time_.h: Likewise.
35203         * lib/sysexits_.h: Likewise.
35204         * lib/time_.h: Likewise.
35205         * lib/unistd_.h: Likewise.
35206         * lib/wchar_.h: Likewise.
35207         * lib/wctype_.h: Likewise.
35208
35209 2007-05-29  Bruno Haible  <bruno@clisp.org>
35210
35211         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
35212         for the moment.
35213
35214 2007-05-29  Bruno Haible  <bruno@clisp.org>
35215
35216         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
35217         invocation.
35218         Reported by Eric Blake.
35219
35220 2007-05-29  Bruno Haible  <bruno@clisp.org>
35221
35222         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
35223         compiling case.
35224
35225 2007-05-29  Eric Blake  <ebb9@byu.net>
35226             Bruno Haible  <bruno@clisp.org>
35227
35228         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
35229         cross compiles.
35230
35231 2007-05-28  Eric Blake  <ebb9@byu.net>
35232
35233         * modules/closein-tests (test_closein_LDADD): Support test on
35234         cygwin with libtool.
35235
35236 2007-05-28  Bruno Haible  <bruno@clisp.org>
35237
35238         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
35239         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
35240         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
35241         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
35242         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
35243         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
35244         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
35245         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
35246         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
35247
35248 2007-05-28  Eric Blake  <ebb9@byu.net>
35249
35250         Unconditionally include <config.h> in unit tests.
35251         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
35252         * tests/test-allocsa.c, tests/test-arcfour.c,
35253         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
35254         tests/test-array_list.c, tests/test-array_oset.c,
35255         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
35256         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
35257         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
35258         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
35259         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
35260         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
35261         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
35262         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
35263         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
35264         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
35265         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
35266         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
35267         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
35268         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
35269         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
35270         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
35271         test-md5.c, test-memmem.c, test-printf-posix.c,
35272         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
35273         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
35274         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
35275         test-strcasestr.c, test-striconv.c, test-striconveh.c,
35276         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
35277         test-vasnprintf-posix2.c, test-vasnprintf.c,
35278         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
35279         test-vfprintf-posix.c, test-vprintf-posix.c,
35280         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
35281         test-xvasprintf.c: Likewise.
35282
35283 2007-05-28  Bruno Haible  <bruno@clisp.org>
35284
35285         * gnulib-tool (func_import): Remember the --with-tests command-line
35286         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
35287         Reported by Eric Blake.
35288
35289 2007-05-28  Bruno Haible  <bruno@clisp.org>
35290
35291         * modules/ftell-tests: New file.
35292         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
35293         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
35294
35295         * lib/ftell.c: New file.
35296         * modules/ftell: New file.
35297         * m4/ftell.m4: New file.
35298         * doc/functions/ftell.texi: Update.
35299         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
35300         REPLACE_FTELL.
35301         * lib/stdio_.h (rpl_ftell): New declaration.
35302         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
35303         REPLACE_FTELL.
35304
35305 2007-05-28  Eric Blake  <ebb9@byu.net>
35306
35307         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
35308
35309 2007-05-28  Bruno Haible  <bruno@clisp.org>
35310
35311         * modules/fseek-tests: New file.
35312         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
35313         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
35314
35315         * lib/fseek.c: New file.
35316         * modules/fseek: New file.
35317         * m4/fseek.m4: New file.
35318         * doc/functions/fseek.texi: Update.
35319         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
35320         REPLACE_FSEEK.
35321         * lib/stdio_.h (rpl_fseek): New declaration.
35322         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
35323         REPLACE_FSEEK.
35324
35325 2007-05-28  Bruno Haible  <bruno@clisp.org>
35326
35327         * lib/stdio_.h (fflush): More comments.
35328
35329 2007-05-28  Bruno Haible  <bruno@clisp.org>
35330
35331         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
35332         runtime test.
35333
35334 2007-05-28  Eric Blake  <ebb9@byu.net>
35335
35336         Improve lseek module.
35337         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
35338         * lib/unistd_.h (lseek): Scale back link warning message.
35339         * tests/test-lseek.c: Beef up test.
35340         * tests/test-lseek.sh: Exercise more facets of lseek.
35341         Reported by Bruno Haible.
35342
35343 2007-05-28  Bruno Haible  <bruno@clisp.org>
35344
35345         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
35346         to define.
35347
35348 2007-05-27  Bruno Haible  <bruno@clisp.org>
35349
35350         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
35351
35352 2007-05-27  Bruno Haible  <bruno@clisp.org>
35353
35354         * modules/openmp: New file.
35355         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
35356         Noah Misch.
35357
35358 2007-05-26  Bruno Haible  <bruno@clisp.org>
35359
35360         * modules/chdir-long (Depends-on): Add fchdir.
35361         * modules/chdir-safer (Depends-on): Likewise.
35362         * modules/fts (Depends-on): Likewise.
35363         * modules/fts-lgpl (Depends-on): Likewise.
35364         * modules/openat (Depends-on): Likewise.
35365         * modules/savewd (Depends-on): Likewise.
35366
35367 2007-05-24  Eric Blake  <ebb9@byu.net>
35368
35369         Fix lseek on mingw.
35370         * modules/lseek: New module.
35371         * m4/lseek.m4: New file.
35372         * lib/lseek.c: New file.
35373         * modules/lseek-tests: New file.
35374         * tests/test-lseek.c: New file.
35375         * tests/test-lseek.sh: New file.
35376         * MODULES.html.sh: Document lseek module.
35377         * modules/fflush (Depends-on): Add lseek, fseeko.
35378         * modules/fseeko (Depends-on): Likewise.
35379         * modules/ftello (Depends-on): Likewise.
35380         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
35381         broken.
35382         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
35383         broken.
35384         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
35385         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
35386         * lib/ftello.c (rpl_ftello): Likewise.
35387         * tests/test-fseeko.c (main): Test this.
35388         * tests/test-fseeko.sh: Likewise.
35389         * tests/test-ftello.c (main): Likewise.
35390         * tests/test-ftello.sh: Likewise.
35391         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
35392         implies replacing fseek.
35393         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
35394         HAVE_FTELLO.
35395         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
35396         * modules/unistd (Makefile.am): Likewise.
35397         * lib/unistd_.h (lseek): Declare a replacement.
35398         * doc/functions/lseek.texi (lseek): Document this fix.
35399         * doc/functions/fseek.texi (fseek): Likewise.
35400         * doc/functions/ftell.texi (ftell): Likewise.
35401
35402 2007-05-24  Bruno Haible  <bruno@clisp.org>
35403
35404         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
35405         in the printed representation of a NaN.
35406         * tests/test-vasprintf-posix.c (test_function): Likewise.
35407         * tests/test-snprintf-posix.h (test_function): Likewise.
35408         * tests/test-sprintf-posix.h (test_function): Likewise.
35409         Reported by Eric Blake.
35410
35411 2007-05-23  Eric Blake  <ebb9@byu.net>
35412
35413         Fix fseeko/ftello on cygwin 1.5.24.
35414         * doc/functions/fseeko.texi (fseeko): Document the fix.
35415         * doc/functions/ftello.texi (ftello): Document the fix.
35416         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
35417         * doc/functions/stdout.text (stdout): New file.
35418         * doc/functions/stderr.text (stderr): New file.
35419         * doc/gnulib.texi (Function Substitutes): Use new files.
35420         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
35421         prior to 1.7.0.
35422         * tests/test-ftello.c (main): Likewise for ftello.
35423         * tests/test-fseeko.sh: New file.
35424         * tests/test-ftello.sh: New file.
35425         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
35426         with seekable stdin.
35427         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
35428         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
35429         (gl_REPLACE_FSEEKO): New macro.
35430         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
35431         * modules/fseeko (Files): Distribute fseeko.c.
35432         * modules/ftello (Files): Distribute ftello.c.
35433         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
35434         mode.
35435         * lib/ftello.c (rpl_ftello): New file.
35436         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
35437         fseeko, ftello.
35438         (gl_STDIN_LARGE_OFFSET): New macro.
35439         * modules/stdio (Makefile.am): Perform the replacement.
35440         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
35441
35442 2007-05-23  Bruno Haible  <bruno@clisp.org>
35443
35444         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
35445         GNULIB_POSIXCHECK is defined.
35446
35447 2007-05-21  Bruno Haible  <bruno@clisp.org>
35448
35449         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
35450         Check also the output for NaN arguments. When cross-compiling, guess
35451         no on IRIX.
35452         * lib/vasnprintf.c: Update comments.
35453         * tests/test-vasnprintf-posix.c (strisnan): New function.
35454         (test_function): Use it.
35455         * tests/test-vasprintf-posix.c (strisnan): New function.
35456         (test_function): Use it.
35457         * tests/test-snprintf-posix.h (strisnan): New function.
35458         (test_function): Use it.
35459         * tests/test-sprintf-posix.h (strisnan): New function.
35460         (test_function): Use it.
35461         Reported by Eric Blake.
35462
35463 2007-05-20  Bruno Haible  <bruno@clisp.org>
35464
35465         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
35466         numbers that fails on BeOS.
35467         * doc/functions/frexpl.texi: Update.
35468
35469 2007-05-20  Jim Meyering  <jim@meyering.net>
35470
35471         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
35472         forced upon us by glibc-2.6.
35473
35474 2007-05-20  Bruno Haible  <bruno@clisp.org>
35475
35476         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
35477         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
35478         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
35479         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
35480         NEED_PRINTF_INFINITE.
35481         (is_infinitel): New function.
35482         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
35483         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
35484         gl_PREREQ_VASNPRINTF_INFINITE.
35485         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
35486         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35487         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
35488         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
35489         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
35490         gl_PREREQ_VASNPRINTF_INFINITE.
35491         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35492         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35493         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35494         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35495         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35496         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35497         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35498         * doc/functions/fprintf.texi: Update.
35499         * doc/functions/printf.texi: Update.
35500         * doc/functions/snprintf.texi: Update.
35501         * doc/functions/sprintf.texi: Update.
35502         * doc/functions/vfprintf.texi: Update.
35503         * doc/functions/vprintf.texi: Update.
35504         * doc/functions/vsnprintf.texi: Update.
35505         * doc/functions/vsprintf.texi: Update.
35506
35507 2007-05-20  Bruno Haible  <bruno@clisp.org>
35508
35509         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
35510         was not found in libc.
35511         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
35512
35513 2007-05-20  Bruno Haible  <bruno@clisp.org>
35514
35515         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
35516         printed as "-nan" instead of "nan".
35517         * tests/test-vasprintf-posix.c (test_function): Likewise.
35518         * tests/test-snprintf-posix.h (test_function): Likewise.
35519         * tests/test-sprintf-posix.h (test_function): Likewise.
35520         Needed for HP-UX 11.
35521
35522 2007-05-20  Jim Meyering  <jim@meyering.net>
35523
35524         Fix buggy test for the fchownat-deref bug.
35525         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
35526         symlink required for the run-test.  Without it, this test would
35527         always declare that fchownat doesn't work, and client code would
35528         unnecessarily use the replacement function with fixed libc.
35529         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
35530         Reported by Greg Schafer.
35531
35532 2007-05-19  Bruno Haible  <bruno@clisp.org>
35533
35534         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
35535         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
35536         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
35537         Needed for IRIX 6.5 and Solaris 2.5.1.
35538
35539 2007-05-19  Bruno Haible  <bruno@clisp.org>
35540
35541         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
35542         (test_function): Skip tests involving -0.0 on platforms where
35543         -0.0 = 0.0.
35544         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
35545         (test_function): Skip tests involving -0.0 on platforms where
35546         -0.0 = 0.0.
35547         * tests/test-snprintf-posix.h (have_minus_zero): New function.
35548         (test_function): Skip tests involving -0.0 on platforms where
35549         -0.0 = 0.0.
35550         * tests/test-sprintf-posix.h (have_minus_zero): New function.
35551         (test_function): Skip tests involving -0.0 on platforms where
35552         -0.0 = 0.0.
35553         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
35554         tests.
35555         * tests/test-printf-posix.h (test_function): Likewise.
35556         * tests/test-printf-posix.output: Remove all -0.0 related results.
35557         Needed for IRIX 6.5.
35558
35559 2007-05-19  Bruno Haible  <bruno@clisp.org>
35560
35561         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
35562         printed as "nan0x7fffffff" instead of "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         * tests/test-fprintf-posix.h (NaN): Remove macro.
35567         (test_function): Remove all NaN related tests.
35568         * tests/test-printf-posix.h (NaN): Remove macro.
35569         (test_function): Remove all NaN related tests.
35570         * tests/test-printf-posix.output: Remove all NaN related results.
35571         Needed for IRIX 6.5.
35572
35573 2007-05-19  Bruno Haible  <bruno@clisp.org>
35574
35575         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
35576         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
35577
35578 2007-05-19  Bruno Haible  <bruno@clisp.org>
35579
35580         * lib/float_.h: New file.
35581         * m4/float_h.m4: New file.
35582         * modules/float: New file.
35583         * modules/isnanl (Dependencies): Add float.
35584         * modules/isnanl-nolibm (Dependencies): Likewise.
35585         * modules/mathl (Dependencies): Likewise.
35586         * modules/printf-frexpl (Dependencies): Likewise.
35587         * modules/signbit (Dependencies): Likewise.
35588         * modules/vasnprintf (Dependencies): Likewise.
35589         * doc/headers/float.texi: Update.
35590
35591 2007-05-19  Jim Meyering  <jim@meyering.net>
35592
35593         * lib/utimens.c (gl_futimens): Rename from futimens,
35594         now that glibc-2.6 declares futimens.
35595         * lib/utimens.h: Likewise.
35596
35597 2007-05-19  Bruno Haible  <bruno@clisp.org>
35598
35599         Avoid test failures on mingw.
35600         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
35601         * tests/test-printf-posix.sh: Likewise.
35602         * tests/test-vfprintf-posix.sh: Likewise.
35603         * tests/test-vprintf-posix.sh: Likewise.
35604
35605 2007-05-19  Bruno Haible  <bruno@clisp.org>
35606
35607         Fix *printf result for NaN, Inf, -0.0 on mingw.
35608         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
35609         * lib/vasnprintf.c: Include math.h and isnan.h.
35610         (is_infinite_or_zero): New function.
35611         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
35612         values in the %f, %F, %e, %E, %g, %G directives.
35613         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
35614         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35615         gl_PRINTF_INFINITE and test its result. Invoke
35616         gl_PREREQ_VASNPRINTF_INFINITE.
35617         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35618         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35619         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35620         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35621         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35622         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35623         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35624         * doc/functions/fprintf.texi: Update.
35625         * doc/functions/printf.texi: Update.
35626         * doc/functions/snprintf.texi: Update.
35627         * doc/functions/sprintf.texi: Update.
35628         * doc/functions/vfprintf.texi: Update.
35629         * doc/functions/vprintf.texi: Update.
35630         * doc/functions/vsnprintf.texi: Update.
35631         * doc/functions/vsprintf.texi: Update.
35632
35633 2007-05-19  Bruno Haible  <bruno@clisp.org>
35634
35635         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
35636         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
35637         Instead of multiplying with 10^k, set extra_zeroes to k.
35638         (scale10_round_long_double): Remove function.
35639
35640 2007-05-18  Bruno Haible  <bruno@clisp.org>
35641
35642         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
35643         introduced on 2007-05-06.
35644
35645 2007-05-18  Bruno Haible  <bruno@clisp.org>
35646
35647         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
35648         %g directives.
35649         * tests/test-vasprintf-posix.c (test_function): Likewise.
35650         * tests/test-snprintf-posix.h (test_function): Likewise.
35651         * tests/test-sprintf-posix.h (test_function): Likewise.
35652
35653 2007-05-18  Bruno Haible  <bruno@clisp.org>
35654
35655         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
35656         (strmatch): New function.
35657         (test_function): Test the %f directive on numbers of various exponents.
35658         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
35659         (strmatch): New function.
35660         (test_function): Test the %f directive on numbers of various exponents.
35661         * tests/test-snprintf-posix.h (strmatch): New function.
35662         (test_function): Test the %f directive on numbers of various exponents.
35663         * tests/test-sprintf-posix.h (strmatch): New function.
35664         (test_function): Test the %f directive on numbers of various exponents.
35665         * tests/test-snprintf-posix.c (SIZEOF): New macro.
35666         * tests/test-sprintf-posix.c (SIZEOF): New macro.
35667         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
35668         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
35669
35670 2007-05-18  Bruno Haible  <bruno@clisp.org>
35671
35672         Add support for 'long double' number output.
35673         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
35674         * lib/vasnprintf.c: Include math.h and float+.h.
35675         (mp_limb_t): New type.
35676         (GMP_LIMB_BITS): New macro.
35677         (mp_twolimb_t): New type.
35678         (GMP_TWOLIMB_BITS): New macro.
35679         (mpn_t): New type.
35680         (multiply, divide, convert_to_decimal, decode_long_double,
35681         scale10_round_long_double, scale10_round_decimal_long_double,
35682         floorlog10l): New functions.
35683         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
35684         for the %f, %F, %e, %E, %g, %G directives.
35685         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
35686         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35687         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
35688         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
35689         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35690         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35691         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35692         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35693         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35694         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35695         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35696         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
35697         * modules/snprintf-posix (Depends-on): Likewise.
35698         * modules/sprintf-posix (Depends-on): Likewise.
35699         * modules/vasnprintf-posix (Depends-on): Likewise.
35700         * modules/vasprintf-posix (Depends-on): Likewise.
35701         * modules/vfprintf-posix (Depends-on): Likewise.
35702         * modules/vsnprintf-posix (Depends-on): Likewise.
35703         * modules/vsprintf-posix (Depends-on): Likewise.
35704         * modules/vasnprintf (Files): Add lib/float+.h.
35705         * doc/functions/fprintf.texi: Update.
35706         * doc/functions/printf.texi: Update.
35707         * doc/functions/snprintf.texi: Update.
35708         * doc/functions/sprintf.texi: Update.
35709         * doc/functions/vfprintf.texi: Update.
35710         * doc/functions/vprintf.texi: Update.
35711         * doc/functions/vsnprintf.texi: Update.
35712         * doc/functions/vsprintf.texi: Update.
35713
35714 2007-05-18  Bruno Haible  <bruno@clisp.org>
35715
35716         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
35717
35718 2007-05-18  Bruno Haible  <bruno@clisp.org>
35719
35720         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
35721         for printing 64-bit integers. Needed for mingw.
35722
35723 2007-05-18  Bruno Haible  <bruno@clisp.org>
35724
35725         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
35726         gl_FUNC_FREXPL_WORKS.
35727         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
35728
35729 2007-05-18  Bruno Haible  <bruno@clisp.org>
35730
35731         * modules/frexpl-nolibm-tests: New file.
35732
35733         * modules/frexpl-nolibm: New file.
35734         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
35735
35736 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
35737
35738         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
35739         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
35740         GCC 4.2, which otherwise issues a lot of warnings.
35741         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
35742         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
35743         Likewise.
35744         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
35745         * modules/iconv_open (iconv.h): Likewise.
35746         * modules/locale (locale.h): Likewise.
35747         * modules/netinet_in (netinet/in.h): Likewise.
35748         * modules/sys_select (sys_select.h): Likewise.
35749         * modules/sys_socket (sys/socket.h): Likewise.
35750         * modules/sys_stat (sys/stat.h): Likewise.
35751         * modules/sysexits (sysexits.h): Likewise.
35752         * modules/unistd (unistd.h): Likewise.
35753
35754 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35755
35756         * modules/closein-tests (Makefile.am): Distribute
35757         `test-closein.sh'.
35758
35759 2007-05-17  Bruno Haible  <bruno@clisp.org>
35760
35761         * tests/test-printf-posix.output: Renamed from
35762         tests/test-fprintf-posix.out.
35763         * modules/fprintf-posix-tests: Update.
35764         * modules/printf-posix-tests: Update.
35765         * modules/vfprintf-posix-tests: Update.
35766         * modules/vprintf-posix-tests: Update.
35767         * tests/test-fprintf-posix.sh: Update.
35768         * tests/test-printf-posix.sh: Update.
35769         * tests/test-vfprintf-posix.sh: Update.
35770         * tests/test-vprintf-posix.sh: Update.
35771         Reported by Ralf Wildenhues.
35772
35773 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
35774
35775         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
35776         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
35777         GCC 4.2, which otherwise issues a lot of warnings.
35778         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
35779         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
35780         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
35781         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
35782         it should no longer be needed.
35783         * lib/string_.h: Likewise.
35784         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
35785         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
35786         * modules/inttypes (inttypes.h): Likewise.
35787         * modules/math (math.h): Likewise.
35788         * modules/search (search.h): Likewise.
35789         * modules/signal (signal.h): Likewise.
35790         * modules/stdint (stdint.h): Likewise.
35791         * modules/stdio (stdio.h): Likewise.
35792         * modules/stdlib (stdlib.h): Likewise.
35793         * modules/string (string.h): Likewise.
35794         * modules/sys_time (sys/time.h): Likewise.
35795         * modules/time (time.h): Likewise.
35796         * modules/wchar (wchar.h): Likewise.
35797         * modules/wctype (wtype.h): Likewise.
35798
35799 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
35800
35801         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
35802
35803 2007-05-13  Bruno Haible  <bruno@clisp.org>
35804
35805         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
35806         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
35807         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
35808         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
35809         (gl_PREREQ_STRTOK_R): Don't require it here.
35810
35811 2007-05-13  Bruno Haible  <bruno@clisp.org>
35812
35813         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
35814         when used in C++ mode.
35815
35816 2007-05-12  Bruno Haible  <bruno@clisp.org>
35817
35818         * lib/linebuffer.h: Tweak doc.
35819         * lib/linebuffer.c: Likewise.
35820
35821 2007-05-12  James Youngman  <jay@gnu.org>
35822
35823         * lib/linebuffer.c (readlinebuffer_delim): New function,
35824         like readlinebuffer, but use a caller-specified delimiter.
35825         (readlinebuffer): Just call readlinebuffer_delim with '\n'
35826         as the delimiter.
35827         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
35828
35829 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
35830
35831         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
35832         * modules/openat (Files): Remove openat-die.c.
35833         (Depends-on): Add openat-die.
35834         * modules/openat-die: New module.
35835
35836 2007-05-06  Bruno Haible  <bruno@clisp.org>
35837
35838         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
35839         Update with info about Cygwin.
35840         * doc/functions/fprintf.texi: Update.
35841         * doc/functions/printf.texi: Update.
35842         * doc/functions/snprintf.texi: Update.
35843         * doc/functions/sprintf.texi: Update.
35844         * doc/functions/vfprintf.texi: Update.
35845         * doc/functions/vprintf.texi: Update.
35846         * doc/functions/vsnprintf.texi: Update.
35847         * doc/functions/vsprintf.texi: Update.
35848         Reported by Eric Blake.
35849
35850 2007-05-06  Bruno Haible  <bruno@clisp.org>
35851
35852         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
35853         padding ourselves for the floating-point directives.
35854         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
35855         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
35856         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35857         gl_PRINTF_FLAG_ZERO and test its result. Invoke
35858         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
35859         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35860         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
35861         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35862         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35863         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35864         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35865         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35866         * tests/test-snprintf-posix.h (test_function): Also check the width
35867         and some flags in the %f directive.
35868         * tests/test-sprintf-posix.h (test_function): Likewise.
35869         * tests/test-vasnprintf-posix.c (test_function): Likewise.
35870         * tests/test-vasprintf-posix.c (test_function): Likewise.
35871         * doc/functions/fprintf.texi: Update.
35872         * doc/functions/printf.texi: Update.
35873         * doc/functions/snprintf.texi: Update.
35874         * doc/functions/sprintf.texi: Update.
35875         * doc/functions/vfprintf.texi: Update.
35876         * doc/functions/vprintf.texi: Update.
35877         * doc/functions/vsnprintf.texi: Update.
35878         * doc/functions/vsprintf.texi: Update.
35879
35880 2007-05-06  Bruno Haible  <bruno@clisp.org>
35881
35882         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
35883         pass the ' flag character to sprintf or snprintf.
35884         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
35885         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
35886         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
35887         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
35888         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
35889         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35890         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
35891         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35892         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35893         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35894         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35895         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35896         * tests/test-snprintf-posix.h (test_function): Also check the grouping
35897         flag.
35898         * tests/test-sprintf-posix.h (test_function): Likewise.
35899         * tests/test-vasnprintf-posix.c (test_function): Likewise.
35900         * tests/test-vasprintf-posix.c (test_function): Likewise.
35901         * doc/functions/fprintf.texi: Update.
35902         * doc/functions/printf.texi: Update.
35903         * doc/functions/snprintf.texi: Update.
35904         * doc/functions/sprintf.texi: Update.
35905         * doc/functions/vfprintf.texi: Update.
35906         * doc/functions/vprintf.texi: Update.
35907         * doc/functions/vsnprintf.texi: Update.
35908         * doc/functions/vsprintf.texi: Update.
35909
35910 2007-05-01  Bruno Haible  <bruno@clisp.org>
35911
35912         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
35913
35914 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
35915
35916         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
35917         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
35918
35919 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
35920
35921         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
35922         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
35923         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
35924
35925 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
35926
35927         * lib/argp-help.c (struct hol_entry): New member `ord'.
35928         (HOL_ENTRY_PTRCMP): Use ord for comparison
35929         (hol_sort): Initialize ord.
35930
35931 2007-05-01  Bruno Haible  <bruno@clisp.org>
35932
35933         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
35934         Reported by Eric Blake.
35935         * doc/gnulib.texi (Function Substitutes): Update.
35936
35937 2007-05-01  Bruno Haible  <bruno@clisp.org>
35938
35939         * doc/functions.texi: Remove file, now redundant through
35940         doc/functions/*.texi.
35941
35942 2007-05-01  Bruno Haible  <bruno@clisp.org>
35943
35944         * modules/argp (Depends-on): Add sleep.
35945
35946 2007-05-01  Bruno Haible  <bruno@clisp.org>
35947
35948         * modules/sleep-tests: New file.
35949         * tests/test-sleep.c: New file.
35950
35951         * modules/sleep: New file.
35952         * lib/sleep.c: New file.
35953         * m4/sleep.m4: New file.
35954         * lib/unistd_.h (sleep): New declaration.
35955         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
35956         HAVE_SLEEP.
35957         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
35958         * doc/functions/sleep.texi: Document the sleep module.
35959
35960 2007-05-01  Bruno Haible  <bruno@clisp.org>
35961
35962         * lib/sigprocmask.h: Remove file.
35963         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
35964         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
35965         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
35966         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
35967         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
35968         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
35969         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
35970         HAVE_SIGSET_T as a shell variable.
35971         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
35972         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
35973         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
35974         (Depends-on): Add signal. Remove verify.
35975         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
35976         (Include): Mention <signal.h> instead of sigprocmask.h.
35977         * NEWS: Mention the change.
35978         * lib/fatal-signal.c: Don't include sigprocmask.h.
35979
35980 2007-05-01  Bruno Haible  <bruno@clisp.org>
35981
35982         * modules/signal: New file.
35983         * lib/signal_.h: New file.
35984         * m4/signal_h.m4: New file.
35985
35986 2007-05-01  Bruno Haible  <bruno@clisp.org>
35987
35988         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
35989         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
35990         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
35991         HAVE_WCTYPE_CTMP_BUG into wctype.h.
35992
35993 2007-05-01  Bruno Haible  <bruno@clisp.org>
35994
35995         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
35996         configure time.
35997         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
35998         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
35999         * modules/sys_stat (Makefile.am): Substitute their values into
36000         sys/stat.h.
36001
36002 2007-05-01  Bruno Haible  <bruno@clisp.org>
36003
36004         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
36005         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
36006         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
36007
36008 2007-05-01  Bruno Haible  <bruno@clisp.org>
36009
36010         * doc/header/assert.texi: Undo last change: don't mention the gnulib
36011         'assert' module here.
36012
36013 2007-05-01  Bruno Haible  <bruno@clisp.org>
36014
36015         * doc/functions/*.texi: New files.
36016         * doc/functions/google-ranking.txt: New file.
36017         * doc/gnulib.texi (Function Substitutes): New chapter.
36018         (ctime, inet_ntoa): Remove sections.
36019         * doc/ctime.texi: Remove file.
36020         * doc/inet_ntoa.texi: Remove file.
36021         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
36022         dependencies.
36023         (%.info): New rule, specifying a --reference-limit.
36024
36025 2007-05-01  Bruno Haible  <bruno@clisp.org>
36026
36027         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
36028
36029 2007-05-01  Bruno Haible  <bruno@clisp.org>
36030
36031         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
36032         the portability of 'mkdir' to mingw systems.
36033
36034 2007-05-01  Bruno Haible  <bruno@clisp.org>
36035
36036         * doc/headers/google-ranking.txt: New file.
36037
36038 2007-04-30  Eric Blake  <ebb9@byu.net>
36039
36040         Prefer fseeko to fseek.
36041         * modules/getpass (Depends-on): Add fseeko.
36042         * lib/getpass.c (getpass): Use fseeko, not fseek.
36043
36044 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
36045
36046         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
36047         assumes the sorting is stable, while most qsort implementations
36048         are not.  Use argument addresses to ensure they never compare as
36049         equal.
36050
36051         * tests/test-argp-2.sh (usage-indent test): Fix output
36052         (func_compare): Restore diff options
36053         * tests/test-argp.c: Restore #include "progname.h"
36054
36055 2007-04-29  Bruno Haible  <bruno@clisp.org>
36056
36057         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
36058         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
36059         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
36060         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
36061         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
36062         (configure.ac): Define CHECK_SNPRINTF_POSIX.
36063         (TESTS, check_PROGRAMS): Add test-snprintf.
36064         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
36065         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
36066         (TESTS, check_PROGRAMS): Add test-vsnprintf.
36067         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
36068         assertions that fail on HP-UX, OSF/1, or IRIX.
36069         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
36070
36071 2007-04-29  Bruno Haible  <bruno@clisp.org>
36072
36073         * MODULES.html.sh (posix_functions): Remove 'contents'.
36074
36075 2007-04-29  Karl Berry  <karl@gnu.org>
36076
36077         * config/srclist.txt (gendocs_template_min): new entry.
36078
36079 2007-04-29  Bruno Haible  <bruno@clisp.org>
36080
36081         Work around fpurge bug on BSD systems.
36082         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
36083         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
36084         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
36085         fpurge to rpl_fpurge if the system already has this function.
36086         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
36087         the case where the system already has this function. Correct invariants
36088         on BSD systems.
36089         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
36090         BSD systems.
36091
36092 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
36093
36094         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
36095         proposed by Sven Verdoolaege.
36096
36097         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
36098         options.
36099         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
36100         (usage and help tests): Update
36101
36102 2007-04-29  Bruno Haible  <bruno@clisp.org>
36103
36104         * tests/test-fflush.c (main): Use a file of size 17, not 10.
36105         Print more information in case of failure. Disable a test on BeOS.
36106
36107 2007-04-29  Bruno Haible  <bruno@clisp.org>
36108
36109         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
36110         This helps debugging on systems on which no gdb is available.
36111
36112 2007-04-29  Bruno Haible  <bruno@clisp.org>
36113
36114         * lib/freading.h: Improve comments.
36115         * lib/fwriting.h: Likewise.
36116         * tests/test-freading.c (main): Don't check freading immediately after
36117         repositioning. Needed for glibc.
36118
36119 2007-04-29  Bruno Haible  <bruno@clisp.org>
36120
36121         * lib/freading.c (freading): Trivial simplification.
36122
36123 2007-04-28  Bruno Haible  <bruno@clisp.org>
36124
36125         * tests/test-fwriting.c (main): Also test the interaction between
36126         fflush and fwriting.
36127         * modules/fwriting-tests (Depends-on): Add fflush.
36128
36129         * tests/test-freading.c (main): Also test the interaction between
36130         fflush and freading.
36131         * modules/freading-tests (Depends-on): Add fflush.
36132
36133 2007-04-28  Bruno Haible  <bruno@clisp.org>
36134
36135         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
36136         fseeko and ftello.
36137         Suggested by Eric Blake.
36138
36139 2007-04-28  Jim Meyering  <jim@meyering.net>
36140
36141         Avoid false-negative in gl_STDINT_H's C99 conformance test.
36142         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
36143         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
36144
36145 2007-04-27  Eric Blake  <ebb9@byu.net>
36146
36147         * doc/headers/assert.texi (assert.h): Document assert module use.
36148
36149 2007-04-27  Bruno Haible  <bruno@clisp.org>
36150
36151         * doc/headers/*.texi: New files.
36152         * doc/gnulib.texi (Header File Substitutes): New chapter.
36153         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
36154         dependencies.
36155         (standards.info ,standards.html, standards.dvi): Update dependencies.
36156         (mostlyclean, clean): New targets.
36157
36158 2007-04-27  Bruno Haible  <bruno@clisp.org>
36159
36160         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
36161         * modules/sysexits (Files, Makefile.am): Update.
36162
36163         * lib/sys_socket_.h: Renamed from lib/socket_.h.
36164         * modules/sys_socket (Files, Makefile.am): Update.
36165
36166         * lib/sys_stat_.h: Renamed from lib/stat_.h.
36167         * modules/sys_stat (Files, Makefile.am): Update.
36168
36169 2007-04-27  Eric Blake  <ebb9@byu.net>
36170
36171         * lib/freading.h: Improve comments.
36172         * lib/fwriting.h: Likewise.
36173         * lib/fflush.c: Likewise.
36174
36175         Fix closein for mingw.
36176         * modules/closein-tests: Add tests for closein.
36177         * tests/test-closein.c: New file.
36178         * tests/test-closein.sh: Likewise.
36179         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
36180         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
36181
36182 2007-04-27  Bruno Haible  <bruno@clisp.org>
36183
36184         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
36185         version is < 6.
36186         * lib/math_.h [__DECC]: Likewise.
36187         * lib/stdio_.h [__DECC]: Likewise.
36188         * lib/stdlib_.h [__DECC]: Likewise.
36189         * lib/string_.h [__DECC]: Likewise.
36190         * lib/time_.h [__DECC]: Likewise.
36191         * lib/wchar_.h [__DECC]: Likewise.
36192         * lib/wctype_.h [__DECC]: Likewise.
36193
36194 2007-04-27  Bruno Haible  <bruno@clisp.org>
36195
36196         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
36197
36198 2007-04-27  Bruno Haible  <bruno@clisp.org>
36199
36200         * lib/fflush.c: Add comments.
36201         * modules/fpurge-tests (Depends-on): Add fflush.
36202         * modules/freadable-tests (Depends-on): Likewise.
36203         * modules/fwritable-tests (Depends-on): Likewise.
36204
36205 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
36206
36207         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
36208         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
36209         Report by Bruno Haible <bruno@clisp.org>.
36210
36211 2007-04-26  Eric Blake  <ebb9@byu.net>
36212
36213         Fix fflush on mingw.
36214         * modules/fflush (Depends-on): Add freading.
36215         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
36216         but unread data.
36217
36218 2007-04-26  Eric Blake  <ebb9@byu.net>
36219         and Bruno Haible  <bruno@clisp.org>
36220
36221         Implement freading and fwriting.
36222         * lib/freading.c: New file.
36223         * lib/freading.h: Likewise.
36224         * m4/freading.m4: Likewise.
36225         * modules/freading: Likewise.
36226         * modules/freading-tests: Likewise.
36227         * tests/test-freading.c: Likewise.
36228         * lib/fwriting.c: New file.
36229         * lib/fwriting.h: Likewise.
36230         * m4/fwriting.m4: Likewise.
36231         * modules/fwriting: Likewise.
36232         * modules/fwriting-tests: Likewise.
36233         * tests/test-fwriting.c: Likewise.
36234         * MODULES.html.sh (File stream based Input/Output): Mention them.
36235
36236 2007-04-26  Bruno Haible  <bruno@clisp.org>
36237
36238         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
36239         'long' when we assume it.
36240         Suggested by Eric Blake.
36241
36242 2007-04-26  Bruno Haible  <bruno@clisp.org>
36243
36244         Ensure fseeko, ftello are declared on glibc systems.
36245         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
36246         * modules/fseeko (configure.ac-early): Likewise.
36247         * modules/ftello (configure.ac-early): Likewise.
36248         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
36249         AC_FUNC_FSEEKO for this.
36250         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
36251         (gl_CHECK_FSEEKO): Remove macro.
36252
36253 2007-04-26  Bruno Haible  <bruno@clisp.org>
36254
36255         * tests/test-fflush.c (main): Also check the ftell result after
36256         fflush and fseek/fseeko.
36257         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
36258         file descriptor position cache in the stream.
36259         * lib/fseeko.c (rpl_fseeko): Likewise.
36260
36261 2007-04-26  Bruno Haible  <bruno@clisp.org>
36262
36263         * modules/fflush-tests (Depends-on): Add fseeko.
36264
36265 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
36266             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36267
36268         * lib/argz_.h: ensure error_t definition is obtained in same
36269         mechanism system argz.h would have.
36270         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
36271         argz facilities are known bad.  Err on the side of caution if
36272         cross-compiling.
36273
36274 2007-04-25  Eric Blake  <ebb9@byu.net>
36275
36276         * lib/fpurge.c (includes): Use stdlib.h for free.
36277         * tests/test-fflush.c (main): Also test fflush-fseeko.
36278
36279 2007-04-25  Bruno Haible  <bruno@clisp.org>
36280
36281         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
36282         * lib/fseeko.c: New file.
36283         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
36284         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
36285         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
36286         gl_FUNC_FSEEKO.
36287         (gl_FUNC_FSEEKO): Invoke it.
36288         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
36289         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
36290         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
36291
36292 2007-04-25  Bruno Haible  <bruno@clisp.org>
36293
36294         * modules/fflush (Depends-on): Add ftello.
36295
36296 2007-04-25  Bruno Haible  <bruno@clisp.org>
36297
36298         * modules/ftello-tests: New file.
36299         * tests/test-ftello.c: New file.
36300
36301         * modules/ftello: New file.
36302         * m4/ftello.m4: New file.
36303         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
36304         HAVE_FTELLO.
36305         * lib/stdio_.h (ftello): New declaration.
36306         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
36307         HAVE_FTELLO.
36308
36309 2007-04-25  Bruno Haible  <bruno@clisp.org>
36310
36311         * modules/fseeko-tests: New file.
36312         * tests/test-fseeko.c: New file.
36313
36314         * modules/fseeko: New file.
36315         * m4/fseeko.m4: New file.
36316         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
36317         HAVE_FSEEKO.
36318         * lib/stdio_.h (fseeko): New declaration.
36319         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
36320         HAVE_FSEEKO.
36321
36322 2007-04-25  Bruno Haible  <bruno@clisp.org>
36323
36324         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
36325
36326 2007-04-25  Bruno Haible  <bruno@clisp.org>
36327
36328         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
36329         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
36330         * tests/test-unistd.c: Likewise.
36331         * tests/test-fcntl.c: Likewise.
36332
36333 2007-04-23  Eric Blake  <ebb9@byu.net>
36334
36335         * lib/fflush.c: Fix missing include.
36336         Reported by Bruno Haible.
36337
36338 2007-04-23  Bruno Haible  <bruno@clisp.org>
36339
36340         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
36341         Reported by Eric Blake.
36342
36343 2007-04-23  Bruno Haible  <bruno@clisp.org>
36344
36345         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
36346
36347 2007-04-23  Bruno Haible  <bruno@clisp.org>
36348
36349         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
36350
36351 2007-04-23  Bruno Haible  <bruno@clisp.org>
36352
36353         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
36354         Needed on HP-UX 11.
36355
36356 2007-04-16  Eric Blake  <ebb9@byu.net>
36357
36358         Make fflush rely on fpurge.
36359         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
36360         open coding all variants.
36361         * modules/fflush (Depends-on): Add fpurge and unistd.
36362         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
36363         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
36364
36365         Fix --with-tests compilation on cygwin.
36366         * modules/argmatch-tests (Makefile.am): List gnulib library first
36367         in LDADD.
36368         * modules/argp-tests (Makefile.am): Likewise.
36369         * modules/array-list-tests (Makefile.am): Likewise.
36370         * modules/array-oset-tests (Makefile.am): Likewise.
36371         * modules/avltree-list-tests (Makefile.am): Likewise.
36372         * modules/avltree-oset-tests (Makefile.am): Likewise.
36373         * modules/avltreehash-list-tests (Makefile.am): Likewise.
36374         * modules/carray-list-tests (Makefile.am): Likewise.
36375         * modules/dirname-tests (Makefile.am): Likewise.
36376         * modules/frexp-tests (Makefile.am): Likewise.
36377         * modules/isnanl-tests (Makefile.am): Likewise.
36378         * modules/linked-list-tests (Makefile.am): Likewise.
36379         * modules/linkedhash-list-tests (Makefile.am): Likewise.
36380         * modules/lock-tests (Makefile.am): Likewise.
36381         * modules/rbtree-list-tests (Makefile.am): Likewise.
36382         * modules/rbtree-oset-tests (Makefile.am): Likewise.
36383         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
36384         * modules/tls-tests (Makefile.am): Likewise.
36385         * modules/tsearch-tests (Makefile.am): Likewise.
36386         * modules/xvasprintf-tests (Makefile.am): Likewise.
36387
36388         Fix fpurge for cygwin.
36389         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
36390         value.
36391         * modules/fpurge-tests (Depends-on): Clean up trash.
36392
36393 2007-04-16  Simon Josefsson  <simon@josefsson.org>
36394
36395         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
36396
36397         * m4/autobuild.m4: Re-indent.
36398
36399 2007-04-13  Bruno Haible  <bruno@clisp.org>
36400
36401         * modules/fpurge-tests: New file.
36402         * tests/test-fpurge.c: New file.
36403
36404         * modules/fpurge: New file.
36405         * lib/fpurge.h: New file.
36406         * lib/fpurge.c: New file.
36407         * m4/fpurge.m4: New file.
36408
36409 2007-04-13  Bruno Haible  <bruno@clisp.org>
36410
36411         * modules/fbufmode-tests: New file.
36412         * tests/test-fbufmode.c: New file.
36413
36414         * modules/fbufmode: New file.
36415         * lib/fbufmode.h: New file.
36416         * lib/fbufmode.c: New file.
36417         * m4/fbufmode.m4: New file.
36418
36419 2007-04-13  Bruno Haible  <bruno@clisp.org>
36420
36421         * modules/fwritable-tests: New file.
36422         * tests/test-fwritable.c: New file.
36423
36424         * modules/fwritable: New file.
36425         * lib/fwritable.h: New file.
36426         * lib/fwritable.c: New file.
36427         * m4/fwritable.m4: New file.
36428
36429 2007-04-13  Bruno Haible  <bruno@clisp.org>
36430
36431         * modules/freadable-tests: New file.
36432         * tests/test-freadable.c: New file.
36433
36434         * modules/freadable: New file.
36435         * lib/freadable.h: New file.
36436         * lib/freadable.c: New file.
36437         * m4/freadable.m4: New file.
36438
36439 2007-04-13  Bruno Haible  <bruno@clisp.org>
36440
36441         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
36442         MOSTLYCLEANFILES.
36443
36444 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
36445
36446         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
36447         gzip bootstrap.conf to avoid dragging in i18n machinery.
36448         (gnulib_tool_option): Use it.
36449
36450 2007-04-13  Bruno Haible  <bruno@clisp.org>
36451
36452         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
36453         %F directives.
36454         * tests/test-vasprintf-posix.c (test_function): Likewise.
36455         * tests/test-snprintf-posix.h (test_function): Likewise.
36456         * tests/test-sprintf-posix.h (test_function): Likewise.
36457         * tests/test-fprintf-posix.h (test_function): Likewise.
36458         * tests/test-printf-posix.h (test_function): Likewise.
36459         * tests/test-fprintf-posix.out: Likewise.
36460
36461 2007-04-13  Bruno Haible  <bruno@clisp.org>
36462
36463         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
36464         * modules/tls-tests (configure.ac): Likewise.
36465         Reported by Arto C. Nirkko <anirkko@insel.ch>.
36466
36467 2007-04-13  Bruno Haible  <bruno@clisp.org>
36468
36469         * lib/tls.c (glthread_tls_get): Fix return type.
36470         Patch by Arto C. Nirkko <anirkko@insel.ch>.
36471
36472 2007-04-12  Eric Blake  <ebb9@byu.net>
36473
36474         * modules/gettime (Depends-on): Remove gettime.
36475         Reported by Dmitry V. Levin.
36476
36477 2007-04-12  Bruno Haible  <bruno@clisp.org>
36478
36479         * modules/fflush (Include): Mention <stdio.h>.
36480         * modules/strtoimax (Include): Mention <inttypes.h>.
36481         * modules/strtoumax (Include): Likewise.
36482
36483 2007-04-12  Eric Blake  <ebb9@byu.net>
36484
36485         * .cvsignore: New file.
36486         * .gitignore: Likewise.
36487
36488 2007-04-12  Bruno Haible  <bruno@clisp.org>
36489
36490         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
36491         not before, since $(LDADD) often contains libgnu.a.
36492         * modules/striconv-tests (test_striconv_LDADD): Likewise.
36493         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
36494         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
36495         Needed on Cygwin.
36496
36497 2007-04-12  Eric Blake  <ebb9@byu.net>
36498
36499         Work around glibc's failure to flush stdin on fclose.
36500         * lib/closein.c (close_stdin): Flush stdin before closing.
36501
36502         Work around glibc's failure to reset seekable stdin on exit.
36503         * modules/closein: New module.
36504         * lib/closein.c: New file.
36505         * lib/closein.h: Likewise.
36506         * m4/closein.m4: Likewise.
36507         * MODULES.html.sh (File stream based Input/Output): Document it.
36508
36509 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36510
36511         * gnulib-tool: Rename generated 'autobuild' script to
36512         'do-autobuild' in --create-megatestdir output.
36513
36514         * doc/gnulib.texi (Build robot for gnulib): Fix.
36515
36516 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36517
36518         * modules/sysexits (Depends-on): Add absolute-header.
36519
36520 2007-04-12  Eric Blake  <ebb9@byu.net>
36521
36522         No need to preserve errno on success.
36523         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
36524         Reported by Bruno Haible.
36525
36526 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36527
36528         * MODULES.html.sh (Support for maintaining and releasing
36529         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
36530
36531 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36532
36533         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
36534
36535 2007-04-12  Simon Josefsson  <simon@josefsson.org>
36536
36537         * modules/autobuild: New module.
36538
36539         * m4/autobuild.m4: New file.
36540
36541 2007-04-11  Bruno Haible  <bruno@clisp.org>
36542
36543         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
36544         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
36545         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
36546         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
36547         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
36548         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36549         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36550         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
36551         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36552         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36553         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
36554         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36555         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36556         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
36557         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36558         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36559         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
36560         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36561         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36562         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
36563         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36564         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36565         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
36566         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36567         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36568         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
36569         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
36570         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
36571         Reported by Eric Blake.
36572
36573 2007-04-11  Bruno Haible  <bruno@clisp.org>
36574
36575         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
36576
36577 2007-04-10  Bruno Haible  <bruno@clisp.org>
36578
36579         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
36580         for NaN and Infinity. Needed on FreeBSD 6.1.
36581         * tests/test-vasnprintf-posix.c (test_function): Undo last change
36582         regarding results for "%010a" of Infinity and NaN.
36583         * tests/test-vasprintf-posix.c (test_function): Likewise.
36584         * tests/test-snprintf-posix.h (test_function): Likewise.
36585         * tests/test-sprintf-posix.h (test_function): Likewise.
36586         * tests/test-fprintf-posix.h (test_function): Likewise.
36587         * tests/test-printf-posix.h (test_function): Likewise.
36588         * tests/test-fprintf-posix.out: Likewise.
36589
36590 2007-04-10  Bruno Haible  <bruno@clisp.org>
36591
36592         * modules/locale-tests: New file.
36593         * tests/test-locale.c: New file.
36594
36595         * modules/locale: New file.
36596         * lib/locale_.h: New file.
36597         * m4/locale_h.m4: New file.
36598
36599 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
36600             Bruno Haible  <bruno@clisp.org>
36601
36602         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
36603         be determined, test for availability of the copysignf, copysign,
36604         copysignl functions.
36605         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
36606         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
36607         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
36608
36609 2007-04-09  Eric Blake  <ebb9@byu.net>
36610
36611         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
36612         * modules/stdio (Makefile.am): Support fflush.
36613         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
36614         * modules/fflush: New file.
36615         * lib/fflush.c: Likewise.
36616         * m4/fflush.m4: Likewise.
36617         * modules/fflush-tests: New test.
36618         * tests/test-fflush.c: Likewise.
36619         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
36620
36621 2007-04-06  Bruno Haible  <bruno@clisp.org>
36622
36623         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
36624         (VASNPRINTF): Use signbit for faster determination whether to print a
36625         minus sign.
36626         * modules/vasnprintf (Files): Remove lib/float+.h.
36627         * modules/fprintf-posix (Depends-on): Add signbit.
36628         * modules/snprintf-posix (Depends-on): Likewise.
36629         * modules/sprintf-posix (Depends-on): Likewise.
36630         * modules/vasnprintf-posix (Depends-on): Likewise.
36631         * modules/vasprintf-posix (Depends-on): Likewise.
36632         * modules/vfprintf-posix (Depends-on): Likewise.
36633         * modules/vsnprintf-posix (Depends-on): Likewise.
36634         * modules/vsprintf-posix (Depends-on): Likewise.
36635
36636 2007-04-06  Bruno Haible  <bruno@clisp.org>
36637
36638         * tests/test-frexp.c (main): Test also the sign bit of zero results.
36639         * tests/test-frexpl.c (main): Likewise.
36640         * tests/test-ldexpl.c (main): Likewise.
36641         * modules/frexp-tests (Depends-on): Add signbit.
36642         * modules/frexpl-tests (Depdends-on): Likewise.
36643         * modules/ldexpl-tests (Depdends-on): Likewise.
36644
36645 2007-04-06  Bruno Haible  <bruno@clisp.org>
36646
36647         * modules/signbit-tests: New file.
36648         * tests/test-signbit.c: New file.
36649
36650         * modules/signbit: New file.
36651         * lib/signbitf.c: New file.
36652         * lib/signbitd.c: New file.
36653         * lib/signbitl.c: New file.
36654         * m4/signbit.m4: New file.
36655         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
36656         (signbit): New macro.
36657         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
36658         REPLACE_SIGNBIT.
36659         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
36660         REPLACE_FREXPL into math.h.
36661
36662 2007-04-06  Bruno Haible  <bruno@clisp.org>
36663
36664         * modules/isnanf-nolibm-tests: New file.
36665         * tests/test-isnanf.c: New file.
36666
36667         * modules/isnanf-nolibm: New file.
36668         * lib/isnanf.h: New file.
36669         * lib/isnanf.c: New file.
36670         * lib/isnan.c: Consider the USE_FLOAT macro.
36671         * m4/isnanf.m4: New file.
36672
36673 2007-04-06  Bruno Haible  <bruno@clisp.org>
36674
36675         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
36676         (Link): New section.
36677
36678         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
36679
36680 2007-04-06  Bruno Haible  <bruno@clisp.org>
36681
36682         Assume the 'long double' type.
36683         * m4/longdouble.m4: Remove file.
36684         * config/srclist.txt: Don't mention longdouble.m4.
36685         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
36686         * lib/float+.h: Likewise.
36687         * lib/frexp.c: Likewise.
36688         * lib/printf-args.h: Likewise.
36689         * lib/printf-args.c: Likewise.
36690         * lib/printf-frexp.c: Likewise.
36691         * lib/printf-parse.c: Likewise.
36692         * lib/vasnprintf.c: Likewise.
36693         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
36694         * m4/intl.m4: Likewise.
36695         * m4/isnanl.m4: Likewise.
36696         * m4/printf.m4: Likewise.
36697         * m4/printf-frexpl.m4: Likewise.
36698         * m4/vasnprintf.m4: Likewise.
36699         * modules/allocsa (Files): Remove m4/longdouble.m4.
36700         * modules/gettext (Files): Likewise.
36701         * modules/relocatable-prog-wrapper (Files): Likewise.
36702         * modules/vasnprintf (Files): Likewise.
36703         * modules/isnanl (Files): Likewise.
36704         (Include): Simplify.
36705         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
36706         (Include): Simplify.
36707         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
36708         (Include): Simplify.
36709         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
36710         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36711         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
36712         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36713         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
36714         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36715         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
36716         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36717         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
36718         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36719         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
36720         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
36721         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
36722         * tests/test-isnanl.c: Likewise.
36723         * tests/test-snprintf-posix.h: Likewise.
36724         * tests/test-sprintf-posix.h: Likewise.
36725         * tests/test-vasnprintf-posix.c: Likewise.
36726         * tests/test-vasnprintf-posix2.c: Likewise.
36727         * tests/test-vasprintf-posix.c: Likewise.
36728
36729 2007-04-06  Bruno Haible  <bruno@clisp.org>
36730
36731         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
36732         * lib/math_.h [__DECC]: Include the overridden include file through
36733         #include_next, outside the double-inclusion guard.
36734         * lib/stdio_.h [__DECC]: Likewise.
36735         * lib/stdlib_.h [__DECC]: Likewise.
36736         * lib/string_.h [__DECC]: Likewise.
36737         * lib/time_.h [__DECC]: Likewise.
36738         * lib/wchar_.h [__DECC]: Likewise.
36739         * lib/wctype_.h [__DECC]: Likewise.
36740         * lib/inttypes_.h [__DECC]: Likewise.
36741         Reported by Albert Chin <china@thewrittenword.com> in
36742         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
36743
36744 2007-04-04  Eric Blake  <ebb9@byu.net>
36745
36746         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
36747         1.5.x.
36748
36749 2007-04-04  Bruno Haible  <bruno@clisp.org>
36750
36751         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
36752         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
36753
36754 2007-04-04  Bruno Haible  <bruno@clisp.org>
36755
36756         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
36757         results for "%010a" of Infinity and NaN.
36758         * tests/test-vasprintf-posix.c (test_function): Likewise.
36759         * tests/test-snprintf-posix.h (test_function): Likewise.
36760         * tests/test-sprintf-posix.h (test_function): Likewise.
36761         * tests/test-fprintf-posix.h (test_function): Remove these tests.
36762         * tests/test-printf-posix.h (test_function): Likewise.
36763         * tests/test-fprintf-posix.out: Update.
36764         Needed for FreeBSD 6.1.
36765
36766 2007-04-04  Bruno Haible  <bruno@clisp.org>
36767
36768         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
36769         directly used by the gnulib modules nor by gnulib-tool.
36770
36771 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
36772
36773         * DEPENDENCIES: Give overall description of version dependency
36774         desirability.  Use more-typical names for apps.
36775         Add shell, coreutils, diffutils, grep, tar, gzip.
36776
36777 2007-04-04  Simon Josefsson  <simon@josefsson.org>
36778
36779         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
36780
36781 2007-04-04  Karl Berry  <karl@gnu.org>
36782
36783         * MODULES.html.sh (func_module): missing '.
36784
36785 2007-04-03  Bruno Haible  <bruno@clisp.org>
36786
36787         * modules/argmatch-tests (Makefile.am): New variable
36788         test_argmatch_LDADD.
36789         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
36790         * modules/array-list-tests (Makefile.am): New variable
36791         test_array_list_LDADD.
36792         * modules/array-oset-tests (Makefile.am): New variable
36793         test_array_oset_LDADD.
36794         * modules/avltree-list-tests (Makefile.am): New variable
36795         test_avltree_list_LDADD.
36796         * modules/avltree-oset-tests (Makefile.am): New variable
36797         test_avltree_oset_LDADD.
36798         * modules/avltreehash-list-tests (Makefile.am): New variable
36799         test_avltreehash_list_LDADD.
36800         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
36801         test_canonicalize_lgpl_LDADD.
36802         * modules/carray-list-tests (Makefile.am): New variable
36803         test_carray_list_LDADD.
36804         * modules/dirname-tests (Makefile.am): New variable
36805         test_dirname_LDADD.
36806         * modules/linked-list-tests (Makefile.am): New variable
36807         test_linked_list_LDADD.
36808         * modules/linkedhash-list-tests (Makefile.am): New variable
36809         test_linkedhash_list_LDADD.
36810         * modules/rbtree-list-tests (Makefile.am): New variable
36811         test_rbtree_list_LDADD.
36812         * modules/rbtree-oset-tests (Makefile.am): New variable
36813         test_rbtree_oset_LDADD.
36814         * modules/rbtreehash-list-tests (Makefile.am): New variable
36815         test_rbtreehash_list_LDADD.
36816         * modules/xvasprintf-tests (Makefile.am): New variable
36817         test_xvasprintf_LDADD.
36818         Reported by Eric Blake.
36819
36820 2007-04-03  Eric Blake  <ebb9@byu.net>
36821
36822         * DEPENDENCIES: Weaken m4 requirements.
36823
36824 2007-04-03  Bruno Haible  <bruno@clisp.org>
36825
36826         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
36827         * modules/isnanl-tests (configure.ac): Likewise.
36828
36829 2007-04-03  Ben Pfaff  <blp@gnu.org>
36830
36831         * modules/iconv_open: Add $(srcdir)/ to source directory
36832         references in Makefile fragments that call gperf, to fix VPATH
36833         builds.
36834
36835 2007-04-03  Bruno Haible  <bruno@clisp.org>
36836
36837         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
36838         * lib/ldexpl.c: Undo last change.
36839
36840 2007-04-03  Bruno Haible  <bruno@clisp.org>
36841
36842         * modules/printf-frexpl (Depends-on): Undo last change.
36843         (Files): Add m4/ldexpl.m4.
36844
36845 2007-04-03  Bruno Haible  <bruno@clisp.org>
36846
36847         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
36848         * modules/isnanl (Link): New section.
36849
36850         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
36851         * modules/frexp (Link): New section.
36852
36853         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
36854         * modules/frexpl (Link): New section.
36855
36856         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
36857         * modules/ldexpl (Link): New section.
36858
36859 2007-04-03  Bruno Haible  <bruno@clisp.org>
36860
36861         * modules/TEMPLATE-EXTENDED: New file.
36862         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
36863
36864 2007-04-03  Bruno Haible  <bruno@clisp.org>
36865
36866         * DEPENDENCIES: New file.
36867         Suggested by Simon Josefsson.
36868
36869 2007-04-03  Bruno Haible  <bruno@clisp.org>
36870
36871         * doc/gnulib.texi: Escape @.
36872
36873 2007-04-03  James Youngman  <jay@gnu.org>
36874         and Paul Eggert  <eggert@cs.ucla.edu>
36875
36876         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
36877         birthtime on all systems that have birthtime, not just those which
36878         use st_birthtimensec rather than st_birthtim.  Putting zero in
36879         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
36880         that the birth time is not available for files on an NFS mount.
36881
36882 2007-04-03  Simon Josefsson  <simon@josefsson.org>
36883
36884         * modules/memxor: Move back from crypto/, suggested by Bruno.
36885         * modules/crypto/hmac-sha1: Fix memxor dependency.
36886
36887         * modules/crypto/gc: Moved from ../.
36888
36889 2007-04-02  Eric Blake  <ebb9@byu.net>
36890
36891         * lib/ldexpl.c (includes): Avoid libm.
36892
36893         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
36894
36895 2007-04-02  Bruno Haible  <bruno@clisp.org>
36896
36897         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
36898         on IRIX.
36899
36900 2007-04-02  Bruno Haible  <bruno@clisp.org>
36901
36902         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
36903         x86 or x86_64 platforms running MacOS X.
36904         Reported by Ryan Schmidt <@ryandesign.com>.
36905
36906 2007-04-02  Bruno Haible  <bruno@clisp.org>
36907
36908         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
36909         i386.
36910
36911 2007-04-01  Simon Josefsson  <simon@josefsson.org>
36912
36913         * modules/crypto/arcfour: Moved from ../.
36914         * modules/crypto/arcfour-tests: Moved from ../.
36915         * modules/crypto/arctwo: Moved from ../.
36916         * modules/crypto/arctwo-tests: Moved from ../.
36917         * modules/crypto/des: Moved from ../.
36918         * modules/crypto/des-tests: Moved from ../.
36919         * modules/crypto/gc-arcfour: Moved from ../.
36920         * modules/crypto/gc-arcfour-tests: Moved from ../.
36921         * modules/crypto/gc-arctwo: Moved from ../.
36922         * modules/crypto/gc-arctwo-tests: Moved from ../.
36923         * modules/crypto/gc-des: Moved from ../.
36924         * modules/crypto/gc-des-tests: Moved from ../.
36925         * modules/crypto/gc-hmac-md5: Moved from ../.
36926         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
36927         * modules/crypto/gc-hmac-sha1: Moved from ../.
36928         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
36929         * modules/crypto/gc-md2: Moved from ../.
36930         * modules/crypto/gc-md2-tests: Moved from ../.
36931         * modules/crypto/gc-md4: Moved from ../.
36932         * modules/crypto/gc-md4-tests: Moved from ../.
36933         * modules/crypto/gc-md5: Moved from ../.
36934         * modules/crypto/gc-md5-tests: Moved from ../.
36935         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
36936         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
36937         * modules/crypto/gc-random: Moved from ../.
36938         * modules/crypto/gc-rijndael: Moved from ../.
36939         * modules/crypto/gc-rijndael-tests: Moved from ../.
36940         * modules/crypto/gc-sha1: Moved from ../.
36941         * modules/crypto/gc-sha1-tests: Moved from ../.
36942         * modules/crypto/gc-tests: Moved from ../.
36943         * modules/crypto/hmac-md5: Moved from ../.
36944         * modules/crypto/hmac-md5-tests: Moved from ../.
36945         * modules/crypto/hmac-sha1: Moved from ../.
36946         * modules/crypto/hmac-sha1-tests: Moved from ../.
36947         * modules/crypto/md2: Moved from ../.
36948         * modules/crypto/md2-tests: Moved from ../.
36949         * modules/crypto/md4: Moved from ../.
36950         * modules/crypto/md4-tests: Moved from ../.
36951         * modules/crypto/md5: Moved from ../.
36952         * modules/crypto/md5-tests: Moved from ../.
36953         * modules/crypto/memxor: Moved from ../.
36954         * modules/crypto/rijndael: Moved from ../.
36955         * modules/crypto/rijndael-tests: Moved from ../.
36956         * modules/crypto/sha1: Moved from ../.
36957
36958 2007-03-30  James Youngman  <jay@gnu.org>
36959
36960         * tests/test-stat-time.c (prepare_test): use chmod() rather than
36961         rename() to change the ctime of a file (because ctime is unaffected
36962         by rename on jfs2 on AIX 5.1).
36963         (main): Start by doing cleanup, in case a previous run failed leaving
36964         test files behind.
36965
36966 2007-03-31  Bruno Haible  <bruno@clisp.org>
36967
36968         Support old proprietary implementations of iconv.
36969         * modules/iconv_open: New file.
36970         * lib/iconv_.h: New file.
36971         * m4/iconv_h.m4: New file.
36972         * lib/iconv_open.c: New file.
36973         * lib/iconv_open-aix.gperf: New file.
36974         * lib/iconv_open-hpux.gperf: New file.
36975         * lib/iconv_open-irix.gperf: New file.
36976         * lib/iconv_open-osf.gperf: New file.
36977         * m4/iconv_open.m4: New file.
36978         * modules/linebreak (Depends-on): Add iconv_open.
36979         * modules/striconv (Depends-on): Likewise.
36980         * modules/striconveh (Depends-on): Likewise.
36981         * modules/unicodeio (Depends-on): Likewise.
36982         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
36983         (iconv_t)(-1).
36984         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
36985         conversion if cd is (iconv_t)(-1).
36986         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
36987         is not possible.
36988
36989 2007-03-31  Bruno Haible  <bruno@clisp.org>
36990
36991         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
36992         work on Solaris either. Protect also second use of "autodetect_jp".
36993
36994 2007-03-31  Bruno Haible  <bruno@clisp.org>
36995
36996         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
36997         the function is not present.
36998
36999 2007-03-31  Bruno Haible  <bruno@clisp.org>
37000
37001         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
37002         the function is not present.
37003
37004 2007-03-31  Bruno Haible  <bruno@clisp.org>
37005
37006         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
37007         a bug in HP-UX iconv_open().
37008
37009 2007-03-31  Bruno Haible  <bruno@clisp.org>
37010
37011         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
37012         (Mathematics <math.h>): New section, add fpieee.
37013         (Input/output <stdio.h>): Add fseterr.
37014         (Mathematics <math.h>): New section, add printf-frexp.
37015         (Container data structures): Add sublist.
37016         (Core language properties): Add fpucw, inline.
37017         (Functions for greatest-width integer types <inttypes.h>): Add
37018         imaxabs, imaxdiv, inttypes.
37019         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
37020         isnanl-nolibm, ldexp.
37021         (Mathematics <math.h>): New section, add printf-frexpl.
37022         (Support for systems lacking POSIX:2001): Add fprintf-posix,
37023         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
37024         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
37025         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
37026         (Unicode string functions): Add unistr/u*-mbtoucr.
37027         (Java): Add javacomp-script, javaexec-script.
37028         (C#): Add csharpcomp-script, csharpexec-script.
37029         (Support for building libraries and executables): Add havelib,
37030         relocatable-*.
37031         (Support for maintaining and releasing projects): Renamed from
37032         'Support for maintaining and release projects'. Add announce-gen.
37033
37034 2007-03-31  Bruno Haible  <bruno@clisp.org>
37035
37036         * README: Talk primarily about git.
37037         (git and CVS): Renamed from CVS.
37038         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
37039         gnulib is available through git.
37040         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
37041
37042 2007-03-30  Bruno Haible  <bruno@clisp.org>
37043
37044         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
37045         * lib/poll_.h: Likewise.
37046         * lib/stat_.h: Likewise.
37047         * lib/sys_time_.h: Likewise.
37048         * lib/sysexit_.h: Likewise.
37049         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
37050         * lib/stdbool_.h: Likewise.
37051         * lib/byteswap_.h: Add double-inclusion guard.
37052
37053 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
37054
37055         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
37056
37057 2007-03-30  Karl Berry  <karl@gnu.org>
37058
37059         * config/srclist-update: double space after USA in the license
37060         substitution, since that's how it's usually (?) written.
37061
37062 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
37063
37064         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
37065         reported by Bruno Haible.
37066
37067 2007-03-29  Bruno Haible  <bruno@clisp.org>
37068
37069         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
37070         a bug in AIX iconv().
37071
37072 2007-03-29  Bruno Haible  <bruno@clisp.org>
37073
37074         * modules/ldexpl-tests: New file.
37075         * tests/test-ldexpl.c: New file.
37076
37077 2007-03-29  Bruno Haible  <bruno@clisp.org>
37078
37079         * lib/ldexpl.c: Include fpucw.h.
37080         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
37081         multiplication.
37082         * modules/ldexpl (Depends-on): Add fpucw.
37083
37084 2007-03-29  Bruno Haible  <bruno@clisp.org>
37085
37086         * modules/ldexpl: New file.
37087         * m4/ldexpl.m4: New file.
37088         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
37089         set.
37090         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
37091         REPLACE_LDEXPL.
37092         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
37093         REPLACE_LDEXPL.
37094         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
37095         gl_FUNC_LDEXPL_WORKS.
37096         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
37097         * modules/mathl (Files): Remove lib/ldexpl.c.
37098         (Depends-on): Add ldexpl.
37099
37100 2007-03-29  Bruno Haible  <bruno@clisp.org>
37101
37102         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
37103
37104 2007-03-29  Bruno Haible  <bruno@clisp.org>
37105
37106         * tests/test-striconveh.c (main): Don't assume that a direct conversion
37107         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
37108         and possibly also HP-UX.
37109         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
37110         work on AIX, IRIX, HP-UX, OSF/1.
37111         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
37112         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
37113         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
37114         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
37115         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
37116         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
37117
37118 2007-03-29  Bruno Haible  <bruno@clisp.org>
37119
37120         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
37121
37122 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
37123
37124         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
37125         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
37126
37127 2007-03-29  Eric Blake  <ebb9@byu.net>
37128
37129         * lib/acl-internal.h: Remove redundant include.
37130         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
37131         Cygwin when a file is locked.
37132
37133 2007-03-29  Bruno Haible  <bruno@clisp.org>
37134
37135         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
37136         file.
37137         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
37138
37139 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
37140
37141         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
37142         try to remove a parent directory if the child couldn't be removed
37143         (except for the first rmdir, which could fail because the child
37144         doesn't exist).  Problem reported by Jeff Blaine in
37145         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
37146
37147 2007-03-28  Bruno Haible  <bruno@clisp.org>
37148
37149         * lib/striconveh.c (utf8conv_carefully): New function.
37150         (mem_cd_iconveh_internal): Invoke it.
37151
37152 2007-03-28  Bruno Haible  <bruno@clisp.org>
37153
37154         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
37155         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
37156         input.
37157         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
37158         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
37159         unistr/u8-uctomb.
37160
37161 2007-03-28  Bruno Haible  <bruno@clisp.org>
37162
37163         * modules/unistr/u8-mbtoucr: New file.
37164         * lib/unistr/u8-mbtoucr.c: New file.
37165         * modules/unistr/u16-mbtoucr: New file.
37166         * lib/unistr/u16-mbtoucr.c: New file.
37167         * modules/unistr/u16-mbtoucr: New file.
37168         * lib/unistr/u16-mbtoucr.c: New file.
37169         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
37170
37171 2007-03-27  Simon Josefsson  <simon@josefsson.org>
37172             Bruno Haible  <bruno@clisp.org>
37173
37174         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
37175         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
37176         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
37177
37178         * m4/stdio_h.m4: Add stubs for vasprintf too.
37179
37180         * modules/stdio: Support vasprintf in sed command.
37181
37182         * modules/vasprintf: Depend on stdio for prototypes.  Remove
37183         vasprintf.h.  Add stdio module indicator.
37184
37185         * lib/stdio_.h: Declare asprintf and vasprintf, based on
37186         vasprintf.h.
37187
37188         * lib/vasprintf.h: File removed.
37189
37190         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
37191         * lib/vasprintf.c: Ditto.
37192         * lib/xvasprintf.c: Ditto.
37193         * tests/test-vasprintf-posix.c: Ditto.
37194         * tests/test-vasprintf.c: Ditto.
37195
37196 2007-03-27  Bruno Haible  <bruno@clisp.org>
37197
37198         Make vasnprintf multithread-safe.
37199         * lib/vasnprintf.c (decimal_point_char): New function.
37200         (VASNPRINTF): Use it.
37201         Suggested by Simon Josefsson.
37202
37203 2007-03-27  Eric Blake  <ebb9@byu.net>
37204
37205         Support sub-second birthtime on cygwin.
37206         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
37207         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
37208         (get_stat_birthtime): Also work with st_birthtim.
37209
37210 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
37211
37212         * lib/stat-time.h (USE_BIRTHTIME): Remove.
37213         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
37214         (get_stat_birthtime_ns): Do not try to use "spare" fields.
37215         (get_stat_birthtime_ns): Simplify compile-time tests.
37216         (get_stat_birthtime): Change the API to look like
37217         get_stat_mtime etc., except return a negative tv_nsec on error.
37218         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
37219         Don't check for "spare" fields.
37220         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
37221         or for struct stat.st_birthtime, as these tests aren't used.
37222         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
37223
37224 2007-03-27  Bruno Haible  <bruno@clisp.org>
37225
37226         * lib/stat-time.h: Include <sys/stat.h>.
37227
37228 2007-03-27  James Youngman  <jay@gnu.org>
37229
37230         * lib/stat-time.h (get_stat_birthtime): New function for
37231           retrieving st_birthtime as provided by UFS2 (hence *BSD).
37232         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
37233           and its variants.
37234         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
37235         * modules/stat-time-test: New file.
37236         * tests/test-stat-time.c: New test, devised by Bruno Haible.
37237
37238 2007-03-26  Bruno Haible  <bruno@clisp.org>
37239
37240         Better support of signalling NaNs.
37241         * lib/atanl.c: Include isnanl.h.
37242         (atanl): Perform test for NaN at the beginning of the function and
37243         through a call to isnanl.
37244         * lib/cosl.c: Include isnanl.h.
37245         (cosl): Perform test for NaN at the beginning of the function and
37246         through a call to isnanl.
37247         * lib/ldexpl.c: Include isnanl.h.
37248         (ldexpl): Perform test for NaN through a call to isnanl.
37249         * lib/logl.c: Include isnanl.h.
37250         (logl): Perform test for NaN at the beginning of the function and
37251         through a call to isnanl.
37252         * lib/sinl.c: Include isnanl.h.
37253         (sinl): Perform test for NaN at the beginning of the function and
37254         through a call to isnanl.
37255         * lib/sqrtl.c: Include isnanl.h.
37256         (sqrtl): Perform test for NaN at the beginning of the function and
37257         through a call to isnanl.
37258         * lib/tanl.c: Include isnanl.h.
37259         (tanl): Perform test for NaN at the beginning of the function and
37260         through a call to isnanl.
37261         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
37262         * modules/mathl (Depends-on): Add isnanl.
37263
37264 2007-03-26  Eric Blake  <ebb9@byu.net>
37265
37266         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
37267         regression in logic sense of previous patch.
37268
37269 2007-03-26  Bruno Haible  <bruno@clisp.org>
37270
37271         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
37272         unportable shell command "if ! ...".
37273         Reported by Ralf Wildenhues.
37274
37275 2007-03-25  Bruno Haible  <bruno@clisp.org>
37276
37277         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
37278         <sysexits.h> file, and only add EX_CONFIG.
37279         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
37280         absolute file name and whether it is sufficient. Substitute also
37281         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
37282         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
37283         ABSOLUTE_SYSEXITS_H into sysexits.h.
37284
37285 2007-03-25  Bruno Haible  <bruno@clisp.org>
37286
37287         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
37288         hints is NULL.
37289
37290 2007-03-25  Bruno Haible  <bruno@clisp.org>
37291
37292         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
37293         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
37294
37295 2007-03-25  Bruno Haible  <bruno@clisp.org>
37296
37297         * lib/vasnprintf.c: Include langinfo.h.
37298         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
37299         multithread-safe.
37300         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
37301         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
37302         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
37303         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
37304         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
37305         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
37306         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
37307         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
37308         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
37309         Reported by Simon Josefsson.
37310
37311 2007-03-25  Bruno Haible  <bruno@clisp.org>
37312
37313         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
37314         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
37315         * modules/vasnprintf (Depends-on): Add stdint.
37316
37317 2007-03-25  Bruno Haible  <bruno@clisp.org>
37318
37319         * modules/fpieee: New file.
37320         * m4/fpieee.m4: New file.
37321         * modules/isnan-nolibm (Depends-on): Add fpieee.
37322         * modules/isnanl-nolibm (Depends-on): Add fpieee.
37323         * modules/isnanl (Depends-on): Add fpieee.
37324
37325 2007-03-25  Bruno Haible  <bruno@clisp.org>
37326
37327         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
37328
37329 2007-03-25  Bruno Haible  <bruno@clisp.org>
37330
37331         Avoid test failures on IRIX 6.5.
37332         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
37333         (main): Use it.
37334         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
37335         macros.
37336         (main): Use them.
37337
37338 2007-03-25  Bruno Haible  <bruno@clisp.org>
37339
37340         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
37341         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
37342         exists but doesn't work.
37343         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
37344         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
37345         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
37346         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
37347
37348 2007-03-25  Bruno Haible  <bruno@clisp.org>
37349
37350         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
37351         returns inf. Needed on IRIX 6.5.
37352
37353 2007-03-25  Bruno Haible  <bruno@clisp.org>
37354
37355         * tests/test-frexpl.c: Include isnanl-nolibm.h.
37356         (main): Use isnanl instead of x != x idiom.
37357         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
37358
37359         * tests/test-frexp.c: Include isnan.h.
37360         (main): Use isnan instead of x != x idiom.
37361         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
37362
37363 2007-03-25  Bruno Haible  <bruno@clisp.org>
37364
37365         * tests/test-frexp.c (NaN): New function/macro.
37366         (main): Use it instead of 0.0 / 0.0.
37367         * tests/test-isnan.c (NaN): New function/macro.
37368         (main): Use it instead of 0.0 / 0.0.
37369         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
37370         (test_function): Use it instead of 0.0 / 0.0.
37371         * tests/test-vasprintf-posix.c (NaN): New function/macro.
37372         (test_function): Use it instead of 0.0 / 0.0.
37373         * tests/test-snprintf-posix.h (NaN): New function/macro.
37374         (test_function): Use it instead of 0.0 / 0.0.
37375         * tests/test-sprintf-posix.h (NaN): New function/macro.
37376         (test_function): Use it instead of 0.0 / 0.0.
37377         * tests/test-fprintf-posix.h (NaN): New function/macro.
37378         (test_function): Use it instead of 0.0 / 0.0.
37379         * tests/test-printf-posix.h (NaN): New function/macro.
37380         (test_function): Use it instead of 0.0 / 0.0.
37381
37382         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
37383
37384 2007-03-25  Bruno Haible  <bruno@clisp.org>
37385
37386         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
37387
37388 2007-03-25  Bruno Haible  <bruno@clisp.org>
37389
37390         * lib/regexec.c (merge_state_with_log): Make static.
37391
37392 2007-03-25  Bruno Haible  <bruno@clisp.org>
37393
37394         * lib/trigl.c (kernel_rem_pio2): Make static.
37395
37396 2007-03-25  Bruno Haible  <bruno@clisp.org>
37397
37398         * lib/sincosl.c (sincosl_table): Make static.
37399
37400 2007-03-25  Bruno Haible  <bruno@clisp.org>
37401
37402         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
37403         if the compiler does not support C99.
37404
37405 2007-03-25  Bruno Haible  <bruno@clisp.org>
37406
37407         * modules/time (Makefile.am): Ensure all rule action lines start with a
37408         tab.
37409
37410 2007-03-24  Bruno Haible  <bruno@clisp.org>
37411
37412         * modules/tsearch-tests: New file.
37413         * tests/test-tsearch.sh: New file.
37414         * tests/test-tsearch.c: New file, mostly copied from glibc.
37415
37416         * modules/search-tests: New file.
37417         * tests/test-search.c: New file.
37418
37419         * modules/search: New file.
37420         * lib/search_.h: New file, incorporating lib/tsearch.h.
37421         * m4/search_h.m4: New file.
37422         * lib/tsearch.h: Remove file.
37423         * lib/tsearch.c: Include search.h instead of tsearch.h.
37424         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
37425         HAVE_TSEARCH.
37426         * modules/tsearch (Files): Remove lib/tsearch.h.
37427         (Depends-on): Add search.
37428         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
37429         (Include): Change tsearch.h into search.h.
37430
37431 2007-03-24  Bruno Haible  <bruno@clisp.org>
37432
37433         * modules/fpucw: New file.
37434         * lib/fpucw.h: New file.
37435         * lib/frexp.c: Include fpucw.h.
37436         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
37437         (FUNC): Use them.
37438         * lib/printf-frexp.c: Include fpucw.h.
37439         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
37440         (FUNC): Use them.
37441         * lib/vasnprintf.c: Include fpucw.h.
37442         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
37443         'long double' calculations.
37444         * tests/test-frexpl.c: Include fpucw.h.
37445         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
37446         * tests/test-printf-frexpl.c: Include fpucw.h.
37447         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
37448         * modules/frexpl (Depends-on): Add fpucw.
37449         * modules/printf-frexpl (Depends-on): Likewise.
37450         * modules/fprintf-posix (Depends-on): Likewise.
37451         * modules/snprintf-posix (Depends-on): Likewise.
37452         * modules/sprintf-posix (Depends-on): Likewise.
37453         * modules/vasnprintf-posix (Depends-on): Likewise.
37454         * modules/vasprintf-posix (Depends-on): Likewise.
37455         * modules/vfprintf-posix (Depends-on): Likewise.
37456         * modules/vsnprintf-posix (Depends-on): Likewise.
37457         * modules/vsprintf-posix (Depends-on): Likewise.
37458         * modules/frexpl-tests (Depends-on): Likewise.
37459         * modules/printf-frexpl-tests (Depends-on): Likewise.
37460
37461 2007-03-24  Bruno Haible  <bruno@clisp.org>
37462
37463         * lib/float+.h: New file.
37464         * lib/isnan.c: Include float+.h.
37465         (SIZE): New macro.
37466         (FUNC): Compare only SIZE bytes of the value.
37467         * lib/vasnprintf.c: Include float+.h.
37468         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
37469         SIZEOF_LDBL or SIZEOF_DBL bytes.
37470         * modules/isnan-nolibm (Files): Add lib/float+.h.
37471         * modules/isnanl-nolibm (Files): Add lib/float+.h.
37472         * modules/isnanl (Files): Add lib/float+.h.
37473         * modules/vasnprintf (Files): Add lib/float+.h.
37474
37475 2007-03-24  Bruno Haible  <bruno@clisp.org>
37476
37477         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
37478         include isnanl-nolibm.h.
37479
37480 2007-03-24  Bruno Haible  <bruno@clisp.org>
37481
37482         * tests/test-read-file.c (main): Don't produce spurious output for
37483         expected situations. Make the test fail if it encountered unexpected
37484         results.
37485
37486 2007-03-24  Bruno Haible  <bruno@clisp.org>
37487
37488         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
37489         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
37490
37491 2007-03-24  Bruno Haible  <bruno@clisp.org>
37492
37493         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
37494
37495 2007-03-24  Bruno Haible  <bruno@clisp.org>
37496
37497         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
37498         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
37499
37500         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
37501         * modules/utf8-ucs4: Turn into a symbolic link to module
37502         unistr/u8-mbtouc.
37503
37504         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
37505         utf8-ucs4-unsafe.
37506         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
37507         unistr/u8-mbtouc-unsafe.
37508
37509         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
37510         * modules/utf16-ucs4: Turn into a symbolic link to module
37511         unistr/u16-mbtouc.
37512
37513         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
37514         utf16-ucs4-unsafe.
37515         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
37516         unistr/u16-mbtouc-unsafe.
37517
37518         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
37519         * modules/ucs4-utf8: Turn into a symbolic link to module
37520         unistr/u8-ubtomb.
37521
37522         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
37523         * modules/ucs4-utf16: Turn into a symbolic link to module
37524         unistr/u16-ubtomb.
37525
37526 2007-03-24  Bruno Haible  <bruno@clisp.org>
37527
37528         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
37529         Enable the function only if HAVE_INLINE.
37530         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
37531         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
37532         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
37533         Enable the function only if HAVE_INLINE.
37534         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
37535         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
37536         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
37537         Enable the function only if HAVE_INLINE.
37538         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
37539         Enable the function only if HAVE_INLINE.
37540         * modules/utf8-ucs4: Update.
37541         * modules/utf8-ucs4-unsafe: Update.
37542         * modules/utf16-ucs4: Update.
37543         * modules/utf16-ucs4-unsafe: Update.
37544         * modules/ucs4-utf8: Update.
37545         * modules/ucs4-utf16: Update.
37546
37547 2007-03-24  Bruno Haible  <bruno@clisp.org>
37548
37549         * lib/utf8-ucs4.h: Remove file.
37550         * lib/utf8-ucs4-unsafe.h: Remove file.
37551         * lib/utf16-ucs4.h: Remove file.
37552         * lib/utf16-ucs4-unsafe.h: Remove file.
37553         * lib/ucs4-utf8.h: Remove file.
37554         * lib/ucs4-utf16.h: Remove file.
37555         * lib/unistr.h: Include their previous contents.
37556         * m4/utf-ucs4.m4: Remove file.
37557         * m4/ucs4-utf.m4: Remove file.
37558         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
37559         (Depends-on): Add unistr/base.
37560         (configure.ac): Remove gl_UTF_UCS4.
37561         (Makefile.am): Update.
37562         (Include): Change to unistr.h.
37563         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
37564         (Depends-on): Add unistr/base.
37565         (configure.ac): Remove gl_UTF_UCS4.
37566         (Makefile.am): Update.
37567         (Include): Change to unistr.h.
37568         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
37569         (Depends-on): Add unistr/base.
37570         (configure.ac): Remove gl_UTF_UCS4.
37571         (Makefile.am): Update.
37572         (Include): Change to unistr.h.
37573         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
37574         (Depends-on): Add unistr/base.
37575         (configure.ac): Remove gl_UTF_UCS4.
37576         (Makefile.am): Update.
37577         (Include): Change to unistr.h.
37578         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
37579         (Depends-on): Add unistr/base.
37580         (configure.ac): Remove gl_UCS4_UTF.
37581         (Makefile.am): Update.
37582         (Include): Change to unistr.h.
37583         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
37584         (Depends-on): Add unistr/base.
37585         (configure.ac): Remove gl_UCS4_UTF.
37586         (Makefile.am): Update.
37587         (Include): Change to unistr.h.
37588         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
37589         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
37590         utf8-ucs4-unsafe.h.
37591         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
37592         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
37593         utf16-ucs4-unsafe.h.
37594         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
37595         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
37596         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
37597         * lib/unistr/u8-strchr.c: Likewise.
37598         * lib/unistr/u8-strrchr.c: Likewise.
37599         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
37600         * lib/unistr/u16-strchr.c: Likewise.
37601         * lib/unistr/u16-strrchr.c: Likewise.
37602         * lib/striconveh.c: Update.
37603         * lib/linebreak.c: Update.
37604
37605 2007-03-24  Bruno Haible  <bruno@clisp.org>
37606
37607         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
37608         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
37609
37610 2007-03-22  Bruno Haible  <bruno@clisp.org>
37611
37612         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
37613
37614 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
37615
37616         * MODULES.html.sh (File system functions): New module write-any-file.
37617         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
37618         * m4/write-any-file.m4: New files.
37619
37620 2007-03-23  Eric Blake  <ebb9@byu.net>
37621
37622         * gnulib-tool: Rearrange space-tab sequences, since some editors
37623         like to eat them.
37624
37625 2007-03-23  Eric Blake  <ebb9@byu.net>
37626
37627         * lib/version-etc.c (version_etc_va): Update license wording to
37628         be more concise.  Recommended by Richard Stallman.
37629
37630 2007-03-22  Bruno Haible  <bruno@clisp.org>
37631
37632         * lib/poll.c (MSG_PEEK): New fallback definition.
37633
37634 2007-03-22  Bruno Haible  <bruno@clisp.org>
37635
37636         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
37637         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
37638         (main): Update.
37639         Fixes a compilation error on BeOS.
37640
37641 2007-03-22  Bruno Haible  <bruno@clisp.org>
37642
37643         * modules/frexpl-tests: New file.
37644         * tests/test-frexpl.c: New file.
37645
37646         * modules/frexpl: New file.
37647         * m4/frexpl.m4: New file.
37648         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
37649         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
37650         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
37651         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
37652         (Depends-on): Add frexpl. Remove isnanl-nolibm.
37653         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
37654
37655 2007-03-22  Bruno Haible  <bruno@clisp.org>
37656
37657         * lib/frexpl.c: Share code with lib/frexp.c.
37658         * modules/mathl (Files): Add lib/frexp.c.
37659         (Depends-on): Add isnanl-nolibm.
37660
37661 2007-03-22  Bruno Haible  <bruno@clisp.org>
37662
37663         * modules/printf-frexp (Files): Add m4/frexp.m4.
37664         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
37665         only if the found frexp function actually works.
37666
37667 2007-03-22  Bruno Haible  <bruno@clisp.org>
37668
37669         * lib/frexp.c: Remove older implementation that uses divisions.
37670
37671 2007-03-21  Bruno Haible  <bruno@clisp.org>
37672
37673         * modules/frexp-tests: New file.
37674         * tests/test-frexp.c: New file.
37675
37676         * modules/frexp: New file.
37677         * lib/frexp.c: New file.
37678         * m4/frexp.m4: New file.
37679         * lib/math_.h (frexp): New declaration.
37680         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
37681         REPLACE_FREXP.
37682         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
37683
37684 2007-03-21  Bruno Haible  <bruno@clisp.org>
37685
37686         * modules/isnanl-tests: New file.
37687         * tests/test-isnanl.c: New file.
37688
37689         * modules/isnanl: New file.
37690         * lib/isnanl.h: New file.
37691         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
37692         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
37693         gl_FUNC_ISNANL_WORKS.
37694         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
37695         New macros.
37696
37697 2007-03-21  Bruno Haible  <bruno@clisp.org>
37698
37699         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
37700         lib/isnanl.h.
37701         (Include): Update.
37702         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
37703         * lib/vasnprintf.c: Update.
37704         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
37705         tests/test-isnanl.h, remove tests/test-isnanl.c.
37706         (Makefile.am): Update.
37707         * tests/test-isnanl-nolibm.c: New file.
37708         * tests/test-isnanl.h: New file.
37709         * tests/test-isnanl.c: Remove file.
37710
37711 2007-03-21  Jim Meyering  <jim@meyering.net>
37712
37713         When trying to open ".", treat ESTALE like EACCES.
37714         * lib/savewd.c (savewd_save): Resort to forking not just upon
37715         failure with EACCES, but also when errno is ESTALE.
37716
37717 2007-03-20  Bruno Haible  <bruno@clisp.org>
37718
37719         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
37720         Needed on AIX 5.1. Reported by Matthew Woehlke.
37721
37722 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37723
37724         Suggestions by Bruno Haible:
37725         * lib/acl-internal.h: Include "gettext.h" rather than rolling
37726         our own.
37727         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
37728         * modules/acl (Depends-on): Add gettext.
37729
37730 2007-03-19  Bruno Haible  <bruno@clisp.org>
37731
37732         * modules/iconvme: Remove file.
37733         * lib/iconvme.h: Remove file.
37734         * lib/iconvme.c: Remove file.
37735         * m4/iconvme.m4: Remove file.
37736
37737 2007-03-19  Bruno Haible  <bruno@clisp.org>
37738
37739         * doc/relocatable-maint.texi: Break long shell script line.
37740         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
37741
37742 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37743
37744         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
37745         handle file_has_acl.
37746         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
37747         * lib/acl.c: Move header inclusions and related macro defns into
37748         lib/acl-internal.h.
37749         (S_ISLNK): Remove defn, since that's now done for us.
37750         (file_has_acl): Move to lib/file-has-acl.c.
37751         Call acl_trivial if available.  This is the crucial part of the fix.
37752         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
37753         shared within the library.  Rewrite a bit, partly to make it compatible
37754         with the GNU coding style.
37755         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
37756         Remove unnecessary double-quotes.
37757         Don't test for acl_to_text; the build will catch that.
37758         Replace acl_entries if it doesn't exist and it is needed.
37759         Check for -lsec and acl_trivial (as used on Solaris 10).
37760         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
37761         lib/file-has-acl.c.
37762         (Depends-on): Add sys_stat, for S_ISLNK.
37763
37764 2007-03-19  Ben Pfaff  <blp@gnu.org>
37765
37766         * doc/gnulib.texi: Fix typos.
37767         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
37768
37769 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
37770
37771         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
37772         If size is zero here, buf must be zero.
37773
37774 2007-03-19  Simon Josefsson  <simon@josefsson.org>
37775
37776         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
37777         <bruno@clisp.org>.
37778
37779 2007-03-18  Bruno Haible  <bruno@clisp.org>
37780
37781         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
37782         Suggested by Eric Blake.
37783
37784 2007-03-18  Ben Pfaff  <blp@gnu.org>
37785
37786         * doc/relocatable.texi: Recommend using as prefix a directory
37787         that does not exist and will never be created.  Based on
37788         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
37789         and others.
37790
37791 2007-03-17  Bruno Haible  <bruno@clisp.org>
37792
37793         * lib/fchownat.c: Include lchown.h.
37794
37795 2007-03-17  Bruno Haible  <bruno@clisp.org>
37796
37797         Fix endless loop when the given allocated size was > INT_MAX.
37798         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
37799         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
37800         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
37801         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
37802         * lib/sprintf.c (sprintf): Likewise.
37803
37804 2007-03-17  Bruno Haible  <bruno@clisp.org>
37805
37806         * tests/test-argp-2.sh (func_compare): Output a context diff.
37807
37808 2007-03-17  Bruno Haible  <bruno@clisp.org>
37809
37810         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
37811         locale's decimal-point character.
37812
37813 2007-03-17  Bruno Haible  <bruno@clisp.org>
37814
37815         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
37816         before comparing it. Needed because on some platforms (e.g. x86) a
37817         'long double' occupies less bytes than sizeof (long double).
37818
37819 2007-03-17  Bruno Haible  <bruno@clisp.org>
37820
37821         * tests/test-crc.c (main): Make printf statements 64-bit clean.
37822         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
37823         * tests/test-getaddrinfo.c (simple): Likewise.
37824         * tests/test-read-file.c (main): Likewise.
37825
37826 2007-03-17  Bruno Haible  <bruno@clisp.org>
37827
37828         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
37829
37830 2007-03-17  Bruno Haible  <bruno@clisp.org>
37831
37832         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
37833         unused variable.
37834
37835 2007-03-17  Bruno Haible  <bruno@clisp.org>
37836
37837         * tests/test-c-strcasecmp.c: Include c-strcase.h.
37838         * tests/test-c-strncasecmp.c: Likewise.
37839
37840 2007-03-17  Bruno Haible  <bruno@clisp.org>
37841
37842         * modules/stdlib (Depends-on): Add unistd.
37843         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
37844         Needed for MacOS X 10.3.
37845
37846 2007-03-17  Bruno Haible  <bruno@clisp.org>
37847
37848         * lib/unistr/u-strdup.h: Include <stdlib.h>.
37849
37850 2007-03-17  Bruno Haible  <bruno@clisp.org>
37851
37852         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
37853
37854 2007-03-17  Bruno Haible  <bruno@clisp.org>
37855
37856         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
37857         to reflect files copied from gnulib (with or without modifications).
37858         Suggested by Jim Meyering.
37859
37860 2007-03-17  Eric Blake  <ebb9@byu.net>
37861
37862         * NEWS: Document stdlib change from 2007-02-18.
37863
37864 2007-03-17  Jim Meyering  <jim@meyering.net>
37865
37866         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
37867         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
37868         someone uses a name containing shell meta-characters.
37869         Reported by Alfred M. Szmidt.
37870
37871         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
37872
37873 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
37874
37875         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
37876         and copy gettext configuration files only if configure.ac contains
37877         a use of AM_GNU_GETTEXT_VERSION.
37878
37879 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
37880
37881         * build-aux/bootstrap (gnulib_name): New variable.
37882         (gnulib_tool_options): Use it.
37883
37884 2007-03-13  Simon Josefsson  <simon@josefsson.org>
37885
37886         * tests/test-des.c: Use new namespace.
37887
37888 2007-03-15  Bruno Haible  <bruno@clisp.org>
37889
37890         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
37891         Reported by James Youngman <jay@gnu.org>.
37892
37893 2007-03-15  Bruno Haible  <bruno@clisp.org>
37894
37895         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
37896         declared prototype. Needed with cc on OSF/1 5.1.
37897
37898 2007-03-15  Bruno Haible  <bruno@clisp.org>
37899
37900         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
37901         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
37902         (struct gl_list_implementation): Add dispose_fn argument to the
37903         'create_empty', 'create' methods.
37904         (struct gl_list_impl_base): Add field 'dispose_fn'.
37905         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
37906         argument.
37907         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
37908         dispose_fn argument.
37909         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
37910         dispose_fn on the dropped values.
37911         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
37912         dispose_fn argument.
37913         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
37914         dropped values.
37915         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
37916         (gl_tree_remove_node): Call dispose_fn on the dropped value.
37917         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
37918         (gl_tree_remove_node): Call dispose_fn on the dropped value.
37919         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
37920         argument.
37921         (gl_tree_list_free): Call dispose_fn on the dropped values.
37922         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
37923         the dropped values.
37924         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
37925         Add dispose_fn argument.
37926         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
37927         Call dispose_fn on the dropped values.
37928         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
37929         Add dispose_fn argument.
37930         (gl_sublist_create): Initialize the 'dispose_fn' field.
37931         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
37932         * tests/test-array_list.c (main): Update.
37933         * tests/test-carray_list.c (main): Update.
37934         * tests/test-avltree_list.c (main): Update.
37935         * tests/test-rbtree_list.c (main): Update.
37936         * tests/test-avltreehash_list.c (main): Update.
37937         * tests/test-rbtreehash_list.c (main): Update.
37938         * tests/test-linked_list.c (main): Update.
37939         * tests/test-linkedhash_list.c (main): Update.
37940         * tests/test-array_oset.c (main): Update.
37941
37942 2007-03-15  Bruno Haible  <bruno@clisp.org>
37943
37944         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
37945         (gl_oset_create_empty): Add dispose_fn argument.
37946         (struct gl_oset_implementation): Add dispose_fn argument to
37947         'create_empty' method.
37948         (struct gl_oset_impl_base): Add dispose_fn field.
37949         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
37950         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
37951         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
37952         values.
37953         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
37954         (gl_tree_oset_free): Call dispose_fn on the dropped values.
37955         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
37956         dropped value.
37957         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
37958         dropped value.
37959         * tests/test-array_oset.c (main): Update.
37960         * tests/test-avltree_oset.c (main): Update.
37961         * tests/test-rbtree_oset.c (main): Update.
37962         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
37963
37964 2007-03-13  Bruno Haible  <bruno@clisp.org>
37965
37966         * tests/test-stdbool.c (i): Update after last patch.
37967
37968 2007-03-12  Bruno Haible  <bruno@clisp.org>
37969
37970         * lib/quotearg.c: Include <wctype.h> early, before the definition of
37971         the iswprint macro. Needed on Solaris 2.5.1.
37972
37973 2007-03-12  Bruno Haible  <bruno@clisp.org>
37974
37975         * tests/test-printf-frexp.c (main): Declare x as volatile.
37976
37977 2007-03-12  Simon Josefsson  <simon@josefsson.org>
37978
37979         * doc/gnulib.texi (Build robot for gnulib): New section.
37980
37981 2007-03-12  Jim Meyering  <jim@meyering.net>
37982
37983         * build-aux/bootstrap: New file.
37984         * build-aux/bootstrap.conf: New file, from coreutils.
37985
37986 2007-03-11  Bruno Haible  <bruno@clisp.org>
37987
37988         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
37989
37990 2007-03-12  Simon Josefsson  <simon@josefsson.org>
37991
37992         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
37993         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
37994         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
37995
37996 2007-03-11  Bruno Haible  <bruno@clisp.org>
37997
37998         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
37999         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
38000
38001 2007-03-11  Bruno Haible  <bruno@clisp.org>
38002
38003         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
38004         formula. Needed for SunPRO C 5.0.
38005
38006 2007-03-11  Bruno Haible  <bruno@clisp.org>
38007
38008         * modules/long-options (Depends-on): Add getopt.
38009
38010 2007-03-11  Bruno Haible  <bruno@clisp.org>
38011
38012         * modules/modechange (Depends-on): Add stdbool.
38013
38014 2007-03-11  Bruno Haible  <bruno@clisp.org>
38015
38016         * modules/i-ring (Depends-on): Add stdbool.
38017
38018 2007-03-11  Bruno Haible  <bruno@clisp.org>
38019
38020         * modules/gc-des (Depends-on): Add stdbool.
38021
38022 2007-03-11  Bruno Haible  <bruno@clisp.org>
38023
38024         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
38025
38026 2007-03-11  Bruno Haible  <bruno@clisp.org>
38027
38028         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
38029
38030 2007-03-11  Bruno Haible  <bruno@clisp.org>
38031
38032         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
38033
38034 2007-03-11  Bruno Haible  <bruno@clisp.org>
38035
38036         * lib/vasnprintf.c (sprintf): Undefine.
38037
38038 2007-03-11  Bruno Haible  <bruno@clisp.org>
38039
38040         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
38041         initializers in SunPRO C and Compaq C compilers.
38042
38043 2007-03-11  Bruno Haible  <bruno@clisp.org>
38044
38045         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
38046         decrementing code ANSI C compliant.
38047
38048 2007-03-11  Bruno Haible  <bruno@clisp.org>
38049
38050         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
38051         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
38052
38053 2007-03-11  Bruno Haible  <bruno@clisp.org>
38054
38055         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
38056         <stdbool.h> substitute doesn't pass.
38057
38058 2007-03-11  Bruno Haible  <bruno@clisp.org>
38059
38060         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
38061
38062 2007-03-11  Bruno Haible  <bruno@clisp.org>
38063
38064         * gnulib-tool (func_create_megatestdir): Create also an autobuild
38065         script, for submission to autobuild.josefsson.org.
38066
38067 2007-03-10  Bruno Haible  <bruno@clisp.org>
38068
38069         * modules/canonicalize-lgpl-tests: New file.
38070         * tests/test-canonicalize-lgpl.sh: New file.
38071         * tests/test-canonicalize-lgpl.c: New file.
38072
38073         * modules/c-strcase-tests: New file.
38074         * tests/test-c-strcase.sh: New file.
38075         * tests/test-c-strcasecmp.c: New file.
38076         * tests/test-c-strncasecmp.c: New file.
38077
38078         * modules/atexit-tests: New file.
38079         * tests/test-atexit.sh: New file.
38080         * tests/test-atexit.c: New file.
38081
38082 2007-03-10  Bruno Haible  <bruno@clisp.org>
38083
38084         * tests/test-binary-io.sh: Use temporary filenames that are not so
38085         likely to clash with those of other tests (in a parallel make).
38086         * tests/test-binary-io.c: Likewise.
38087
38088 2007-03-10  Bruno Haible  <bruno@clisp.org>
38089
38090         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
38091         fallback; use #error instead.
38092         Suggested by Simon Josefsson.
38093
38094 2007-03-10  Bruno Haible  <bruno@clisp.org>
38095
38096         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
38097         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
38098         first and the last.
38099
38100 2007-03-10  Bruno Haible  <bruno@clisp.org>
38101
38102         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
38103
38104 2007-03-10  Bruno Haible  <bruno@clisp.org>
38105
38106         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
38107         "make distcheck".
38108         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
38109         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
38110         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
38111
38112 2007-03-10  Bruno Haible  <bruno@clisp.org>
38113
38114         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
38115         variable.
38116         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
38117         variable.
38118
38119 2007-03-09  Eric Blake  <ebb9@byu.net>
38120         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
38121
38122         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
38123         types are not being provided by gnulib.
38124         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
38125         types are supported.
38126
38127 2007-03-10  Bruno Haible  <bruno@clisp.org>
38128
38129         * lib/stdio_.h (__attribute__): New macro.
38130         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
38131         vsprintf): Specify __attribute__ __format__ for GCC.
38132         Suggested by Eric Blake.
38133
38134 2007-03-09  Bruno Haible  <bruno@clisp.org>
38135
38136         * modules/printf-posix-tests: New file.
38137         * tests/test-printf-posix.sh: New file.
38138         * tests/test-printf-posix.c: New file.
38139
38140         * modules/printf-posix: New file.
38141         * lib/printf.c: New file.
38142         * m4/printf-posix-rpl.m4: New file.
38143         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
38144         REPLACE_PRINTF.
38145         * lib/stdio_.h (printf): New declaration.
38146         (format, __format__, ____printf____, ____scanf____, ____strftime____,
38147         ____strfmon____): New macros.
38148         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
38149         REPLACE_PRINTF.
38150
38151 2007-03-09  Bruno Haible  <bruno@clisp.org>
38152
38153         * tests/test-vasnprintf-posix2.sh: New file.
38154         * tests/test-vasnprintf-posix2.c: New file.
38155         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
38156         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
38157         (Makefile.am): Activate test-vasnprintf-posix2.sh.
38158
38159         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
38160         a locale dependent decimal point, rather than always '.'.
38161
38162 2007-03-09  Eric Blake  <ebb9@byu.net>
38163
38164         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
38165         spite of platforms like Tandem/NSK that define it to -1.
38166
38167 2007-03-08  Bruno Haible  <bruno@clisp.org>
38168
38169         * modules/vprintf-posix-tests: New file.
38170         * tests/test-vprintf-posix.sh: New file.
38171         * tests/test-vprintf-posix.c: New file.
38172         * tests/test-printf-posix.h: New file.
38173
38174         * modules/vprintf-posix: New file.
38175         * lib/vprintf.c: New file.
38176         * m4/vprintf-posix.m4: New file.
38177         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
38178         REPLACE_VPRINTF.
38179         * lib/stdio_.h (vprintf): New declaration.
38180         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
38181         REPLACE_VPRINTF.
38182
38183 2007-03-08  Bruno Haible  <bruno@clisp.org>
38184
38185         * modules/fprintf-posix-tests: New file.
38186         * tests/test-fprintf-posix.sh: New file.
38187         * tests/test-fprintf-posix.c: New file.
38188
38189         * modules/fprintf-posix: New file.
38190         * lib/fprintf.c: New file.
38191         * m4/fprintf-posix.m4: New file.
38192         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
38193         REPLACE_FPRINTF.
38194         * lib/stdio_.h (fprintf): New declaration.
38195         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
38196         REPLACE_FPRINTF.
38197
38198 2007-03-08  Bruno Haible  <bruno@clisp.org>
38199
38200         * modules/vfprintf-posix-tests: New file.
38201         * tests/test-vfprintf-posix.sh: New file.
38202         * tests/test-vfprintf-posix.c: New file.
38203         * tests/test-fprintf-posix.h: New file.
38204         * tests/test-fprintf-posix.out: New file.
38205
38206         * modules/vfprintf-posix: New file.
38207         * lib/vfprintf.c: New file.
38208         * m4/vfprintf-posix.m4: New file.
38209         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
38210         REPLACE_VFPRINTF.
38211         * lib/stdio_.h (vfprintf): New declaration.
38212         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
38213         REPLACE_VFPRINTF.
38214
38215 2007-03-08  Bruno Haible  <bruno@clisp.org>
38216
38217         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
38218
38219 2007-03-08  Bruno Haible  <bruno@clisp.org>
38220
38221         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
38222         instead of 'expr' invocations.
38223         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
38224         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
38225         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
38226         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
38227         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
38228         Suggested by Paul Eggert.
38229
38230 2007-03-08  Bruno Haible  <bruno@clisp.org>
38231
38232         * modules/fseterr-tests: New file.
38233         * tests/test-fseterr.c: New file.
38234
38235         * modules/fseterr: New file.
38236         * lib/fseterr.h: New file.
38237         * lib/fseterr.c: New file.
38238
38239 2007-03-08  Bruno Haible  <bruno@clisp.org>
38240
38241         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
38242         * lib/getopt_.h: Likewise.
38243         * lib/mbswidth.h: Likewise.
38244         * lib/setenv.h: Likewise.
38245         * lib/vasnprintf.h: Likewise.
38246         * lib/vasprintf.h: Likewise.
38247         * lib/verror.h: Likewise.
38248         * lib/xsetenv.h: Likewise.
38249         * lib/xvasprintf.h: Likewise.
38250
38251 2007-03-08  Jim Meyering  <jim@meyering.net>
38252
38253         * users.txt: Add parted.
38254
38255         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
38256
38257 2007-03-07  Bruno Haible  <bruno@clisp.org>
38258
38259         * m4/printf.m4: Make the shell script snippets copy&pastable.
38260
38261 2007-03-02  Bruno Haible  <bruno@clisp.org>
38262
38263         * lib/netinet_in_.h: New file.
38264         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
38265         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
38266         * modules/netinet_in (Files): Add lib/netinet_in_.h.
38267         (Depends-on): Add absolute-header.
38268         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
38269         into netinet/in.h.
38270
38271 2007-03-03  Bruno Haible  <bruno@clisp.org>
38272
38273         * lib/sys_select_.h: New file.
38274         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
38275         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
38276         * modules/sys_select (Files): Add lib/sys_select_.h.
38277         (Depends-on): Add absolute-header.
38278         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
38279         into sys/select.h.
38280
38281 2007-03-02  Bruno Haible  <bruno@clisp.org>
38282
38283         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
38284         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
38285         values.
38286         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
38287         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
38288         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
38289         * modules/sys_socket (Depends-on): Add absolute-header.
38290         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
38291         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
38292         (Include): Remove requirement of inclusion of <sys/types.h>.
38293
38294 2007-03-02  Bruno Haible  <bruno@clisp.org>
38295
38296         * lib/byteswap_.h (bswap_32): Fix formula.
38297
38298 2007-03-06  Bruno Haible  <bruno@clisp.org>
38299
38300         * modules/sprintf-posix-tests: New file.
38301         * tests/test-sprintf-posix.c: New file.
38302
38303         * modules/sprintf-posix: New file.
38304         * lib/sprintf.c: New file.
38305         * m4/sprintf-posix.m4: New file.
38306         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
38307         REPLACE_SPRINTF.
38308         * lib/stdio_.h (sprintf): New declaration.
38309         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
38310         REPLACE_SPRINTF.
38311
38312 2007-03-06  Bruno Haible  <bruno@clisp.org>
38313
38314         * modules/vsprintf-posix-tests: New file.
38315         * tests/test-vsprintf-posix.c: New file.
38316         * tests/test-sprintf-posix.h: New file.
38317
38318         * modules/vsprintf-posix: New file.
38319         * lib/vsprintf.c: New file.
38320         * m4/vsprintf-posix.m4: New file.
38321         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
38322         REPLACE_VSPRINTF.
38323         * lib/stdio_.h (vsprintf): New declaration.
38324         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
38325         REPLACE_VSPRINTF.
38326
38327 2007-03-06  Bruno Haible  <bruno@clisp.org>
38328
38329         * modules/vsnprintf (Depend-on): Remove minmax.
38330
38331 2007-03-06  Bruno Haible  <bruno@clisp.org>
38332
38333         * modules/snprintf-posix-tests: New file.
38334         * tests/test-snprintf-posix.c: New file.
38335
38336         * modules/snprintf-posix: New file.
38337         * m4/snprintf-posix.m4: New file.
38338         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
38339         gl_FUNC_SNPRINTF.
38340         (gl_FUNC_SNPRINTF): Invoke it.
38341         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
38342         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
38343         is set.
38344         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
38345
38346 2007-03-06  Bruno Haible  <bruno@clisp.org>
38347
38348         * modules/vsnprintf-posix-tests: New file.
38349         * tests/test-vsnprintf-posix.c: New file.
38350         * tests/test-snprintf-posix.h: New file.
38351
38352         * modules/vsnprintf-posix: New file.
38353         * m4/vsnprintf-posix.m4: New file.
38354         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
38355         gl_FUNC_VSNPRINTF.
38356         (gl_FUNC_VSNPRINTF): Invoke it.
38357         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
38358         * lib/stdio_.h (vsnprintf): Define as a replacement if
38359         REPLACE_VSNPRINTF is set.
38360         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
38361
38362 2007-03-06  Bruno Haible  <bruno@clisp.org>
38363
38364         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
38365         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
38366
38367 2007-03-06  Bruno Haible  <bruno@clisp.org>
38368
38369         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
38370         (asinl): Declare also if HAVE_DECL_ASINL is set.
38371         (atanl): Declare also if HAVE_DECL_ATANL is set.
38372         (ceill): Declare also if HAVE_DECL_CEILL is set.
38373         (cosl): Declare also if HAVE_DECL_COSL is set.
38374         (expl): Declare also if HAVE_DECL_EXPL is set.
38375         (floorl): Declare also if HAVE_DECL_FLOORL is set.
38376         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
38377         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
38378         (logl): Declare also if HAVE_DECL_LOGL is set.
38379         (sinl): Declare also if HAVE_DECL_SINL is set.
38380         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
38381         (tanl): Declare also if HAVE_DECL_TANL is set.
38382         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
38383         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
38384         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
38385         declaration of frexpl, ldexpl.
38386         * modules/printf-frexpl (Depends-on): Add math.
38387         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
38388
38389 2007-03-05  Bruno Haible  <bruno@clisp.org>
38390
38391         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
38392         frexpl and ldexpl are declared.
38393         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
38394
38395 2007-03-05  Bruno Haible  <bruno@clisp.org>
38396
38397         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
38398         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
38399
38400 2007-03-05  Bruno Haible  <bruno@clisp.org>
38401
38402         * lib/stdio_.h: Include <stddef.h>.
38403
38404 2007-03-05  Bruno Haible  <bruno@clisp.org>
38405
38406         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
38407
38408 2007-03-05  Bruno Haible  <bruno@clisp.org>
38409
38410         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
38411         NetBSD 4, from Ralf Wildenhues.
38412
38413 2007-03-04  Bruno Haible  <bruno@clisp.org>
38414
38415         * lib/vasprintf.h: Update #if logic for the case when the functions
38416         exist but are overridden.
38417
38418 2007-03-04  Bruno Haible  <bruno@clisp.org>
38419
38420         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
38421         implementations: glibc-2.4 and MacOS X 10.3.
38422         * tests/test-vasnprintf-posix.c (test_function): Test also the case
38423         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
38424         * tests/test-vasprintf-posix.c (test_function): Likewise.
38425
38426 2007-03-04  Bruno Haible  <bruno@clisp.org>
38427
38428         * modules/vasprintf-posix-tests: New file.
38429         * tests/test-vasprintf-posix.c: New file.
38430
38431         * modules/vasprintf-posix: New file.
38432         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
38433         defined.
38434         * m4/vasprintf-posix.m4: New file.
38435         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
38436         gl_FUNC_VASPRINTF.
38437         (gl_FUNC_VASPRINTF): Invoke it.
38438         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
38439         here.
38440         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
38441
38442 2007-03-04  Bruno Haible  <bruno@clisp.org>
38443
38444         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
38445         REPLACE_GETTIMEOFDAY.
38446         * modules/sys_time (Makefile.am): Likewise.
38447         * m4/sys_time_h.m4: Likewise.
38448         * m4/gettimeofday.m4: Likewise.
38449
38450 2007-03-04  Bruno Haible  <bruno@clisp.org>
38451
38452         * modules/vasnprintf-posix-tests: New file.
38453         * tests/test-vasnprintf-posix.c: New file.
38454
38455         * modules/vasnprintf-posix: New file.
38456         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
38457         printf-frexpl.h.
38458         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
38459         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
38460         REPLACE_VASNPRINTF is defined.
38461         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
38462         gl_FUNC_VASNPRINTF.
38463         (gl_FUNC_VASNPRINTF): Invoke it.
38464         * m4/vasnprintf-posix.m4: New file.
38465         * m4/printf.m4: New file.
38466
38467 2007-03-04  Bruno Haible  <bruno@clisp.org>
38468
38469         Compile progreloc.c only if --enable-relocatable is specified.
38470         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
38471         if --enable-relocatable was specified.
38472         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
38473         lib_SOURCES.
38474
38475 2007-03-04  Jim Meyering  <jim@meyering.net>
38476
38477         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
38478         Use it consistently, rather than enumerating errno constants.
38479
38480 2007-03-04  Bruno Haible  <bruno@clisp.org>
38481
38482         * modules/xvasprintf-tests: New file.
38483         * tests/test-xvasprintf.c: New file.
38484
38485         * modules/vasprintf-tests: New file.
38486         * tests/test-vasprintf.c: New file.
38487
38488         * modules/vasnprintf-tests: New file.
38489         * tests/test-vasnprintf.c: New file.
38490
38491         * modules/vsnprintf-tests: New file.
38492         * tests/test-vsnprintf.c: New file.
38493
38494         * modules/snprintf-tests: New file.
38495         * tests/test-snprintf.c: New file.
38496
38497 2007-03-04  Bruno Haible  <bruno@clisp.org>
38498
38499         Compile relocatable.c only if --enable-relocatable is specified.
38500         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
38501         gl_RELOCATABLE_LIBRARY.
38502         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
38503         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
38504         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
38505         gl_RELOCATABLE_LIBRARY.
38506         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
38507         (Makefile.am): Remove lib_SOURCES.
38508         * modules/relocatable-lib-lgpl (configure.ac): Invoke
38509         gl_RELOCATABLE_LIBRARY.
38510         (Makefile.am): Remove lib_SOURCES.
38511         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
38512         always.
38513         * modules/relocatable-prog-wrapper (configure.ac): Invoke
38514         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
38515
38516 2007-03-04  Bruno Haible  <bruno@clisp.org>
38517
38518         * modules/argmatch-tests: New file.
38519         * tests/test-argmatch.c: New file.
38520
38521         * tests/test-allocsa.c (main): Halve the number of loop runs.
38522
38523         * modules/alloca-opt-tests: New file.
38524         * tests/test-alloca-opt.c: New file.
38525
38526 2007-03-04  Jim Meyering  <jim@meyering.net>
38527
38528         Work around difference between Linux ACLs and Solaris 10 ZFS.
38529         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
38530         for EINVAL.
38531
38532 2007-03-03  Bruno Haible  <bruno@clisp.org>
38533
38534         * modules/relocatable-prog (Depends-on): Add back progreloc's
38535         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
38536
38537 2007-03-03  Bruno Haible  <bruno@clisp.org>
38538
38539         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
38540         * modules/relocatable-lib: New file.
38541
38542 2007-03-03  Bruno Haible  <bruno@clisp.org>
38543
38544         * modules/relocatable-prog: Renamed from modules/relocatable.
38545         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
38546
38547 2007-03-03  Bruno Haible  <bruno@clisp.org>
38548
38549         * modules/relocatable-script (Files): Add doc/relocatable.texi,
38550         m4/relocatable-lib.m4.
38551         (Depends-on): Remove 'relocatable'.
38552         (configure.ac): Add gl_RELOCATABLE_NOP.
38553
38554 2007-03-03  Bruno Haible  <bruno@clisp.org>
38555
38556         * modules/relocatable-prog-wrapper: New file.
38557         * modules/relocatable (Depends-on): Add it. Remove all other
38558         dependencies except progname.
38559         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
38560
38561         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
38562         (gl_FUNC_STRERROR): Nop.
38563         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
38564
38565         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
38566         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
38567
38568         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
38569         (gl_FUNC_READLINK): Update.
38570
38571         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
38572
38573 2007-03-03  Bruno Haible  <bruno@clisp.org>
38574
38575         * lib/xreadlink.c: Include <unistd.h> unconditionally.
38576         * modules/xreadlink (Depends-on): Add unistd.
38577         * modules/xreadlink-with-size (Depends-on): Likewise.
38578
38579 2007-03-03  Bruno Haible  <bruno@clisp.org>
38580
38581         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
38582         extracted from gt_FUNC_SETENV.
38583         (gt_FUNC_SETENV): Remove macro.
38584         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
38585         remove gt_FUNC_SETENV.
38586
38587 2007-03-03  Bruno Haible  <bruno@clisp.org>
38588
38589         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
38590         ENABLE_RELOCATABLE here.
38591         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
38592
38593 2007-03-03  Bruno Haible  <bruno@clisp.org>
38594
38595         * modules/rbtreehash-list-tests (Depends-on): Add progname.
38596         * tests/test-rbtreehash_list.c: Include progname.h.
38597         (main): Call set_program_name.
38598
38599         * modules/rbtree-oset-tests (Depends-on): Add progname.
38600         * tests/test-rbtree_oset.c: Include progname.h.
38601         (main): Call set_program_name.
38602
38603         * modules/rbtree-list-tests (Depends-on): Add progname.
38604         * tests/test-rbtree_list.c: Include progname.h.
38605         (main): Call set_program_name.
38606
38607         * modules/linked-list-tests (Depends-on): Add progname.
38608         * tests/test-linked_list.c: Include progname.h.
38609         (main): Call set_program_name.
38610
38611 2007-03-03  Bruno Haible  <bruno@clisp.org>
38612
38613         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
38614         All uses of __restrict changed to _Restrict_.
38615         * lib/glob_.h (__restrict): Remove macro.
38616
38617 2007-03-02  Bruno Haible  <bruno@clisp.org>
38618
38619         * modules/gettext (configure.ac): Require gettext infrastructure
38620         from version 0.16.1.
38621
38622 2007-03-02  Bruno Haible  <bruno@clisp.org>
38623
38624         * modules/linkedhash-list-tests (Depends-on): Add progname.
38625         * tests/test-linkedhash_list.c: Include progname.h.
38626         (main): Call set_program_name.
38627
38628         * modules/carray-list-tests (Depends-on): Add progname.
38629         * tests/test-carray_list.c: Include progname.h.
38630         (main): Call set_program_name.
38631
38632         * modules/avltreehash-list-tests (Depends-on): Add progname.
38633         * tests/test-avltreehash_list.c: Include progname.h.
38634         (main): Call set_program_name.
38635
38636         * modules/avltree-oset-tests (Depends-on): Add progname.
38637         * tests/test-avltree_oset.c: Include progname.h.
38638         (main): Call set_program_name.
38639
38640         * modules/avltree-list-tests (Depends-on): Add progname.
38641         * tests/test-avltree_list.c: Include progname.h.
38642         (main): Call set_program_name.
38643
38644         * modules/array-oset-tests (Depends-on): Add progname.
38645         * tests/test-array_oset.c: Include progname.h.
38646         (main): Call set_program_name.
38647
38648         * modules/array-list-tests (Depends-on): Add progname.
38649         * tests/test-array_list.c: Include progname.h.
38650         (main): Call set_program_name.
38651
38652         * modules/argp-tests (Depends-on): Add progname.
38653         * tests/test-argp.c: Include argp.h first. Include progname.h.
38654         (main): Call set_program_name.
38655
38656 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
38657
38658         * doc/gnulib-tool.texi (Initial import): Reword description of
38659         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
38660         limited effect even if defined after the first system include.
38661
38662 2007-03-01  Bruno Haible  <bruno@clisp.org>
38663
38664         * build-aux/config.libpath: Update to libtool-1.5.22.
38665         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
38666
38667 2007-03-01  Bruno Haible  <bruno@clisp.org>
38668
38669         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
38670         foo_CFLAGS.
38671         Reported by Ralf Wildenhues.
38672
38673 2007-03-01  Bruno Haible  <bruno@clisp.org>
38674
38675         * build-aux/install-reloc: Remove object files left over by some
38676         compilers.
38677         Reported by Ralf Wildenhues.
38678
38679 2007-03-01  Bruno Haible  <bruno@clisp.org>
38680
38681         * build-aux/install-reloc: Break long lines.
38682
38683 2007-03-01  Bruno Haible  <bruno@clisp.org>
38684
38685         * doc/relocatable.texi: Document that it may not work on OpenBSD.
38686         Reported by Ralf Wildenhues.
38687
38688 2007-03-01  Bruno Haible  <bruno@clisp.org>
38689
38690         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
38691         include ordering constraints.
38692
38693 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
38694
38695         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
38696         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
38697         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
38698         as another example.
38699         * lib/time_.h: Fix misspelling.
38700         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
38701         Require gl_HEADER_TIME_H_DEFAULTS.
38702         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
38703         * m4/time_r.m4 (gl_TIME_R): Likewise.
38704         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
38705
38706 2007-03-01  Bruno Haible  <bruno@clisp.org>
38707
38708         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
38709         * m4/utimens.m4 (gl_UTIMENS): Likewise.
38710
38711 2007-03-01  Jim Meyering  <jim@meyering.net>
38712
38713         * modules/xreadlink (Maintainer): Add my name.
38714         * modules/xreadlink-with-size (Depends-on): Alphabetize.
38715
38716 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
38717             Bruno Haible  <bruno@clisp.org>
38718
38719         * build-aux/install-reloc: Compile also c-ctype.c.
38720         * build-aux/relocatable.sh.in: New file.
38721         * doc/relocatable.texi: New file.
38722         * doc/relocatable-maint.texi: New file.
38723         * doc/gnulib.texi: Include relocatable-maint.texi.
38724         * lib/progreloc.c: Include unistd.h unconditionally.
38725         * lib/relocwrapper.c: Include unistd.h unconditionally.
38726         Include c-ctype.h.
38727         (add_dotbin): Use c_tolower.
38728         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
38729         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
38730         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
38731         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
38732         to m4/relocatable-lib.m4.
38733         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
38734         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
38735         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
38736         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
38737         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
38738         * modules/relocatable: New file.
38739         * modules/relocatable-lib: New file.
38740         * modules/relocatable-script: New file.
38741
38742 2007-02-28  Bruno Haible  <bruno@clisp.org>
38743
38744         Import --enable-relocatable infrastructure.
38745         * build-aux/config.libpath: New file, from GNU gettext.
38746         * build-aux/install-reloc: New file, from GNU gettext.
38747         * build-aux/reloc-ldflags: New file, from GNU gettext.
38748         * lib/relocatable.h: New file, from GNU gettext.
38749         * lib/relocatable.c: New file, from GNU gettext.
38750         * lib/relocwrapper.c: New file, from GNU gettext.
38751         * m4/relocatable.m4: New file, from GNU gettext.
38752
38753 2007-02-28  Bruno Haible  <bruno@clisp.org>
38754
38755         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
38756
38757         * modules/xreadlink: New file, from GNU gettext with modifications.
38758         * lib/xreadlink.c: New file, from GNU gettext.
38759         * lib/xreadlink.h: Add comments.
38760         (xreadlink): New declaration.
38761
38762         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
38763         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
38764         lib/xreadlink-with-size.c.
38765         (configure.ac): Remove gl_XREADLINK invocation.
38766         (Makefile.am): Augment lib_SOURCES.
38767         * m4/xreadlink.m4: Remove file.
38768         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
38769         (xreadlink_with_size): Renamed from xreadink.
38770         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
38771         * modules/canonicalize (Depends-on): Replace xreadlink with
38772         xreadlink-with-size.
38773         * lib/canonicalize.c (canonicalize_filename_mode): Update.
38774
38775 2007-02-25  Jim Meyering  <jim@meyering.net>
38776
38777         * build-aux/announce-gen: When complaining about excess arguments,
38778         list them.
38779
38780 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
38781
38782         * README: Document signed integer overflow situation more
38783         accurately.
38784
38785 2007-02-25  Bruno Haible  <bruno@clisp.org>
38786
38787         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
38788         'a' or 'A' conversion.
38789
38790 2007-02-25  Bruno Haible  <bruno@clisp.org>
38791
38792         * modules/filename: Renamed from modules/pathname.
38793         (Files): Replace lib/pathname.h with lib/filename.h. Replace
38794         lib/concatpath.c with lib/concat-filename.c.
38795         (Makefile.am): Update.
38796         (Include): Replace pathname.h with filename.h.
38797         * lib/filename.h: Renamed from lib/pathname.h.
38798         (concatenated_filename): Renamed from concatenated_pathname.
38799         * lib/concat-filename.c: Renamed from lib/concatpath.c.
38800         (concatenated_filename): Renamed from concatenated_pathname.
38801         * lib/findprog.c: Include filename.h instead of pathname.h.
38802         (find_in_path): Update.
38803         * lib/javacomp.c: Include filename.h instead of pathname.h.
38804         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
38805         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
38806         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
38807         is_oldgcj_14_13_usable, is_javac_usable): Update.
38808         * lib/javaexec.c: Include filename.h instead of pathname.h.
38809         (execute_java_class): Update.
38810         * modules/findprog: Update.
38811         * modules/javacomp: Update.
38812         * modules/javaexec: Update.
38813         * MODULES.html.sh (File system functions): Add 'filename', remove
38814         'pathname'.
38815
38816 2007-02-25  Bruno Haible  <bruno@clisp.org>
38817
38818         * modules/printf-frexpl-tests: New file.
38819         * tests/test-printf-frexpl.c: New file.
38820
38821         * modules/printf-frexpl: New file.
38822         * lib/printf-frexpl.h: New file.
38823         * lib/printf-frexpl.c: New file.
38824         * m4/printf-frexpl.m4: New file.
38825
38826 2007-02-25  Bruno Haible  <bruno@clisp.org>
38827
38828         * modules/printf-frexp-tests: New file.
38829         * tests/test-printf-frexp.c: New file.
38830
38831         * modules/printf-frexp: New file.
38832         * lib/printf-frexp.h: New file.
38833         * lib/printf-frexp.c: New file.
38834         * m4/printf-frexp.m4: New file.
38835
38836 2007-02-25  Bruno Haible  <bruno@clisp.org>
38837
38838         Assume automake >= 1.10 for the tests.
38839         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
38840         * modules/arctwo-tests: Likewise.
38841         * modules/argp-tests: Likewise.
38842         * modules/avltree-list-tests: Likewise.
38843         * modules/avltree-oset-tests: Likewise.
38844         * modules/avltreehash-list-tests: Likewise.
38845         * modules/carray-list-tests: Likewise.
38846         * modules/crc-tests: Likewise.
38847         * modules/des-tests: Likewise.
38848         * modules/gc-arcfour-tests: Likewise.
38849         * modules/gc-arctwo-tests: Likewise.
38850         * modules/gc-des-tests: Likewise.
38851         * modules/gc-hmac-md5-tests: Likewise.
38852         * modules/gc-hmac-sha1-tests: Likewise.
38853         * modules/gc-md2-tests: Likewise.
38854         * modules/gc-md4-tests: Likewise.
38855         * modules/gc-md5-tests: Likewise.
38856         * modules/gc-pbkdf2-sha1-tests: Likewise.
38857         * modules/gc-rijndael-tests: Likewise.
38858         * modules/gc-sha1-tests: Likewise.
38859         * modules/gc-tests: Likewise.
38860         * modules/getaddrinfo-tests: Likewise.
38861         * modules/hmac-md5-tests: Likewise.
38862         * modules/hmac-sha1-tests: Likewise.
38863         * modules/linked-list-tests: Likewise.
38864         * modules/linkedhash-list-tests: Likewise.
38865         * modules/lock-tests: Likewise.
38866         * modules/md2-tests: Likewise.
38867         * modules/md4-tests: Likewise.
38868         * modules/md5-tests: Likewise.
38869         * modules/rbtree-list-tests: Likewise.
38870         * modules/rbtree-oset-tests: Likewise.
38871         * modules/rbtreehash-list-tests: Likewise.
38872         * modules/read-file-tests: Likewise.
38873         * modules/rijndael-tests: Likewise.
38874         * modules/stdint-tests: Likewise.
38875         * modules/tls-tests: Likewise.
38876
38877 2007-02-24  Bruno Haible  <bruno@clisp.org>
38878
38879         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
38880         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
38881         function; instead check whether isnan with a double argument links.
38882         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
38883         function; instead check whether isnan with a 'long double' argument
38884         links.
38885         Reported by Eric Blake <ebb9@byu.net>.
38886
38887 2007-02-24  Bruno Haible  <bruno@clisp.org>
38888
38889         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
38890         defined.
38891         * lib/isnanl.c: Remove all code. Just include isnan.c.
38892         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
38893
38894 2007-02-25  Jim Meyering  <jim@meyering.net>
38895
38896         Avoid conflicting types for 'unsetenv' on FreeBSD.
38897         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
38898         conflicting with FreeBSD's (5.0 and 6.1) function declaration
38899         in stdlib.h.
38900
38901 2007-02-24  Bruno Haible  <bruno@clisp.org>
38902
38903         * modules/isnanl-nolibm-tests: New file.
38904         * tests/test-isnanl.c: New file.
38905
38906         * modules/isnanl-nolibm: New file.
38907         * lib/isnanl.h: New file.
38908         * lib/isnanl.c: New file.
38909         * m4/isnanl.m4: New file.
38910
38911 2007-02-24  Bruno Haible  <bruno@clisp.org>
38912
38913         * modules/isnan-nolibm-tests: New file.
38914         * tests/test-isnan.c: New file.
38915
38916         * modules/isnan-nolibm: New file.
38917         * lib/isnan.h: New file.
38918         * lib/isnan.c: New file.
38919         * m4/isnan.m4: New file.
38920
38921 2007-02-24  Bruno Haible  <bruno@clisp.org>
38922
38923         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
38924         assume that an exponent fits in 20 bits.
38925
38926 2007-02-24  Jim Meyering  <jim@meyering.net>
38927
38928         * m4/regex.m4: Update the description of the configure-time option,
38929         --without-included-regex, to state accurately what the defaults are,
38930         and perhaps to give people an idea why using this option is risky.
38931
38932 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
38933
38934         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
38935         loops on small arguments.  This attempts to avoid the problem
38936         Bruno Haible reported for AIX 4.3.2 in
38937         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
38938
38939 2007-02-23  Bruno Haible  <bruno@clisp.org>
38940
38941         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
38942         Needed for help2man.
38943
38944 2007-02-23  Karl Berry  <karl@gnu.org>
38945
38946         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
38947         exists, foo.h should be cvs-ignored, not committed.
38948
38949 2007-02-23  Eric Blake  <ebb9@byu.net>
38950
38951         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
38952         * lib/stat-time.h (includes): Likewise.
38953         * lib/utimecmp.c (includes): Likewise.
38954         * lib/utimens.h (includes): Likewise.
38955         * lib/getdate.y (includes): Also include "timespec.h" for use
38956         internal to the module.
38957         * modules/utimens (Depends-on): Revert yesterday's patch.
38958         * modules/nanosleep (Depends-on): Add missing dependency.
38959
38960 2007-02-22  Bruno Haible  <bruno@clisp.org>
38961
38962         * lib/glob.c: Don't include getlogin_r.h.
38963
38964 2007-02-22  Jim Meyering  <jim@meyering.net>
38965
38966         * modules/utimens (Depends-on): Add timespec, required for
38967         utimens.h's inclusion of timespec.h.
38968
38969 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
38970
38971         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
38972         long unreadable paths in GNU/Linux.  Problem reported by Andreas
38973         Schwab in
38974         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
38975         I'll try to think of a better way to fix the Solaris problem.
38976
38977         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
38978         like glibc; on Solaris 10, it fails with errno == EINVAL.
38979         POSIX says the behavior is unspecified if the first argument is NULL,
38980         so play it safe and never pass NULL to the system getcwd.
38981
38982 2007-02-21  Jim Meyering  <jim@meyering.net>
38983
38984         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
38985         of gettimeofday.  It would conflict with the one now always
38986         provided via sys_time_.h.  Reported by Matthew Woehlke, as
38987         an IRIX 6.5 build failure.
38988
38989 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
38990
38991         Minor fixups to port to Solaris 10 with Sun C 5.8.
38992         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
38993         * modules/getcwd (Depends-on): Add dirfd.
38994         * lib/putenv.c (putenv): #undef it.
38995         (rpl_putenv): New decl.
38996         (malloc, free): Include <stdlib.h> rather than prototyping separately.
38997
38998 2007-02-20  Bruno Haible  <bruno@clisp.org>
38999
39000         * modules/stdio-tests: New file.
39001         * tests/test-stdio.c: New file.
39002
39003         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
39004         (Depends-on): Add stdio.
39005         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
39006         (Include): Use <stdio.h> instead of vsnprintf.h.
39007         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
39008         HAVE_DECL_VSNPRINTF.
39009         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
39010
39011         * modules/snprintf (Files): Remove lib/snprintf.h.
39012         (Depends-on): Add stdio.
39013         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
39014         (Include): Use <stdio.h> instead of snprintf.h.
39015         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
39016         HAVE_DECL_SNPRINTF.
39017         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
39018         * lib/getaddrinfo.c: Likewise.
39019
39020         * modules/stdio: New file.
39021         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
39022         * lib/snprintf.h: Remove file.
39023         * lib/vsnprintf.h: Remove file.
39024         * lib/.cppi-disable: Remove snprintf.h.
39025         * m4/stdio_h.m4: New file.
39026         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
39027
39028 2007-02-20  Jim Meyering  <jim@meyering.net>
39029
39030         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
39031         used by e.g., mingw.  From Bruno Haible.
39032
39033 2007-02-19  Bruno Haible  <bruno@clisp.org>
39034
39035         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
39036         warnings.
39037         Reported by Ben Pfaff <blp@cs.stanford.edu>.
39038
39039 2007-02-19  Bruno Haible  <bruno@clisp.org>
39040
39041         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
39042         from mingw users.
39043
39044 2007-02-19  Bruno Haible  <bruno@clisp.org>
39045
39046         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
39047         warnings.
39048         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
39049
39050 2007-02-19  Jim Meyering  <jim@meyering.net>
39051
39052         Don't use FD after a successful "fdopendir (fd)".
39053         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
39054         Reset it by calling dirfd on the just-obtained DIR*.
39055
39056         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
39057         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
39058
39059 2007-02-18  Bruno Haible  <bruno@clisp.org>
39060
39061         * lib/readlink.c: Include <unistd.h>.
39062         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
39063         HAVE_READLINK.
39064         * modules/readlink (Depends-on): Add unistd.
39065         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39066         (Include): Add <unistd.h>.
39067
39068         * lib/getlogin_r.h: Remove file.
39069         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
39070         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
39071         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
39072         HAVE_DECL_GETLOGIN_R.
39073         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
39074         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39075         (Include): Use <unistd.h> instead of getlogin_r.h.
39076
39077         * lib/getcwd.h: Remove file.
39078         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
39079         * lib/xgetcwd.c: Likewise.
39080         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
39081         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
39082         * modules/getcwd (Files): Remove lib/getcwd.h.
39083         (Depends-on): Add unistd.
39084         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39085         (Include): Use <unistd.h> instad of getcwd.h.
39086
39087         * lib/ftruncate.c: Include <unistd.h> first.
39088         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
39089         Set HAVE_FTRUNCATE.
39090         * modules/ftruncate (Depends-on): Add unistd.
39091         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39092
39093         * lib/fchdir.c: Include <unistd.h> first.
39094         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
39095         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
39096         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
39097         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39098         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
39099
39100         * lib/dup2.c: Include <unistd.h> first.
39101         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
39102         HAVE_DUP2.
39103         * modules/dup2 (Depends-on): Add unistd.
39104         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39105
39106         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
39107         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
39108         REPLACE_CHOWN. Don't define chown as a macro here.
39109         * modules/chown (Depends-on): Add unistd.
39110         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
39111
39112         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
39113         Add definition for GL_LINK_WARNING.
39114         (chown, dup2): New declarations.
39115         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
39116         link warning.
39117         (ftruncate): New declaration.
39118         (getcwd): New declaration, taken from old getcwd.h.
39119         (getlogin_r): New declaration, taken from old getlogin_r.h.
39120         (readlink): New declaration.
39121         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
39122         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
39123         (gl_PREREQ_UNISTD): Remove macro.
39124         (gl_UNISTD_MODULE_INDICATOR): New macro.
39125         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
39126         many new variables. Don't set UNISTD_H.
39127         * modules/unistd (Description): Change.
39128         (Depends-on): Add link-warning.
39129         (configure.ac): Update.
39130         (Makefile.am): Create unistd.h always. Substitute many new variables
39131         into it.
39132
39133 2007-02-18  Bruno Haible  <bruno@clisp.org>
39134
39135         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
39136         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
39137         HAVE_GETSUBOPT.
39138         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
39139         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
39140         * lib/getsubopt.h: Remove file.
39141         * modules/getsubopt (Files): Remove lib/getsubopt.h.
39142         (Depends-on): Add stdlib.
39143         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
39144         (Includes): Use <stdlib.h> instead of getsubopt.h.
39145         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
39146         Set HAVE_GETSUBOPT.
39147         * lib/getsubopt.c: Don't include getsubopt.h.
39148
39149 2007-02-18  Bruno Haible  <bruno@clisp.org>
39150
39151         * modules/fchdir (Depends-on): Add dup2.
39152
39153 2007-02-18  Bruno Haible  <bruno@clisp.org>
39154
39155         * lib/stdlib_.h: Handle glibc's special invocation convention
39156         specially.
39157
39158 2007-02-18  Bruno Haible  <bruno@clisp.org>
39159
39160         * modules/stdlib-tests: New file.
39161         * tests/test-stdlib.c: New file.
39162
39163         * modules/mkstemp (Files): Remove lib/mkstemp.h.
39164         (Depends-on): Add stdlib.
39165         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
39166         (Includes): Use <stdlib.h> instead of mkstemp.h.
39167         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
39168         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
39169         * lib/mkstemp.c: Don't include mkstemp.h.
39170         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
39171         * lib/stdlib--.h: Don't include mkstemp.h.
39172
39173         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
39174         (Depends-on): Add stdlib.
39175         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
39176         (Includes): Use <stdlib.h> instead of mkdtemp.h.
39177         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
39178         HAVE_MKDTEMP.
39179         * lib/mkdtemp.c: Don't include mkdtemp.h.
39180         * lib/clean-temp.c: Don't include mkdtemp.h.
39181
39182         * modules/exit (Files): Remove lib/exit.h.
39183         (Depends-on): Add stdlib.
39184         (Makefile.am): Remove lib_SOURCES.
39185         (Include): Use <stdlib.h> instead of exit.h.
39186         * lib/argmatch.c: Don't include exit.h.
39187         * lib/execute.c: Likewise.
39188         * lib/pagealign_alloc.c: Likewise.
39189         * lib/pipe.c: Likewise.
39190         * lib/wait-process.c: Likewise.
39191         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
39192         * lib/exitfail.c: Likewise.
39193         * lib/savewd.c: Likewise.
39194         * lib/xsetenv.c: Likewise.
39195
39196         * modules/stdlib: New file.
39197         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
39198         and extra comments about mkstemp().
39199         * lib/exit.h: Remove file.
39200         * lib/mkdtemp.h: Remove file.
39201         * lib/mkstemp.h: Remove file.
39202         * m4/stdlib_h.m4: New file.
39203         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
39204
39205 2007-02-18  Bruno Haible  <bruno@clisp.org>
39206
39207         * modules/math-tests: New file.
39208         * tests/test-math.c: New file.
39209
39210         * modules/math: New file.
39211         * modules/mathl (Files): Remove lib/mathl.h.
39212         (Depends-on): Add math.
39213         (Makefile.am): Don't mention mathl.h.
39214         (Include): Use <math.h> instead of mathl.h.
39215         * lib/math_.h: New file.
39216         * lib/mathl.h: Remove file.
39217         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
39218         mathl.h.
39219         * lib/asinl.c: Likewise.
39220         * lib/atanl.c: Likewise.
39221         * lib/ceill.c: Likewise.
39222         * lib/cosl.c: Likewise.
39223         * lib/expl.c: Likewise.
39224         * lib/floorl.c: Likewise.
39225         * lib/frexpl.c: Likewise.
39226         * lib/ldexpl.c: Likewise.
39227         * lib/logl.c: Likewise.
39228         * lib/sincosl.c: Likewise.
39229         * lib/sinl.c: Likewise.
39230         * lib/sqrtl.c: Likewise.
39231         * lib/tanl.c: Likewise.
39232         * lib/trigl.c: Likewise.
39233         * m4/math_h.m4: New file.
39234         * MODULES.html.sh (Mathematics): Add math.
39235
39236 2007-02-17  Bruno Haible  <bruno@clisp.org>
39237
39238         * modules/wctype-tests: New file.
39239         * tests/test-wctype.c: New file.
39240
39241         * modules/wchar-tests: New file.
39242         * tests/test-wchar.c: New file.
39243
39244         * modules/unistd-tests: New file.
39245         * tests/test-unistd.c: New file.
39246
39247         * modules/time-tests: New file.
39248         * tests/test-time.c: New file.
39249
39250         * modules/sysexits-tests: New file.
39251         * tests/test-sysexits.c: New file.
39252
39253         * modules/sys_time-tests: New file.
39254         * tests/test-sys_time.c: New file.
39255
39256         * modules/sys_stat-tests: New file.
39257         * tests/test-sys_stat.c: New file.
39258
39259         * modules/sys_socket-tests: New file.
39260         * tests/test-sys_socket.c: New file.
39261
39262         * modules/sys_select-tests: New file.
39263         * tests/test-sys_select.c: New file.
39264
39265         * modules/string-tests: New file.
39266         * tests/test-string.c: New file.
39267
39268         * modules/stdbool-tests: New file.
39269         * tests/test-stdbool.c: New file.
39270
39271         * modules/netinet_in-tests: New file.
39272         * tests/test-netinet_in.c: New file.
39273
39274         * modules/inttypes-tests: New file.
39275         * tests/test-inttypes.c: New file.
39276
39277         * modules/fcntl-tests: New file.
39278         * tests/test-fcntl.c: New file.
39279
39280         * modules/byteswap-tests: New file.
39281         * tests/test-byteswap.c: New file.
39282
39283         * modules/arpa_inet-tests: New file.
39284         * tests/test-arpa_inet.c: New file.
39285
39286 2007-02-17  Bruno Haible  <bruno@clisp.org>
39287
39288         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
39289         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
39290         if the corresponding module is not enabled. Emit link warnings if
39291         the function is used nevertheless.
39292         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
39293         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
39294         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
39295         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
39296         * modules/inttypes (Depends-on): Add link-warning.
39297         (Makefile.am): Copy the contents of build-aux/link-warning.h into
39298         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
39299         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
39300         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
39301         * modules/imaxdiv (configure.ac): Likewise.
39302         * modules/strtoimax (configure.ac): Likewise.
39303         * modules/strtoumax (configure.ac): Likewise.
39304
39305 2007-02-17  Bruno Haible  <bruno@clisp.org>
39306
39307         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
39308         gl_STRING_MODULE_INDICATOR_DEFAULTS.
39309         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
39310         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
39311
39312 2007-02-17  Bruno Haible  <bruno@clisp.org>
39313
39314         * modules/link-warning: New file.
39315         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
39316         * lib/string_.h (GL_LINK_WARNING): Remove definition.
39317         * modules/string (Depends-on): Add link-warning.
39318         (Makefile.am): Copy the contents of build-aux/link-warning.h into
39319         string.h.
39320         * MODULES.html.sh (Support for building libraries and executables): Add
39321         link-warning.
39322
39323 2007-02-17  Bruno Haible  <bruno@clisp.org>
39324
39325         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
39326         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
39327         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
39328         long lines.
39329
39330 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
39331             Bruno Haible  <bruno@clisp.org>
39332
39333         * modules/tmpfile: New file.
39334         * lib/tmpfile.c: New file.
39335         * m4/tmpfile.m4: New file.
39336         * MODULES.html.sh (func_all_modules): New section "Input/output".
39337
39338 2007-02-15  Bruno Haible  <bruno@clisp.org>
39339
39340         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
39341         (supports_delete_on_close): New function.
39342         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
39343
39344 2007-02-14  Bruno Haible  <bruno@clisp.org>
39345
39346         * modules/mbspcasecmp-tests: New file.
39347         * tests/test-mbspcasecmp.sh: New file.
39348         * tests/test-mbspcasecmp.c: New file.
39349
39350         New module mbspcasecmp.
39351         * modules/mbspcasecmp: New file.
39352         * lib/mbspcasecmp.c: New file.
39353         * lib/string_.h (strncasecmp): Change warning message.
39354         (mbspcasecmp): New declaration.
39355         * m4/mbspcasecmp.m4: New file.
39356         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39357         GNULIB_MBSPCASECMP.
39358         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
39359         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
39360
39361 2007-02-14  Bruno Haible  <bruno@clisp.org>
39362
39363         * modules/mbsncasecmp-tests: New file.
39364         * tests/test-mbsncasecmp.sh: New file.
39365         * tests/test-mbsncasecmp.c: New file.
39366
39367         New module mbsncasecmp.
39368         * modules/mbsncasecmp: New file.
39369         * lib/mbsncasecmp.c: New file.
39370         * lib/string_.h (mbsncasecmp): New declaration.
39371         * m4/mbsncasecmp.m4: New file.
39372         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39373         GNULIB_MBSNCASECMP.
39374         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
39375         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
39376
39377 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
39378
39379         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
39380         Verify that it doesn't overlap with our flags.
39381         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
39382         do not have the desired effect in multibyte locales; instead, use
39383         mbscasecmp.
39384         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
39385         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
39386         we don't require GNU fnmatch ourselves (if our users require it, they
39387         should do so explicitly).
39388
39389         Fix regex code so it doesn't rely on strcasecmp.
39390         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
39391         Otherwise, include gnulib's langinfo.h.
39392         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
39393         undesirable behavior in non-C locales.  Instead, rely on localecharset.
39394         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
39395         * modules/regex (FILES): Remove m4/codeset.m4.
39396         (Depends-on): Add localcharset.  Remove strcase.
39397
39398 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39399
39400         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
39401         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
39402
39403 2007-02-13  Bruno Haible  <bruno@clisp.org>
39404
39405         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
39406         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
39407
39408 2007-02-12  Bruno Haible  <bruno@clisp.org>
39409
39410         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
39411         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
39412         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
39413         time warning rather than a link error.
39414
39415 2007-02-12  Bruno Haible  <bruno@clisp.org>
39416
39417         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
39418         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
39419         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
39420
39421 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
39422
39423         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
39424         args, not 2.
39425
39426 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
39427
39428         New module 'time', so that apps can include <time.h> as per
39429         POSIX and GNU instead of separate include files like time_r.h
39430         and timegm.h.  This implementation tries out a simpler approach
39431         for replacing decls in standard include files (as compared to
39432         the string module), somewhat as an experiment.
39433
39434         * config/srclist.txt: Comment out mktime.c for now.
39435         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
39436         since it doesn't apply any more.  Use generic wording instead.
39437         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
39438         'time'.
39439         * lib/time_.h, m4/time_h.m4, modules/time: New files.
39440         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
39441         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
39442         Don't include <sys/types.h>; no longer needed since we assume C89.
39443         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
39444         * lib/strftime.c: Likewise.
39445         * lib/time_r.c: Likewise.
39446         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
39447         * lib/nanosleep.c: Include <time.h> first, to check interface.
39448         * lib/strptime.c: Likewise.
39449         * lib/time_r.c: Likewise.
39450         * lib/timegm.c: Likewise.
39451         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
39452         needed.
39453         * lib/timegm.c: Don't include timegm.h; no longer needed.
39454         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
39455         time.h now handles any problems in that area.
39456         (struct timespec, nanosleep): Remove; time.h now arranges for these.
39457         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
39458         that time.h defines struct timespec.
39459         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
39460         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
39461         handles that.
39462         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
39463         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
39464         needed.  Set REPLACE_LOCALTIME.
39465         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
39466         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
39467         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
39468         nanosleep; time_h.m4 now does that.  Don't require
39469         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
39470         module handles this now.
39471         * modules/getdate (Depends-on): Remove timespec.  Add time.
39472         * modules/nanosleep (Depends-on): Likewise.
39473         * modules/stat-time (Depends-on): Likewise.
39474         * modules/nanosleep (Include): Include time.h, not timespec.h.
39475         * modules/strptime (Files): Remove lib/strptime.h.
39476         (Depends-on): Add extensions, time.
39477         (Include): Include time.h, not strptime.h.
39478         * modules/time_r (Files): Remove lib/time_r.h.
39479         (Depends-on): Add time.
39480         (Include): Include time.h, not time_r.h.
39481         * modules/timegm: Likewise.
39482         * modules/timespec (Description): Now does timespec-related decls
39483         of our own, instead of struct timespec itself.
39484         (Depends-on): Add time; remove extensions.
39485         (Maintainer): Add self.
39486         * modules/utimecmp (Depends-on): Add time; remove timespec.
39487         * modules/utimens (Depends-on): Likewise.
39488         * modules/xnanosleep (Depends-on): Likewise.
39489
39490 2007-02-11  Bruno Haible  <bruno@clisp.org>
39491
39492         * lib/c-strstr.c: Include allocsa.h.
39493         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
39494         * lib/c-strcasestr.c: Include allocsa.h.
39495         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
39496         * lib/strcasestr.c: Include allocsa.h.
39497         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
39498         * lib/mbsstr.c: Include allocsa.h.
39499         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
39500         allocsa/freesa instead of malloc/free.
39501         * lib/mbscasestr.c: Include allocsa.h.
39502         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
39503         allocsa/freesa instead of malloc/free.
39504         * modules/c-strstr (Depends-on): Add allocsa.
39505         * modules/c-strcasestr (Depends-on): Likewise.
39506         * modules/strcasestr (Depends-on): Likewise.
39507         * modules/mbsstr (Depends-on): Likewise.
39508         * modules/mbscasestr (Depends-on): Likewise.
39509
39510 2007-02-11  Bruno Haible  <bruno@clisp.org>
39511
39512         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
39513
39514         * modules/mbsspn-tests: New file.
39515         * tests/test-mbsspn.sh: New file.
39516         * tests/test-mbsspn.c: New file.
39517
39518 2007-02-11  Bruno Haible  <bruno@clisp.org>
39519
39520         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
39521
39522         * modules/mbspbrk-tests: New file.
39523         * tests/test-mbspbrk.sh: New file.
39524         * tests/test-mbspbrk.c: New file.
39525
39526 2007-02-11  Bruno Haible  <bruno@clisp.org>
39527
39528         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
39529         unneeded cast.
39530
39531         * modules/mbscspn-tests: New file.
39532         * tests/test-mbscspn.sh: New file.
39533         * tests/test-mbscspn.c: New file.
39534
39535 2007-02-11  Bruno Haible  <bruno@clisp.org>
39536
39537         * modules/mbscasecmp-tests: New file.
39538         * tests/test-mbscasecmp.sh: New file.
39539         * tests/test-mbscasecmp.c: New file.
39540
39541 2007-02-11  Bruno Haible  <bruno@clisp.org>
39542
39543         Ensure O(n) worst-case complexity of mbscasestr.
39544         * lib/mbscasestr.c: Include stdbool.h.
39545         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
39546         functions.
39547         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
39548         the bookkeeping indicates that it's worth it.
39549         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
39550
39551         * modules/mbscasestr-tests: New file.
39552         * tests/test-mbscasestr1.c: New file.
39553         * tests/test-mbscasestr2.sh: New file.
39554         * tests/test-mbscasestr2.c: New file.
39555         * tests/test-mbscasestr3.sh: New file.
39556         * tests/test-mbscasestr3.c: New file.
39557         * tests/test-mbscasestr4.sh: New file.
39558         * tests/test-mbscasestr4.c: New file.
39559         * m4/locale-tr.m4: New file.
39560
39561 2007-02-11  Bruno Haible  <bruno@clisp.org>
39562
39563         Ensure O(n) worst-case complexity of mbsstr.
39564         * lib/mbsstr.c: Include stdbool.h.
39565         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
39566         functions.
39567         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
39568         bookkeeping indicates that it's worth it.
39569         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
39570
39571         * modules/mbsstr-tests: New file.
39572         * tests/test-mbsstr1.c: New file.
39573         * tests/test-mbsstr2.sh: New file.
39574         * tests/test-mbsstr2.c: New file.
39575         * tests/test-mbsstr3.sh: New file.
39576         * tests/test-mbsstr3.c: New file.
39577         * m4/locale-fr.m4: New file.
39578
39579 2007-02-11  Bruno Haible  <bruno@clisp.org>
39580
39581         * lib/mbsrchr.c (mbsrchr): Fix bug.
39582
39583         * modules/mbsrchr-tests: New file.
39584         * tests/test-mbsrchr.sh: New file.
39585         * tests/test-mbsrchr.c: New file.
39586
39587 2007-02-11  Bruno Haible  <bruno@clisp.org>
39588
39589         * lib/mbschr.c (mbschr): Fix bug.
39590
39591         * modules/mbschr-tests: New file.
39592         * tests/test-mbschr.sh: New file.
39593         * tests/test-mbschr.c: New file.
39594         * m4/locale-zh.m4: New file.
39595
39596 2007-02-11  Bruno Haible  <bruno@clisp.org>
39597
39598         Support for copying multibyte string iterators.
39599         * lib/mbiter.h: Include <string.h>.
39600         (mbiter_multi_copy): New function.
39601         (mbi_copy): New macro.
39602         * lib/mbuiter.h: Include <string.h>.
39603         (mbuiter_multi_copy): New function.
39604         (mbui_copy): New macro.
39605
39606 2007-02-11  Bruno Haible  <bruno@clisp.org>
39607
39608         New module mbslen.
39609         * modules/mbslen: New file.
39610         * lib/mbslen.c: New file.
39611         * lib/string_.h (mbslen): New declaration.
39612         * m4/mbslen.m4: New file.
39613         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39614         GNULIB_MBSLEN.
39615         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
39616         * MODULES.html.sh (Internationalization functions): Add mbslen.
39617
39618 2007-02-11  Bruno Haible  <bruno@clisp.org>
39619
39620         Ensure O(n) worst-case complexity of strcasestr substitute.
39621         * lib/strcasestr.c: Include stdbool.h.
39622         (knuth_morris_pratt): New function.
39623         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
39624         bookkeeping indicates that it's worth it.
39625         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
39626
39627         * modules/strcasestr-tests: New file.
39628         * tests/test-strcasestr.c: New file.
39629
39630 2007-02-11  Bruno Haible  <bruno@clisp.org>
39631
39632         Ensure O(n) worst-case complexity of c_strcasestr.
39633         * lib/c-strcasestr.c: Include stdbool.h, string.h.
39634         (knuth_morris_pratt): New function.
39635         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
39636         the bookkeeping indicates that it's worth it.
39637         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
39638
39639         * modules/c-strcasestr-tests: New file.
39640         * tests/test-c-strcasestr.c: New file.
39641
39642 2007-02-11  Bruno Haible  <bruno@clisp.org>
39643
39644         Ensure O(n) worst-case complexity of c_strstr.
39645         * lib/c-strstr.c: Include stdbool.h, string.h.
39646         (knuth_morris_pratt): New function.
39647         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
39648         bookkeeping indicates that it's worth it.
39649         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
39650
39651         * lib/c-strstr.c: Complete rewrite for maintainability.
39652
39653         * modules/c-strstr-tests: New file.
39654         * tests/test-c-strstr.c: New file.
39655
39656 2007-02-11  Bruno Haible  <bruno@clisp.org>
39657
39658         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
39659         5.2.1 and earlier, whereby \055 was treated just like the range
39660         delimiter '-'.
39661         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
39662
39663 2007-02-08  Bruno Haible  <bruno@clisp.org>
39664
39665         * modules/regex (Depends-on): Add stdbool.
39666         Reported by Dalibor Topic <robilad@kaffe.org>.
39667
39668 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
39669
39670         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
39671         Prefer returning from main to exiting from it.
39672         Remove unnecessary parens after sizeof.
39673
39674 2007-02-05  Bruno Haible  <bruno@clisp.org>
39675
39676         New module mbssep.
39677         * modules/mbssep: New file.
39678         * lib/mbssep.c: New file.
39679         * lib/string_.h (strsep): Add a conditional link warning.
39680         (mbssep): New declaration.
39681         * m4/mbssep.m4: New file.
39682         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39683         GNULIB_MBSSEP.
39684         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
39685         * MODULES.html.sh (Internationalization functions): Add mbssep.
39686
39687 2007-02-05  Bruno Haible  <bruno@clisp.org>
39688
39689         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
39690         Optimize search in case of 1 delimiter.
39691
39692 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
39693
39694         * lib/acl.h: Include sys/types.h before sys/acl.h.
39695
39696 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
39697
39698         Merge upstream fix for glibc bugzilla #3957:
39699
39700         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
39701
39702         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
39703         bit for RE_HAT_LISTS_NOT_NEWLINE.
39704         (build_charclass_op): Remove bogus comment.
39705
39706 2007-02-05  Simon Josefsson  <simon@josefsson.org>
39707
39708         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
39709
39710 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
39711
39712         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
39713         * lib/memmem.c [!defined _LIBC]: Include config.h.
39714
39715 2007-02-04  Bruno Haible  <bruno@clisp.org>
39716
39717         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
39718         warning message.
39719
39720 2007-02-04  Bruno Haible  <bruno@clisp.org>
39721
39722         New module mbstok_r.
39723         * modules/mbstok_r: New file.
39724         * lib/mbstok_r.c: New file.
39725         * lib/string_.h (strtok_r): Change argument names to match the
39726         comments. Add a conditional link warning.
39727         (mbstok_r): New declaration.
39728         * m4/mbstok_r.m4: New file.
39729         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39730         GNULIB_MBSTOK_R.
39731         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
39732         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
39733
39734 2007-02-04  Bruno Haible  <bruno@clisp.org>
39735
39736         New module mbsspn.
39737         * modules/mbsspn: New file.
39738         * lib/mbsspn.c: New file.
39739         * lib/string_.h (strspn): Add a conditional link warning.
39740         (mbsspn): New declaration.
39741         * m4/mbsspn.m4: New file.
39742         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39743         GNULIB_MBSSPN.
39744         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
39745         * MODULES.html.sh (Internationalization functions): Add mbsspn.
39746
39747 2007-02-04  Bruno Haible  <bruno@clisp.org>
39748
39749         New module mbspbrk.
39750         * modules/mbspbrk: New file.
39751         * lib/mbspbrk.c: New file.
39752         * lib/string_.h (strpbrk): Add a conditional link warning.
39753         (mbspbrk): New declaration.
39754         * m4/mbspbrk.m4: New file.
39755         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39756         GNULIB_MBSPBRK.
39757         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
39758         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
39759
39760 2007-02-04  Bruno Haible  <bruno@clisp.org>
39761
39762         New module mbscspn.
39763         * modules/mbscspn: New file.
39764         * lib/mbscspn.c: New file.
39765         * lib/string_.h (strcspn): Add a conditional link warning.
39766         (mbscspn): New declaration.
39767         * m4/mbscspn.m4: New file.
39768         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39769         GNULIB_MBSCSPN.
39770         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
39771         * MODULES.html.sh (Internationalization functions): Add mbscspn.
39772
39773 2007-02-04  Bruno Haible  <bruno@clisp.org>
39774
39775         New module mbscasestr, reduced goal of strcasestr.
39776         * modules/mbscasestr: New file.
39777         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
39778         (mbscasestr): Renamed from strcasestr.
39779         * lib/strcasestr.c: Don't include mbuiter.h.
39780         (strcasestr): Remove support for multibyte locales.
39781         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
39782         Change the conditional link warning.
39783         (mbscasestr): New declaration.
39784         * m4/mbscasestr.m4: New file.
39785         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
39786         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
39787         REPLACE_STRCASESTR.
39788         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
39789         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
39790         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
39791         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
39792         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
39793         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
39794         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
39795         (Depends-on): Remove mbuiter.
39796         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
39797
39798 2007-02-04  Bruno Haible  <bruno@clisp.org>
39799
39800         Simplify handling of strncasecmp.
39801         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
39802         the conditional link warning.
39803         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
39804         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
39805         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
39806         * modules/strcase (configure.ac): Don't invoke
39807         gl_STRING_MODULE_INDICATOR.
39808         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
39809
39810 2007-02-04  Bruno Haible  <bruno@clisp.org>
39811
39812         New module mbscasecmp, reduced goal of strcasecmp.
39813         * modules/mbscasecmp: New file.
39814         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
39815         (mbscasecmp): Renamed from strcasecmp.
39816         * lib/strcasecmp.c: Don't include mbuiter.h.
39817         (strcasecmp): Remove support for multibyte locales.
39818         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
39819         Change the conditional link warning.
39820         (mbscasecmp): New declaration.
39821         * m4/mbscasecmp.m4: New file.
39822         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
39823         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
39824         REPLACE_STRCASECMP.
39825         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
39826         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39827         GNULIB_MBSCASECMP.
39828         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
39829         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
39830         * modules/strcase (Files): Remove m4/mbrtowc.m4.
39831         (Depends-on): Remove mbuiter.
39832         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
39833
39834 2007-02-04  Bruno Haible  <bruno@clisp.org>
39835
39836         New module mbsstr. Remove module strstr.
39837         * modules/mbsstr: New file.
39838         * modules/strstr: Remove file.
39839         * lib/mbsstr.c: Renamed from lib/strstr.c.
39840         (mbsstr): Renamed from strstr.
39841         * lib/string_.h (strstr): Remove declaration. Change the conditional
39842         link warning.
39843         (mbsstr): New declaration.
39844         * m4/mbsstr.m4: New file.
39845         * m4/strstr.m4: Remove file.
39846         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
39847         REPLACE_STRSTR.
39848         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
39849         Don't initialize GNULIB_STRSTR.
39850         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
39851         substitute GNULIB_STRSTR and REPLACE_STRSTR.
39852         * MODULES.html.sh (Internationalization functions): Add mbsstr.
39853         (Support for systems lacking ANSI C 89): Remove strstr.
39854
39855 2007-02-04  Bruno Haible  <bruno@clisp.org>
39856
39857         New module mbsrchr.
39858         * modules/mbsrchr: New file.
39859         * lib/mbsrchr.c: New file.
39860         * lib/string_.h (strrchr): Add a conditional link warning.
39861         (mbsrchr): New declaration.
39862         * m4/mbsrchr.m4: New file.
39863         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39864         GNULIB_MBSRCHR.
39865         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
39866         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
39867
39868 2007-02-04  Bruno Haible  <bruno@clisp.org>
39869
39870         New module mbschr.
39871         * modules/mbschr: New file.
39872         * lib/mbschr.c: New file.
39873         * lib/string_.h (strchr): Add a conditional link warning.
39874         (mbschr): New declaration.
39875         * m4/mbschr.m4: New file.
39876         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
39877         GNULIB_MBSCHR.
39878         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
39879         * MODULES.html.sh (Internationalization functions): Add mbschr.
39880
39881 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
39882
39883         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
39884
39885         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
39886
39887 2007-02-04  Bruno Haible  <bruno@clisp.org>
39888
39889         New module description section 'configure.ac-early'.
39890         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
39891         (func_get_autoconf_early_snippet): New function.
39892         (func_import, func_create_testdir): Use it. Remove special cases for
39893         modules 'extensions' and 'lock'.
39894         * modules/extensions (configure.ac-early): Require
39895         gl_USE_SYSTEM_EXTENSIONS.
39896         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
39897
39898 2007-02-04  Bruno Haible  <bruno@clisp.org>
39899
39900         Make use of gcj-4.3's -fsource and -ftarget option.
39901         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
39902         and if so try the options -fsource and -ftarget.
39903         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
39904         source_version, ftarget_option, target_version arguments.
39905         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
39906         (is_envjavac_oldgcj_14_14_usable): Renamed from
39907         is_envjavac_gcj_14_14_usable.
39908         (is_envjavac_oldgcj_14_13_usable): Renamed from
39909         is_envjavac_gcj_14_13_usable.
39910         (is_gcj_present): Update.
39911         (is_gcj_43, is_gcj43_usable): New functions.
39912         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
39913         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
39914         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
39915         try the options -fsource and -ftarget.
39916
39917 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
39918
39919         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
39920         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
39921         larger value.
39922
39923 2007-02-03  Jim Meyering  <jim@meyering.net>
39924
39925         Give tools a better chance to allocate space for very large buffers.
39926         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
39927
39928         Make pwd and readlink work also when run with an unreadable parent dir
39929         on systems with openat support.
39930         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
39931         provided getcwd function, even when we have openat support.
39932         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
39933
39934 2007-02-02  Bruno Haible  <bruno@clisp.org>
39935
39936         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
39937         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
39938         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
39939         portability problems if one of these functions is only used on specific
39940         platforms.
39941         Reported by Paul Eggert.
39942
39943 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
39944
39945         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
39946         is causing more trouble than it's curing.
39947         * lib/regex_internal.h (__mempcpy): Remove.
39948         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
39949         (and make the code a tad smaller to boot).
39950         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
39951
39952 2007-02-02  Jim Meyering  <jim@meyering.net>
39953
39954         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
39955         section, not in the Makefile.am: one.
39956
39957 2007-02-02  Eric Blake  <ebb9@byu.net>
39958
39959         * lib/strchrnul.c: Always include config.h first.
39960
39961         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
39962         gnulib strstr is not necessary here.
39963
39964 2007-02-02  Simon Josefsson  <simon@josefsson.org>
39965
39966         * m4/socklen.m4: Fix typo.
39967
39968 2007-02-02  Eric Blake  <ebb9@byu.net>
39969
39970         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
39971         * modules/netinet_in (Makefile.am): Likewise.
39972
39973 2007-02-01  Bruno Haible  <bruno@clisp.org>
39974
39975         * lib/string_.h (GL_LINK_WARNING): New macro.
39976         (strcasecmp, strstr, strcasestr): If provided by the system,
39977         conditionally define as a macro that leads to a warning instead of to
39978         an error.
39979         (strncasecmp): Conditionally define as a macro that leads to a warning.
39980
39981 2007-02-01  Karl Berry  <karl@gnu.org>
39982
39983         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
39984
39985 2007-02-01  Bruno Haible  <bruno@clisp.org>
39986
39987         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
39988         renamings.
39989
39990 2007-02-01  Eric Blake  <ebb9@byu.net>
39991
39992         * modules/regex (Depends-on): Revert dependence on mempcpy.
39993         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
39994         module's definition of mempcpy.
39995         Reported by Paul Eggert.
39996
39997 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
39998
39999         * lib/string_.h: If the gnulib module XYZ is not present, undefine
40000         the symbol XYZ before redefining it.  This fixes a problem with
40001         programs that don't use XYZ, when compiled on systems that define
40002         XYZ to something else.
40003
40004 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
40005
40006         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
40007         occurs when "mkdir -m foo" creates a setgid directory that is (1)
40008         writeable to group or other and (2) is intended to have a special
40009         mode bit that is set or cleared.  In such a case, the directory
40010         should be neither group- nor other-writeable until the special
40011         mode bits are right.
40012
40013 2007-01-31  Eric Blake  <ebb9@byu.net>
40014
40015         * modules/mountlist (Depends-on): Add strstr.
40016
40017         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
40018         bug.
40019         * modules/string (Makefile.am): Remove redundant replacement.
40020         * modules/regex (Depends-on): Add mempcpy.
40021
40022 2007-01-31  Bruno Haible  <bruno@clisp.org>
40023
40024         New module description field 'Link'.
40025         * gnulib-tool (func_usage): Document --extract-link-directive.
40026         (sed_extract_prog): Recognize 'Link' directive.
40027         (func_get_link_directive): New function.
40028         (func_import): Show summary of link directives.
40029         Handle --extract-link-directive option.
40030         * modules/acl (Link): New section.
40031         * modules/clock-time (Link): New section.
40032         * modules/euidaccess (Link): New section.
40033         * modules/gettext (Link): New section.
40034         * modules/iconv (Link): New section.
40035         * modules/lock (Link): New section.
40036         * modules/nanosleep (Link): New section.
40037         * modules/readline (Link): New section.
40038
40039 2007-01-27  Bruno Haible  <bruno@clisp.org>
40040
40041         Enforce the use of gnulib modules for unportable <string.h> functions.
40042         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
40043         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
40044         (gl_HEADER_STRING_H_BODY): Require it.
40045         * lib/string_.h: If the gnulib module XYZ is not present, redefine
40046         the symbol XYZ to one that gives a link error.
40047         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
40048         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
40049         * modules/mempcpy (configure.ac): Likewise.
40050         * modules/memrchr (configure.ac): Likewise.
40051         * modules/stpcpy (configure.ac): Likewise.
40052         * modules/stpncpy (configure.ac): Likewise.
40053         * modules/strcase (configure.ac): Likewise.
40054         * modules/strcasestr (configure.ac): Likewise.
40055         * modules/strchrnul (configure.ac): Likewise.
40056         * modules/strdup (configure.ac): Likewise.
40057         * modules/strndup (configure.ac): Likewise.
40058         * modules/strnlen (configure.ac): Likewise.
40059         * modules/strpbrk (configure.ac): Likewise.
40060         * modules/strsep (configure.ac): Likewise.
40061         * modules/strstr (configure.ac): Likewise.
40062         * modules/strtok_r (configure.ac): Likewise.
40063
40064 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
40065
40066         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
40067
40068 2007-01-30  Jim Meyering  <jim@meyering.net>
40069
40070         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
40071
40072 2007-01-29  Bruno Haible  <bruno@clisp.org>
40073
40074         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
40075         * lib/execute.c: Likewise.
40076         * lib/pipe.c: Likewise.
40077         * lib/printf-args.h: Likewise.
40078         * lib/printf-args.c: Likewise.
40079         * lib/printf-parse.c: Likewise.
40080         * lib/vasnprintf.c: Likewise.
40081
40082 2007-01-29  Eric Blake  <ebb9@byu.net>
40083
40084         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
40085         declaration.
40086
40087 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
40088
40089         * lib/strptime.h (strptime): Use 'restrict' for args where
40090         POSIX requires this.
40091         * lib/strptime.c (strptime): Likewise.
40092         Change license notice from LGPL to GPL, since gnulib-tool will
40093         change this as needed.
40094         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
40095         defined.
40096         Include "strptime.h" first, to check interface.
40097         Do not #undef _LIBC and _NL_CURRENT.
40098         Do not include <stdlib.h>; no longer needed.
40099         Include "time_r.h" and declare ptime_locale_status
40100         only if _LIBC is not defined.
40101         (__P): Remove unused macro.
40102         (match_string): Bring back glibc version, but use it only if _LIBC
40103         is defined.
40104         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
40105         Remove unnecessary assertion and abort() call.
40106         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
40107         * m4/strptime.m4: Fix serial number comment.
40108         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
40109         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
40110         (Depends-on): Add time_r.
40111
40112 2007-01-29  Bruno Haible  <bruno@clisp.org>
40113
40114         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
40115         strptime.
40116         * modules/strptime (Depends-on): Add stdbool.
40117         * lib/strptime.h: Include <time.h> always. Add comments.
40118
40119 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
40120
40121         * modules/strptime: New file.
40122         * lib/strptime.h: New file.
40123         * lib/strptime.c: New file.
40124         * m4/strptime.m4: New file.
40125
40126 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
40127
40128         * MODULES.html.sh: New module mpsort.
40129         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
40130
40131         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
40132         a circularity problem with HP-UX ia64 reported by Bob Proulx in
40133         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
40134         All uses changed.
40135         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
40136         All uses changed.
40137         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
40138         to _Restrict_.
40139         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
40140         the parameter matches the prototype.
40141
40142 2007-01-28  Jim Meyering  <jim@meyering.net>
40143
40144         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
40145         sys/time.h here, reverting that part of the previous patch:
40146         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
40147
40148 2007-01-28  Bruno Haible  <bruno@clisp.org>
40149
40150         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
40151         value of $(SYS_TIME_H).
40152         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
40153         remove it conditionally, too. [added by Jim Meyering]
40154         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
40155         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
40156         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
40157         GETTIMEOFDAY_REPLACEMENT to 1.
40158
40159 2007-01-28  Bruno Haible  <bruno@clisp.org>
40160
40161         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
40162         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
40163         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
40164         Set UNISTD_H instead of UNISTD_H2.
40165         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
40166
40167 2007-01-28  Bruno Haible  <bruno@clisp.org>
40168
40169         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
40170         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
40171
40172 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40173
40174         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
40175         (func_create_testdir): Ensure C locale for `grep' and `tr'
40176         character ranges.
40177         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
40178         ACLOCAL_AMFLAGS parsing state machine.
40179
40180 2007-01-27  Bruno Haible  <bruno@clisp.org>
40181
40182         * modules/unistr/base: Update.
40183
40184 2007-01-27  Bruno Haible  <bruno@clisp.org>
40185
40186         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
40187         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
40188         * modules/unistr/u32-mbtouc-unsafe: Renamed from
40189         modules/unistr/u32-mbtouc.
40190         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
40191         * lib/unistr.h: Update.
40192         * lib/linebreak.c: Update.
40193         * modules/unistr/u32-mbtouc: Renamed from
40194         modules/unistr/u32-mbtouc-safe.
40195         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
40196         * lib/unistr.h: Update.
40197         * lib/unistr/u32-to-u8.c: Update.
40198         * lib/unistr/u32-to-u16.c: Update.
40199
40200 2007-01-27  Bruno Haible  <bruno@clisp.org>
40201
40202         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
40203         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
40204         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
40205         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
40206         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
40207         * modules/unistr/u16-mbtouc-unsafe: Renamed from
40208         modules/unistr/u16-mbtouc.
40209         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
40210         * lib/unistr.h: Update.
40211         * lib/linebreak.c: Update.
40212         * modules/linebreak: Update.
40213         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
40214         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
40215         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
40216         * modules/unistr/u16-mbtouc: Renamed from
40217         modules/unistr/u16-mbtouc-safe.
40218         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
40219         * lib/unistr.h: Update.
40220         * lib/unistr/u16-to-u8.c: Update.
40221         * modules/unistr/u16-to-u8: Update.
40222         * lib/unistr/u16-to-u32.c: Update.
40223         * modules/unistr/u16-to-u32: Update.
40224
40225 2007-01-27  Bruno Haible  <bruno@clisp.org>
40226
40227         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
40228         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
40229         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
40230         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
40231         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
40232         * modules/unistr/u8-mbtouc-unsafe: Renamed from
40233         modules/unistr/u8-mbtouc.
40234         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
40235         * lib/unistr.h: Update.
40236         * lib/striconveh.c: Update.
40237         * modules/striconveh: Update.
40238         * lib/linebreak.c: Update.
40239         * modules/linebreak: Update.
40240         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
40241         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
40242         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
40243         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
40244         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
40245         * lib/unistr.h: Update.
40246         * lib/striconveh.c: Update.
40247         * modules/striconveh: Update.
40248         * lib/unistr/u8-to-u16.c: Update.
40249         * modules/unistr/u8-to-u16: Update.
40250         * lib/unistr/u8-to-u32.c: Update.
40251         * modules/unistr/u8-to-u32: Update.
40252
40253 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40254
40255         Sync from Libtool.
40256         * lib/argz.c: Do not include strings.h nor memory.h, include
40257         string.h unconditionally.  Patch by Simon Josefsson.
40258
40259 2007-01-27  Bruno Haible  <bruno@clisp.org>
40260
40261         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
40262         from gl_HEADER_STRING_H_BODY.
40263         (gl_HEADER_STRING_H_BODY): Require it.
40264         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
40265         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
40266         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
40267         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
40268         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
40269         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
40270         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
40271         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
40272         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
40273         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
40274         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
40275         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
40276         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
40277         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
40278         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
40279
40280 2007-01-27  Bruno Haible  <bruno@clisp.org>
40281
40282         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
40283         check_PROGRAMS into noinst_PROGRAMS.
40284         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
40285         check_PROGRAMS in this case.
40286         (func_import): Set for_test to false.
40287         (func_create_testdir): Set for_test to true.
40288
40289 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
40290             Bruno Haible  <bruno@clisp.org>
40291
40292         * modules/strcasestr (Files): Remove lib/strcasestr.h.
40293         (Depends-on): Add string.
40294         (Includes): Use <string.h> instead of strcasestr.h.
40295         * modules/string (Makefile.am): Also substitute the value of
40296         REPLACE_STRCASESTR.
40297         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
40298         assume strcasestr is declared in <string.h> not <strings.h>. Also
40299         set REPLACE_STRCASESTR.
40300         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
40301         REPLACE_STRCASESTR.
40302         * lib/strcasestr.h: Remove file.
40303         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
40304         * lib/string_.h (strcasestr): New declaration.
40305
40306 2007-01-27  Bruno Haible  <bruno@clisp.org>
40307
40308         * lib/string_.h: Use 'extern'.
40309
40310 2007-01-27  Jim Meyering  <jim@meyering.net>
40311
40312         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
40313         of set-but-not-used local, "q".
40314
40315         * lib/mempcpy.c: Include <config.h> before <string.h>.
40316         This fixes a compilation error on HP-UX, due to the system's
40317         "restrict"-using mempcpy prototype.
40318
40319 2007-01-26  Bruno Haible  <bruno@clisp.org>
40320
40321         Small optimization.
40322         * lib/javacomp.c: Include c-strstr.h.
40323          (is_envjavac_gcj): Use c_strstr instead of strstr.
40324         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
40325
40326 2007-01-26  Bruno Haible  <bruno@clisp.org>
40327
40328         * MODULES.html.sh (Unicode string functions): Add the new modules.
40329
40330         * modules/uniconv/u32-strconv-to-locale: New file.
40331         * lib/uniconv/u32-strconv-to-locale.c: New file.
40332
40333         * modules/uniconv/u16-strconv-to-locale: New file.
40334         * lib/uniconv/u16-strconv-to-locale.c: New file.
40335
40336         * modules/uniconv/u8-strconv-to-locale: New file.
40337         * lib/uniconv/u8-strconv-to-locale.c: New file.
40338
40339         * modules/uniconv/u32-strconv-from-locale: New file.
40340         * lib/uniconv/u32-strconv-from-locale.c: New file.
40341
40342         * modules/uniconv/u16-strconv-from-locale: New file.
40343         * lib/uniconv/u16-strconv-from-locale.c: New file.
40344
40345         * modules/uniconv/u8-strconv-from-locale: New file.
40346         * lib/uniconv/u8-strconv-from-locale.c: New file.
40347
40348         * modules/uniconv/u32-strconv-to-enc: New file.
40349         * lib/uniconv/u32-strconv-to-enc.c: New file.
40350         * modules/uniconv/u32-strconv-to-enc-tests: New file.
40351         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
40352
40353         * modules/uniconv/u16-strconv-to-enc: New file.
40354         * lib/uniconv/u16-strconv-to-enc.c: New file.
40355         * lib/uniconv/u-strconv-to-enc.h: New file.
40356         * modules/uniconv/u16-strconv-to-enc-tests: New file.
40357         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
40358
40359         * modules/uniconv/u8-strconv-to-enc: New file.
40360         * lib/uniconv/u8-strconv-to-enc.c: New file.
40361         * modules/uniconv/u8-strconv-to-enc-tests: New file.
40362         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
40363
40364         * modules/uniconv/u32-strconv-from-enc: New file.
40365         * lib/uniconv/u32-strconv-from-enc.c: New file.
40366         * modules/uniconv/u32-strconv-from-enc-tests: New file.
40367         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
40368
40369         * modules/uniconv/u16-strconv-from-enc: New file.
40370         * lib/uniconv/u16-strconv-from-enc.c: New file.
40371         * modules/uniconv/u16-strconv-from-enc-tests: New file.
40372         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
40373
40374         * modules/uniconv/u8-strconv-from-enc: New file.
40375         * lib/uniconv/u8-strconv-from-enc.c: New file.
40376         * lib/uniconv/u-strconv-from-enc.h: New file.
40377         * modules/uniconv/u8-strconv-from-enc-tests: New file.
40378         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
40379
40380         * modules/uniconv/u32-conv-from-enc: New file.
40381         * lib/uniconv/u32-conv-from-enc.c: New file.
40382         * modules/uniconv/u32-conv-from-enc-tests: New file.
40383         * tests/uniconv/test-u32-conv-from-enc.c: New file.
40384
40385         * modules/uniconv/u16-conv-from-enc: New file.
40386         * lib/uniconv/u16-conv-from-enc.c: New file.
40387         * lib/uniconv/u-conv-from-enc.h: New file.
40388         * modules/uniconv/u16-conv-from-enc-tests: New file.
40389         * tests/uniconv/test-u16-conv-from-enc.c: New file.
40390
40391         * modules/uniconv/u8-conv-from-enc: New file.
40392         * lib/uniconv/u8-conv-from-enc.c: New file.
40393         * modules/uniconv/u8-conv-from-enc-tests: New file.
40394         * tests/uniconv/test-u8-conv-from-enc.c: New file.
40395
40396         * modules/uniconv/base: New file.
40397         * lib/uniconv.h: New file.
40398
40399 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
40400
40401         * doc/gnulib-tool.texi (Initial import): Update to match current
40402         behavior with strdup module.
40403         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
40404         * lib/memmem.h: Remove; all uses removed.  This is now done
40405         by <string.h>.
40406         * lib/mempcpy.h: Likewise.
40407         * lib/memrchr.h: Likewise.
40408         * lib/stpcpy.h: Likewise.
40409         * lib/stpncpy.h: Likewise.
40410         * lib/strcase.h: Likewise.
40411         * lib/strchrnul.h: Likewise.
40412         * lib/strdup.h: Likewise.
40413         * lib/strndup.h: Likewise.
40414         * lib/strnlen.h: Likewise.
40415         * lib/strpbrk.h: Likewise.
40416         * lib/strsep.h: Likewise.
40417         * lib/strstr.h: Likewise.
40418         * lib/strtok_r.h: Likewise.
40419         * lib/string_.h: New file.
40420         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
40421         Rely on <string.h> instead.
40422         * lib/canon-host.c: Likewise.
40423         * lib/chdir-long.c: Likewise.
40424         * lib/concatpath.c: Likewise.
40425         * lib/exclude.c: Likewise.
40426         * lib/fchdir.c: Likewise.
40427         * lib/getaddrinfo.c: Likewise.
40428         * lib/getcwd.c: Likewise.
40429         * lib/getsubopt.c: Likewise.
40430         * lib/glob.c: Likewise.
40431         * lib/hard-locale.c: Likewise.
40432         * lib/iconvme.c: Likewise.
40433         * lib/javacomp.c: Likewise.
40434         * lib/mempcpy.c: Likewise.
40435         * lib/memrchr.c: Likewise.
40436         * lib/regex_internal.h: Likewise.
40437         * lib/stpncpy.c: Likewise.
40438         * lib/strcasecmp.c: Likewise.
40439         * lib/strchrnul.c: Likewise.
40440         * lib/strdup.c: Likewise.
40441         * lib/striconv.c: Likewise.
40442         * lib/striconveh.c: Likewise.
40443         * lib/striconveha.c: Likewise.
40444         * lib/strncasecmp.c: Likewise.
40445         * lib/strndup.c: Likewise.
40446         * lib/strnlen.c: Likewise.
40447         * lib/strsep.c: Likewise.
40448         * lib/strstr.c: Likewise.
40449         * lib/strtok_r.c: Likewise.
40450         * lib/userspec.c: Likewise.
40451         * lib/w32spawn.h: Likewise.
40452         * lib/xstrndup.c: Likewise.
40453         * lib/mountlist.c (strstr): Remove decl.
40454         * m4/string_h.m4: New file.
40455         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
40456         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
40457         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
40458         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
40459         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
40460         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
40461         Set REPLACE_STRCASECMP if necessary.
40462         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
40463         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
40464         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
40465         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
40466         HAVE_DECL_STRDUP if necessary.
40467         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
40468         since gl_FUNC_STRNDUP does that now.
40469         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
40470         Check for decl here...
40471         (gl_PREREQ_STRNLEN): ... not here.
40472         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
40473         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
40474         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
40475         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
40476         necessary.
40477         * modules/string: New file.
40478         * modules/memmem (Files): Remove special-purpose include file.
40479         (Depends-on): Add string.
40480         (Include): Include <string.h>, not the removed file.
40481         * modules/mempcpy: Likewise.
40482         * modules/memrchr: Likewise.
40483         * modules/stpcpy: Likewise.
40484         * modules/stpncpy: Likewise.
40485         * modules/strcase: Likewise.
40486         * modules/strchrnul: Likewise.
40487         * modules/strdup: Likewise.
40488         * modules/strndup: Likewise.
40489         * modules/strnlen: Likewise.
40490         * modules/strpbrk: Likewise.
40491         * modules/strsep: Likewise.
40492         * modules/strstr: Likewise.
40493         * modules/strtok_r: Likewise.
40494         * tests/test-dirname.c: Don't include "strdup.h", since
40495         <string.h> now suffices.
40496         * tests/test-memmem.c: Don't include "memmem.h", since
40497         <string.h> now suffices.
40498
40499 2007-01-25  Bruno Haible  <bruno@clisp.org>
40500
40501         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
40502         *resultp is 0.
40503
40504         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
40505         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
40506         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
40507         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
40508
40509         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
40510         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
40511         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
40512         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
40513         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
40514         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
40515
40516 2007-01-24  Bruno Haible  <bruno@clisp.org>
40517
40518         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
40519         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
40520         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
40521         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
40522         gl_FUNC_FTS_CORE.
40523         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
40524         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
40525         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
40526         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
40527         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
40528         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
40529         gl_FUNC_FCHOWNAT.
40530         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
40531         gl_FUNC_STRFTIME.
40532         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
40533         Reported by Ralf Wildenhues.
40534
40535 2007-01-24  Bruno Haible  <bruno@clisp.org>
40536
40537         Drop AC_REQUIRE calls that are redundant with the module dependencies.
40538         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
40539         gl_GETADDRINFO.
40540         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
40541         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
40542         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
40543
40544 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
40545
40546         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
40547         Don't use 'exit'; just return from 'main'.
40548         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
40549
40550         * lib/fnmatch_.h: Readjust white space and comments to match
40551         glibc, to avoid spurious diffs.
40552
40553 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40554
40555         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
40556         2004-12-01 change by Jakub Jelinek, since this code won't compile
40557         if !LIBC.  Problem reported by Bob Proulx.
40558
40559 2007-01-23  Bruno Haible  <bruno@clisp.org>
40560
40561         * lib/striconveh.c: Include c-strcaseeq.h.
40562         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
40563         * modules/striconveh (Depends-on): Add c-strcaseeq.
40564
40565 2007-01-23  Bruno Haible  <bruno@clisp.org>
40566
40567         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
40568
40569         * modules/c-strcaseeq: New file.
40570         * lib/c-strcaseeq.h: New file.
40571
40572         * modules/streq: New file.
40573         * lib/streq.h: New file.
40574
40575 2007-01-23  Bruno Haible  <bruno@clisp.org>
40576
40577         * modules/striconveha-tests: New file.
40578         * tests/test-striconveha.c: New file.
40579
40580         * lib/striconveha.h: Include <stdbool.h>.
40581         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
40582         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
40583         (mem_iconveha_notranslit): Renamed from mem_iconveha.
40584         (mem_iconveha): New function.
40585         (str_iconveha_notranslit): Renamed from str_iconveha.
40586         (str_iconveha): New function.
40587         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
40588         c-strcase.
40589
40590 2007-01-23  Bruno Haible  <bruno@clisp.org>
40591
40592         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
40593         encodings without forgiving before trying any encoding with handler.
40594         (str_iconveha): Try all encodings without forgiving before trying any
40595         encoding with handler.
40596
40597 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40598
40599         Import the following changes from libc.
40600
40601         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
40602
40603         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
40604
40605         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
40606
40607         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
40608         normal_bracket label.
40609
40610         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
40611
40612         [BZ #361]
40613         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
40614         to normal_bracket after fetching the next character.
40615
40616 2007-01-22  Bruno Haible  <bruno@clisp.org>
40617
40618         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
40619         argument.
40620         * lib/striconveh.c (iconv_carefully_1): New function.
40621         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
40622         argument.
40623         (str_cd_iconveh): Update.
40624         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
40625         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
40626         * tests/test-striconveh.c (MAGIC): New macro.
40627         (new_offsets): New function.
40628         (main): Test call with and without offsets.
40629
40630 2007-01-22  Bruno Haible  <bruno@clisp.org>
40631
40632         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
40633         * modules/sys_select (Makefile.am): Likewise.
40634         * modules/sys_socket (Makefile.am): Likewise.
40635         * modules/sys_time (Makefile.am): Likewise.
40636
40637 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
40638
40639         * modules/gettimeofday (License): Change from GPL to LGPL, since
40640         gettimeofday is a library function.
40641
40642 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40643
40644         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
40645
40646 2007-01-21  Bruno Haible  <bruno@clisp.org>
40647
40648         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
40649
40650 2007-01-21  Bruno Haible  <bruno@clisp.org>
40651
40652         * modules/striconveha: New file.
40653         * lib/striconveha.h: New file.
40654         * lib/striconveha.c: New file.
40655         * MODULES.html.sh (Internationalization functions): Add striconveha.
40656         * lib/striconv.c (str_iconv): Optimize the case of an empty input
40657         string.
40658         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
40659
40660 2007-01-21  Bruno Haible  <bruno@clisp.org>
40661
40662         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
40663         * lib/striconveh.c (str_iconveh): Likewise.
40664
40665 2007-01-21  Bruno Haible  <bruno@clisp.org>
40666
40667         * lib/striconveh.h (mem_iconveh): New declaration.
40668         * lib/striconveh.c (mem_iconveh): New function.
40669         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
40670
40671 2007-01-21  Bruno Haible  <bruno@clisp.org>
40672
40673         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
40674
40675         * lib/striconveh.h (mem_cd_iconveh): Change specification.
40676         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
40677         original result buffer.
40678         (str_cd_iconveh): Update.
40679         * tests/test-striconveh.c (main): Update.
40680
40681         * lib/striconv.h (mem_cd_iconv): Change specification.
40682         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
40683         result buffer.
40684         (str_cd_iconv): Update.
40685         * tests/test-striconv.c (main): Update.
40686
40687 2007-01-21  Bruno Haible  <bruno@clisp.org>
40688
40689         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
40690
40691 2007-01-20  Jim Meyering  <jim@meyering.net>
40692
40693         * lib/userspec.c (parse_with_separator): If a user or group string
40694         starts with "+", skip the corresponding name-to-ID look-up, since
40695         such a look-up must fail: user and group names may not include "+".
40696
40697 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
40698
40699         * lib/poll.c: Include sys/time.h and time.h unconditionally,
40700         since we now assume the sys_time module.
40701         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
40702         check for sys/time.h; no longer needed.
40703         * modules/poll (Depends-on): Depend on sys_time.
40704
40705 2007-01-18  Bruno Haible  <bruno@clisp.org>
40706
40707         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
40708         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
40709
40710         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
40711         gettimeofday.
40712
40713         * tests/test-gettimeofday.c: Include <time.h>.
40714         (dummy): Remove variable.
40715
40716         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
40717         gl_HEADER_SYS_TIME_H.
40718         (gl_HEADER_SYS_TIME_H): New macro.
40719
40720         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
40721         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40722         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
40723         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
40724         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40725         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
40726         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
40727         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40728         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
40729         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
40730         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40731
40732         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
40733         last change; it caused a compilation error when cross-compiling to
40734         Cygwin.
40735
40736 2007-01-18  Jim Meyering  <jim@meyering.net>
40737
40738         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
40739         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
40740         than the race-prone "test -d sys || mkdir sys".
40741         (configure.ac): Use AC_PROG_MKDIR_P.
40742         * modules/sys_select: Likewise.
40743         * modules/sys_socket: Likewise.
40744         * modules/sys_time: Likewise.
40745
40746 2007-01-18  Eric Blake  <ebb9@byu.net>
40747
40748         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
40749         replace gettimeofday.
40750         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
40751         name, to avoid infinite recursion.
40752
40753 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
40754
40755         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
40756         module sys_time.
40757         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
40758         assume timespec.h defines struct timeval.
40759         * lib/settime.c: Likewise.
40760         * lib/utimens.c: Likewise.
40761         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
40762         since we now assume the gettimeofday module.
40763         * lib/tempname.c (__gen_tempname): Likewise.
40764         * lib/gettimeofday.h: Remove.
40765         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
40766         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
40767         Include <time.h>, for 'time()'.
40768         (localtime_buffer_addr): Also use this workaround if
40769         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
40770         to simplify the uses.  All uses changed.
40771         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
40772         that #undef is inside {}, and 'const' follows type name consistently.
40773         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
40774         (gettimeofday): Do not use the maximum possible value for
40775         tv->tv_usec, since that might break usages other than ls.c.
40776         Instead, we'll leave ls.c alone.  This undoes today's patch
40777         by Bruno.  Add a compile-time warning for 1s-clock resolution;
40778         we've never observed the problem but might as well keep the
40779         canary.
40780         * lib/nanosleep.c: Include timespec.h first, for interface check.
40781         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
40782         now assume the sys_time module.
40783         * lib/tempname.c: Likewise.
40784         * lib/timespec.h: Likewise.
40785         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
40786         needed.
40787         * lib/strftime.c: Likewise.
40788         * lib/timespec.h: Likewise.
40789         * lib/posixtm.c: Include posixtm.h first, for interface check.
40790         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
40791         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
40792         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
40793         * lib/sys_time_.h: New file.
40794         * lib/timespec.h (struct timespec): Use long int, not long.
40795         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
40796         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
40797         Remove obsolescent call to AC_HEADER_TIME.
40798         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
40799         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40800         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
40801         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
40802         Likewise.
40803         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
40804         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
40805         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
40806         into the sys_time module.  Check for gettimeofday just once.
40807         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
40808         for gettimeofday signature to just check the signature.  Merely
40809         compile it, since linking doesn't test signature.  Improve test for
40810         whether gettimeofday.o is actually needed.
40811         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
40812         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
40813         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
40814         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40815         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
40816         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
40817         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
40818         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
40819         than worrying about sys/time.h.
40820         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
40821         Don't bother worrying about TIME_WITH_SYS_TIME.
40822         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
40823         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
40824         * m4/sys_time_h.m4: New file.
40825         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
40826         Don't include sys/time.h.  Return from main rather than exiting.
40827         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
40828         all uses changed.
40829         * modules/gethrxtime (Depends-on): Add sys_time.
40830         * modules/gettime (Depends-on): Likewise.
40831         * modules/gettimeofday (Depends-on): Likewise.
40832         * modules/nanosleep (Depends-on): Likewise.
40833         * modules/settime (Depends-on): Likewise.
40834         * modules/tempname (Depends-on): Likewise.
40835         * modules/utimens (Depends-on): Likewise.
40836         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
40837         (Include:) Change back to <sys/time.h>.
40838         (Maintainer:) Add self.
40839         * modules/sys_time: New file.
40840         * modules/tempname (Depends-on): Add gettimeofday.
40841         * tests/test-gettimeofday.c: Include <sys/time.h>
40842         rather than gettimeofday.h.
40843
40844 2007-01-17  Bruno Haible  <bruno@clisp.org>
40845
40846         * gnulib-tool (func_get_license): Revert last patch. Instead, let
40847         the license default to GPL.
40848         (func_create_testdir): Don't complain if a module is LGPL and its
40849         tests module depends on GPLed modules.
40850
40851 2007-01-17  Bruno Haible  <bruno@clisp.org>
40852
40853         * lib/gettimeofday.c (gettimeofday): Add code for the case
40854         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
40855         maximum possible value for tv->tv_usec, rather than the minimum one.
40856
40857 2005-10-08  Martin Lambers  <marlam@marlam.de>
40858 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
40859 2007-01-16  Bruno Haible  <bruno@clisp.org>
40860
40861         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
40862         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
40863         gl_FUNC_GETTIMEOFDAY.
40864         (Include): Add gettimeofday.h.
40865         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
40866         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
40867         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
40868         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
40869         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
40870         * lib/gettimeofday.h: New file.
40871         * lib/gettimeofday.c: Include <sys/timeb.h>.
40872         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
40873         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
40874         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
40875         fall back on time().
40876
40877         * tests/test-gettimeofday.c: New file.
40878         * modules/gettimeofday-tests: New file.
40879
40880 2007-01-16  Eric Blake  <ebb9@byu.net>
40881
40882         * modules/fnmatch (Depends-on): Depend on wchar.
40883         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
40884         * m4/fnmatch.m4: Likewise.
40885         * modules/mbchar (Makefile.am): Assume <wchar.h>.
40886         * m4/mbchar.m4: Likewise.
40887         * modules/mbswidth (Depends-on): Depend on wchar.
40888         * lib/mbswidth.c: Assume <wchar.h>.
40889         * m4/mbswidth.m4: Likewise.
40890         * modules/quotearg (Depends-on): Depend on wchar.
40891         * lib/quotearg.c: Assume <wchar.h>.
40892         * m4/quotearg.m4: Likewise.
40893         * modules/regex (Depends-on): Depend on wchar.
40894         * lib/regex_internal.h: Assume <wchar.h>.
40895         * m4/regex.m4: Likewise.
40896         * modules/stdint (Depends-on): Depend on wchar.
40897         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
40898         * m4/stdint.m4: Likewise.
40899         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
40900         * modules/strftime (Depends-on): Depend on wchar.
40901         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
40902         * modules/strtol (Depends-on): Depend on wchar.
40903         * lib/strtol.c: Assume <wchar.h>.
40904         * modules/wcwidth (Depends-on): Depend on wchar.
40905         * lib/wcwidth.h: Assume <wchar.h>.
40906         * m4/wcwidth.m4: Likewise.
40907
40908 2007-01-16  Bruno Haible  <bruno@clisp.org>
40909
40910         * modules/csharpexec-script: New, created from...
40911         * modules/csharpexec: ... this.
40912
40913 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
40914
40915         * modules/javaexec-script: New, created from...
40916         * modules/javaexec: ... this.
40917
40918 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
40919
40920         * modules/poll (Dependencies): Add sys_select.
40921
40922 2007-01-15  Jim Meyering  <jim@meyering.net>
40923
40924         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
40925         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
40926         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
40927         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
40928
40929 2007-01-15  Bruno Haible  <bruno@clisp.org>
40930
40931         * modules/striconveh: New file.
40932         * lib/striconveh.h: New file.
40933         * lib/striconveh.c: New file.
40934         * MODULES.html.sh (Internationalization functions): Add striconveh.
40935
40936         * modules/striconveh-tests: New file.
40937         * tests/test-striconveh.c: New file.
40938
40939 2007-01-15  Bruno Haible  <bruno@clisp.org>
40940
40941         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
40942         not from GNU libiconv or GNU libc.
40943
40944 2007-01-15  Bruno Haible  <bruno@clisp.org>
40945
40946         * doc/gnulib-intro.texi (Copyright): Explain the different license
40947         terms for module descriptions, autoconf macros, tests, documentation.
40948
40949 2007-01-14  Bruno Haible  <bruno@clisp.org>
40950
40951         * modules/striconv-tests: New file.
40952         * tests/test-striconv.c: New file.
40953
40954 2007-01-14  Bruno Haible  <bruno@clisp.org>
40955
40956         * modules/iconv-tests: New file.
40957         * tests/test-iconv.c: New file.
40958
40959 2007-01-14  Bruno Haible  <bruno@clisp.org>
40960
40961         * gnulib-tool (func_get_license): For test modules, use the license of
40962         the main module.
40963
40964 2007-01-14  Bruno Haible  <bruno@clisp.org>
40965
40966         * modules/iconv (Include): Clarify that <iconv.h> can only be included
40967         if iconv is found to exist.
40968
40969 2007-01-14  Bruno Haible  <bruno@clisp.org>
40970
40971         * modules/c-ctype-tests: New file.
40972         * tests/test-c-ctype.c: New file.
40973
40974 2007-01-14  Bruno Haible  <bruno@clisp.org>
40975
40976         * modules/binary-io-tests: New file.
40977         * tests/test-binary-io.sh: New file.
40978         * tests/test-binary-io.c: New file.
40979
40980 2007-01-14  Bruno Haible  <bruno@clisp.org>
40981
40982         * modules/array-oset-tests: New file.
40983         * tests/test-array_oset.c: New file.
40984
40985 2007-01-14  Bruno Haible  <bruno@clisp.org>
40986
40987         * modules/array-list-tests: New file.
40988         * tests/test-array_list.c: New file.
40989
40990 2007-01-14  Bruno Haible  <bruno@clisp.org>
40991
40992         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
40993         and make.
40994         Reported by Simon Josefsson in
40995         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
40996
40997 2007-01-14  Bruno Haible  <bruno@clisp.org>
40998
40999         * modules/allocsa-tests: New file.
41000         * tests/test-allocsa.c: New file.
41001
41002 2007-01-14  Bruno Haible  <bruno@clisp.org>
41003
41004         * modules/fchdir (Depends-on): Add absolute-header.
41005         * modules/unistd (Depends-on): Likewise.
41006
41007 2006-12-30  Bruno Haible  <bruno@clisp.org>
41008
41009         * modules/fchdir: New file.
41010         * modules/unistd (Files): Add lib/unistd_.h.
41011         (Makefile.am): Generate unistd.h from unistd_.h.
41012         * lib/fchdir.c: New file.
41013         * lib/dirent_.h: New file.
41014         * lib/unistd_.h: New file.
41015         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
41016         * m4/fchdir.m4: New file.
41017         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
41018         (gl_HEADER_UNISTD): Invoke it.
41019         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
41020         function.
41021         * lib/backupfile.c (opendir, closedir): Undefine.
41022         * lib/chown.c (open, close): Undefine.
41023         * lib/clean-temp.c (open, close): Undefine.
41024         * lib/copy-file.c (open, close): Undefine.
41025         * lib/execute.c (open, close): Undefine.
41026         * lib/fsusage.c (open, close): Undefine.
41027         * lib/gc-gnulib.c (open, close): Undefine.
41028         * lib/getcwd.c (opendir, closedir): Undefine.
41029         * lib/glob.c (opendir, closedir): Undefine.
41030         * lib/javacomp.c (open, close): Undefine.
41031         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
41032         * lib/openat-proc.c (open, close): Undefine.
41033         * lib/pagealign_alloc.c (open, close): Undefine.
41034         * lib/pipe.c (open, close): Undefine.
41035         * lib/progreloc.c (open, close): Undefine.
41036         * lib/savedir.c (opendir, closedir): Undefine.
41037         * lib/utime.c (open, close): Undefine.
41038         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
41039
41040 2007-01-10  Bruno Haible  <bruno@clisp.org>
41041
41042         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
41043
41044 2007-01-12  Eric Blake  <ebb9@byu.net>
41045
41046         Provide a robust <wchar.h>.  Further simplifications are now
41047         possible in other modules, but not included here.
41048         * modules/wchar: New module.
41049         * m4/wchar.m4: New file.
41050         * lib/wchar_.h: Likewise.
41051         * modules/mbchar (Depends-on): Depend on wchar, as the first use
41052         of the new module.
41053         * MODULES.html.sh (Extended multibyte and wide character utilities):
41054         New section.
41055
41056 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
41057
41058         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
41059         to a reasonable default for memory allocation.
41060         (xreadlink): Don't allocate a huge buffer, to work around a buggy
41061         file system that reports garbage st_size values for symlinks.
41062         Problem reported by Liyang Hu.
41063
41064 2007-01-11  Simon Josefsson  <simon@josefsson.org>
41065
41066         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
41067         Emacs .#* auto-save files).
41068
41069 2007-01-11  Bruno Haible  <bruno@clisp.org>
41070
41071         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
41072         directory.
41073
41074 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
41075
41076         Use @...@ consistently in lib/wctype_.h.
41077         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
41078         on it being set to 1 or 0.
41079         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
41080         go back to AC_SUBSTing it.
41081         * modules/wctype (Makefile.am): Undo previous change.
41082
41083 2007-01-10  Eric Blake  <ebb9@byu.net>
41084
41085         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
41086         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
41087         * modules/wctype (Makefile.am): Likewise.
41088         Reported by Chris McGuire.
41089
41090 2007-01-10  Jim Meyering  <jim@meyering.net>
41091
41092         fts.c: a small readability/maintainability improvement
41093         * lib/fts.c (fts_read): Make this code slightly more readable and
41094         maintainable by hoisting the "sp->fts_cur = p" assignments to
41095         immediately follow the statements that set P.  Derived from
41096         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
41097
41098 2007-01-10  Eric Blake  <ebb9@byu.net>
41099
41100         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
41101         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
41102         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
41103         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
41104         Reported by Chris McGuire.
41105
41106 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41107
41108         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
41109         in sed script.
41110
41111 2007-01-09  Bruno Haible  <bruno@clisp.org>
41112
41113         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
41114         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
41115         variables.
41116         (func_module): Use them.
41117
41118 2007-01-09  Bruno Haible  <bruno@clisp.org>
41119
41120         * modules/unistr/base: New file.
41121         * lib/unistr.h: New file.
41122
41123         * modules/unistr/u8-to-u16: New file.
41124         * lib/unistr/u8-to-u16.c: New file.
41125
41126         * modules/unistr/u8-to-u32: New file.
41127         * lib/unistr/u8-to-u32.c: New file.
41128
41129         * modules/unistr/u16-to-u8: New file.
41130         * lib/unistr/u16-to-u8.c: New file.
41131
41132         * modules/unistr/u16-to-u32: New file.
41133         * lib/unistr/u16-to-u32.c: New file.
41134
41135         * modules/unistr/u32-to-u8: New file.
41136         * lib/unistr/u32-to-u8.c: New file.
41137
41138         * modules/unistr/u32-to-u16: New file.
41139         * lib/unistr/u32-to-u16.c: New file.
41140
41141         * modules/unistr/u8-check: New file.
41142         * modules/unistr/u16-check: New file.
41143         * modules/unistr/u32-check: New file.
41144         * lib/unistr/u8-check.c: New file.
41145         * lib/unistr/u16-check.c: New file.
41146         * lib/unistr/u32-check.c: New file.
41147
41148         * modules/unistr/u8-chr: New file.
41149         * modules/unistr/u16-chr: New file.
41150         * modules/unistr/u32-chr: New file.
41151         * lib/unistr/u8-chr.c: New file.
41152         * lib/unistr/u16-chr.c: New file.
41153         * lib/unistr/u32-chr.c: New file.
41154
41155         * modules/unistr/u8-cmp: New file.
41156         * modules/unistr/u16-cmp: New file.
41157         * modules/unistr/u32-cmp: New file.
41158         * lib/unistr/u8-cmp.c: New file.
41159         * lib/unistr/u16-cmp.c: New file.
41160         * lib/unistr/u32-cmp.c: New file.
41161
41162         * modules/unistr/u8-cpy: New file.
41163         * modules/unistr/u16-cpy: New file.
41164         * modules/unistr/u32-cpy: New file.
41165         * lib/unistr/u8-cpy.c: New file.
41166         * lib/unistr/u16-cpy.c: New file.
41167         * lib/unistr/u32-cpy.c: New file.
41168         * lib/unistr/u-cpy.h: New file.
41169
41170         * modules/unistr/u8-cpy-alloc: New file.
41171         * modules/unistr/u16-cpy-alloc: New file.
41172         * modules/unistr/u32-cpy-alloc: New file.
41173         * lib/unistr/u8-cpy-alloc.c: New file.
41174         * lib/unistr/u16-cpy-alloc.c: New file.
41175         * lib/unistr/u32-cpy-alloc.c: New file.
41176         * lib/unistr/u-cpy-alloc.h: New file.
41177
41178         * modules/unistr/u8-endswith: New file.
41179         * modules/unistr/u16-endswith: New file.
41180         * modules/unistr/u32-endswith: New file.
41181         * lib/unistr/u8-endswith.c: New file.
41182         * lib/unistr/u16-endswith.c: New file.
41183         * lib/unistr/u32-endswith.c: New file.
41184         * lib/unistr/u-endswith.h: New file.
41185
41186         * modules/unistr/u8-mblen: New file.
41187         * modules/unistr/u16-mblen: New file.
41188         * modules/unistr/u32-mblen: New file.
41189         * lib/unistr/u8-mblen.c: New file.
41190         * lib/unistr/u16-mblen.c: New file.
41191         * lib/unistr/u32-mblen.c: New file.
41192
41193         * modules/unistr/u8-mbtouc: New file.
41194         * modules/unistr/u16-mbtouc: New file.
41195         * modules/unistr/u32-mbtouc: New file.
41196         * lib/unistr/u8-mbtouc.c: New file.
41197         * lib/unistr/u16-mbtouc.c: New file.
41198         * lib/unistr/u32-mbtouc.c: New file.
41199
41200         * modules/unistr/u8-mbtouc-safe: New file.
41201         * modules/unistr/u16-mbtouc-safe: New file.
41202         * modules/unistr/u32-mbtouc-safe: New file.
41203         * lib/unistr/u8-mbtouc-safe.c: New file.
41204         * lib/unistr/u16-mbtouc-safe.c: New file.
41205         * lib/unistr/u32-mbtouc-safe.c: New file.
41206
41207         * modules/unistr/u8-move: New file.
41208         * modules/unistr/u16-move: New file.
41209         * modules/unistr/u32-move: New file.
41210         * lib/unistr/u8-move.c: New file.
41211         * lib/unistr/u16-move.c: New file.
41212         * lib/unistr/u32-move.c: New file.
41213         * lib/unistr/u-move.h: New file.
41214
41215         * modules/unistr/u8-next: New file.
41216         * modules/unistr/u16-next: New file.
41217         * modules/unistr/u32-next: New file.
41218         * lib/unistr/u8-next.c: New file.
41219         * lib/unistr/u16-next.c: New file.
41220         * lib/unistr/u32-next.c: New file.
41221
41222         * modules/unistr/u8-prev: New file.
41223         * modules/unistr/u16-prev: New file.
41224         * modules/unistr/u32-prev: New file.
41225         * lib/unistr/u8-prev.c: New file.
41226         * lib/unistr/u16-prev.c: New file.
41227         * lib/unistr/u32-prev.c: New file.
41228
41229         * modules/unistr/u8-set: New file.
41230         * modules/unistr/u16-set: New file.
41231         * modules/unistr/u32-set: New file.
41232         * lib/unistr/u8-set.c: New file.
41233         * lib/unistr/u16-set.c: New file.
41234         * lib/unistr/u32-set.c: New file.
41235         * lib/unistr/u-set.h: New file.
41236
41237         * modules/unistr/u8-startswith: New file.
41238         * modules/unistr/u16-startswith: New file.
41239         * modules/unistr/u32-startswith: New file.
41240         * lib/unistr/u8-startswith.c: New file.
41241         * lib/unistr/u16-startswith.c: New file.
41242         * lib/unistr/u32-startswith.c: New file.
41243         * lib/unistr/u-startswith.h: New file.
41244
41245         * modules/unistr/u8-stpcpy: New file.
41246         * modules/unistr/u16-stpcpy: New file.
41247         * modules/unistr/u32-stpcpy: New file.
41248         * lib/unistr/u8-stpcpy.c: New file.
41249         * lib/unistr/u16-stpcpy.c: New file.
41250         * lib/unistr/u32-stpcpy.c: New file.
41251         * lib/unistr/u-stpcpy.h: New file.
41252
41253         * modules/unistr/u8-stpncpy: New file.
41254         * modules/unistr/u16-stpncpy: New file.
41255         * modules/unistr/u32-stpncpy: New file.
41256         * lib/unistr/u8-stpncpy.c: New file.
41257         * lib/unistr/u16-stpncpy.c: New file.
41258         * lib/unistr/u32-stpncpy.c: New file.
41259         * lib/unistr/u-stpncpy.h: New file.
41260
41261         * modules/unistr/u8-strcat: New file.
41262         * modules/unistr/u16-strcat: New file.
41263         * modules/unistr/u32-strcat: New file.
41264         * lib/unistr/u8-strcat.c: New file.
41265         * lib/unistr/u16-strcat.c: New file.
41266         * lib/unistr/u32-strcat.c: New file.
41267         * lib/unistr/u-strcat.h: New file.
41268
41269         * modules/unistr/u8-strchr: New file.
41270         * modules/unistr/u16-strchr: New file.
41271         * modules/unistr/u32-strchr: New file.
41272         * lib/unistr/u8-strchr.c: New file.
41273         * lib/unistr/u16-strchr.c: New file.
41274         * lib/unistr/u32-strchr.c: New file.
41275
41276         * modules/unistr/u8-strcmp: New file.
41277         * modules/unistr/u16-strcmp: New file.
41278         * modules/unistr/u32-strcmp: New file.
41279         * lib/unistr/u8-strcmp.c: New file.
41280         * lib/unistr/u16-strcmp.c: New file.
41281         * lib/unistr/u32-strcmp.c: New file.
41282
41283         * modules/unistr/u8-strcpy: New file.
41284         * modules/unistr/u16-strcpy: New file.
41285         * modules/unistr/u32-strcpy: New file.
41286         * lib/unistr/u8-strcpy.c: New file.
41287         * lib/unistr/u16-strcpy.c: New file.
41288         * lib/unistr/u32-strcpy.c: New file.
41289         * lib/unistr/u-strcpy.h: New file.
41290
41291         * modules/unistr/u8-strcspn: New file.
41292         * modules/unistr/u16-strcspn: New file.
41293         * modules/unistr/u32-strcspn: New file.
41294         * lib/unistr/u8-strcspn.c: New file.
41295         * lib/unistr/u16-strcspn.c: New file.
41296         * lib/unistr/u32-strcspn.c: New file.
41297         * lib/unistr/u-strcspn.h: New file.
41298
41299         * modules/unistr/u8-strdup: New file.
41300         * modules/unistr/u16-strdup: New file.
41301         * modules/unistr/u32-strdup: New file.
41302         * lib/unistr/u8-strdup.c: New file.
41303         * lib/unistr/u16-strdup.c: New file.
41304         * lib/unistr/u32-strdup.c: New file.
41305         * lib/unistr/u-strdup.h: New file.
41306
41307         * modules/unistr/u8-strlen: New file.
41308         * modules/unistr/u16-strlen: New file.
41309         * modules/unistr/u32-strlen: New file.
41310         * lib/unistr/u8-strlen.c: New file.
41311         * lib/unistr/u16-strlen.c: New file.
41312         * lib/unistr/u32-strlen.c: New file.
41313         * lib/unistr/u-strlen.h: New file.
41314
41315         * modules/unistr/u8-strmblen: New file.
41316         * modules/unistr/u16-strmblen: New file.
41317         * modules/unistr/u32-strmblen: New file.
41318         * lib/unistr/u8-strmblen.c: New file.
41319         * lib/unistr/u16-strmblen.c: New file.
41320         * lib/unistr/u32-strmblen.c: New file.
41321
41322         * modules/unistr/u8-strmbtouc: New file.
41323         * modules/unistr/u16-strmbtouc: New file.
41324         * modules/unistr/u32-strmbtouc: New file.
41325         * lib/unistr/u8-strmbtouc.c: New file.
41326         * lib/unistr/u16-strmbtouc.c: New file.
41327         * lib/unistr/u32-strmbtouc.c: New file.
41328
41329         * modules/unistr/u8-strncat: New file.
41330         * modules/unistr/u16-strncat: New file.
41331         * modules/unistr/u32-strncat: New file.
41332         * lib/unistr/u8-strncat.c: New file.
41333         * lib/unistr/u16-strncat.c: New file.
41334         * lib/unistr/u32-strncat.c: New file.
41335         * lib/unistr/u-strncat.h: New file.
41336
41337         * modules/unistr/u8-strncmp: New file.
41338         * modules/unistr/u16-strncmp: New file.
41339         * modules/unistr/u32-strncmp: New file.
41340         * lib/unistr/u8-strncmp.c: New file.
41341         * lib/unistr/u16-strncmp.c: New file.
41342         * lib/unistr/u32-strncmp.c: New file.
41343
41344         * modules/unistr/u8-strncpy: New file.
41345         * modules/unistr/u16-strncpy: New file.
41346         * modules/unistr/u32-strncpy: New file.
41347         * lib/unistr/u8-strncpy.c: New file.
41348         * lib/unistr/u16-strncpy.c: New file.
41349         * lib/unistr/u32-strncpy.c: New file.
41350         * lib/unistr/u-strncpy.h: New file.
41351
41352         * modules/unistr/u8-strnlen: New file.
41353         * modules/unistr/u16-strnlen: New file.
41354         * modules/unistr/u32-strnlen: New file.
41355         * lib/unistr/u8-strnlen.c: New file.
41356         * lib/unistr/u16-strnlen.c: New file.
41357         * lib/unistr/u32-strnlen.c: New file.
41358         * lib/unistr/u-strnlen.h: New file.
41359
41360         * modules/unistr/u8-strpbrk: New file.
41361         * modules/unistr/u16-strpbrk: New file.
41362         * modules/unistr/u32-strpbrk: New file.
41363         * lib/unistr/u8-strpbrk.c: New file.
41364         * lib/unistr/u16-strpbrk.c: New file.
41365         * lib/unistr/u32-strpbrk.c: New file.
41366         * lib/unistr/u-strpbrk.h: New file.
41367
41368         * modules/unistr/u8-strrchr: New file.
41369         * modules/unistr/u16-strrchr: New file.
41370         * modules/unistr/u32-strrchr: New file.
41371         * lib/unistr/u8-strrchr.c: New file.
41372         * lib/unistr/u16-strrchr.c: New file.
41373         * lib/unistr/u32-strrchr.c: New file.
41374
41375         * modules/unistr/u8-strspn: New file.
41376         * modules/unistr/u16-strspn: New file.
41377         * modules/unistr/u32-strspn: New file.
41378         * lib/unistr/u8-strspn.c: New file.
41379         * lib/unistr/u16-strspn.c: New file.
41380         * lib/unistr/u32-strspn.c: New file.
41381         * lib/unistr/u-strspn.h: New file.
41382
41383         * modules/unistr/u8-strstr: New file.
41384         * modules/unistr/u16-strstr: New file.
41385         * modules/unistr/u32-strstr: New file.
41386         * lib/unistr/u8-strstr.c: New file.
41387         * lib/unistr/u16-strstr.c: New file.
41388         * lib/unistr/u32-strstr.c: New file.
41389         * lib/unistr/u-strstr.h: New file.
41390
41391         * modules/unistr/u8-strtok: New file.
41392         * modules/unistr/u16-strtok: New file.
41393         * modules/unistr/u32-strtok: New file.
41394         * lib/unistr/u8-strtok.c: New file.
41395         * lib/unistr/u16-strtok.c: New file.
41396         * lib/unistr/u32-strtok.c: New file.
41397         * lib/unistr/u-strtok.h: New file.
41398
41399         * modules/unistr/u8-uctomb: New file.
41400         * modules/unistr/u16-uctomb: New file.
41401         * modules/unistr/u32-uctomb: New file.
41402         * lib/unistr/u8-uctomb.c: New file.
41403         * lib/unistr/u16-uctomb.c: New file.
41404         * lib/unistr/u32-uctomb.c: New file.
41405
41406         * MODULES.html.sh (Unicode string functions): Add the new modules.
41407
41408 2007-01-08  Bruno Haible  <bruno@clisp.org>
41409
41410         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
41411         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
41412         subdirectories.
41413
41414 2007-01-08  Karl Berry  <karl@gnu.org>
41415
41416         * doc/error.texi: mention that main() fns must set program_name
41417         when progname is used.
41418
41419 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
41420
41421         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
41422         WCTYPE_H is empty, for the benefit of builds from non-distclean
41423         directories.  Problem reported by Eric Blake in
41424         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
41425
41426 2007-01-08  Bruno Haible  <bruno@clisp.org>
41427
41428         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
41429         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
41430         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
41431         PROVIDE_CANONICALIZE_FILENAME_MODE.
41432         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
41433
41434 2007-01-08  Bruno Haible  <bruno@clisp.org>
41435
41436         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
41437         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
41438         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
41439         * lib/fts.c: Likewise.
41440         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
41441
41442 2006-12-25  Bruno Haible  <bruno@clisp.org>
41443
41444         * modules/utf8-ucs4-safe: New file.
41445         * lib/utf8-ucs4-safe.h: New file.
41446         * lib/unistr/utf8-ucs4-safe.c: New file.
41447
41448         * modules/utf16-ucs4-safe: New file.
41449         * lib/utf16-ucs4-safe.h: New file.
41450         * lib/unistr/utf16-ucs4-safe.c: New file.
41451
41452         * MODULES.html.sh (Unicode string functions): Add the new modules.
41453
41454 2007-01-08  Bruno Haible  <bruno@clisp.org>
41455
41456         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
41457         (Depends-on): Add unitypes.
41458         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
41459         (u8_mbtouc_aux): Move out to separate file.
41460         (u8_mbtouc): Use ucs4_t, uint8_t types.
41461         * lib/unistr/utf8-ucs4.c: New file.
41462
41463         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
41464         (Depends-on): Add unitypes.
41465         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
41466         (u16_mbtouc_aux): Move out to separate file.
41467         (u16_mbtouc): Use ucs4_t, uint16_t types.
41468         * lib/unistr/utf16-ucs4.c: New file.
41469
41470         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
41471         (Depends-on): Add unitypes.
41472         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
41473         (u8_uctomb_aux): Move out to separate file.
41474         (u8_uctomb): Use ucs4_t, uint8_t types.
41475         * lib/unistr/ucs4-utf8.c: New file.
41476
41477         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
41478         (Depends-on): Add unitypes.
41479         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
41480         (u16_uctomb_aux): Move out to separate file.
41481         (u16_uctomb): Use ucs4_t, uint16_t types.
41482         * lib/unistr/ucs4-utf16.c: New file.
41483
41484 2006-12-25  Bruno Haible  <bruno@clisp.org>
41485
41486         * modules/unitypes: New file.
41487         * lib/unitypes.h: New file.
41488         * MODULES.html.sh (func_all_modules): New section "Unicode string
41489         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
41490         this section. Add unitypes.
41491
41492 2007-01-08  Bruno Haible  <bruno@clisp.org>
41493
41494         Avoid variable names that conflict with those from libtool.
41495         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
41496         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
41497         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
41498         library_names_spec to acl_library_names_spec, hardcode_* to
41499         acl_hardcode_*.
41500         Reported by Ralf Wildenhues.
41501
41502 2007-01-08  Bruno Haible  <bruno@clisp.org>
41503
41504         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
41505         definition.
41506         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
41507         definition.
41508         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
41509         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
41510         definition.
41511         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
41512         definition.
41513         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
41514         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
41515         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
41516         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
41517         definition.
41518         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
41519         definition.
41520         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
41521         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
41522         GC_USE_<algorithm>.
41523         * lib/gc-libgcrypt.c: Likewise.
41524         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
41525         * modules/gc-arctwo (configure.ac): Likewise.
41526         * modules/gc-des (configure.ac): Likewise.
41527         * modules/gc-hmac-md5 (configure.ac): Likewise.
41528         * modules/gc-hmac-sha1 (configure.ac): Likewise.
41529         * modules/gc-md2 (configure.ac): Likewise.
41530         * modules/gc-md4 (configure.ac): Likewise.
41531         * modules/gc-md5 (configure.ac): Likewise.
41532         * modules/gc-random (configure.ac): Likewise.
41533         * modules/gc-rijndael (configure.ac): Likewise.
41534         * modules/gc-sha1 (configure.ac): Likewise.
41535
41536 2007-01-08  Bruno Haible  <bruno@clisp.org>
41537
41538         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
41539         macro definition.
41540         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
41541         definition.
41542         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
41543         definition.
41544         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
41545         * modules/fcntl-safer (configure.ac): Likewise.
41546         * modules/fopen-safer (configure.ac): Likewise.
41547         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
41548         GNULIB_FWRITEERROR macro definition.
41549
41550 2007-01-08  Bruno Haible  <bruno@clisp.org>
41551
41552         * m4/gnulib-common.m4: New file.
41553         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
41554         (func_get_filelist): Add m4/gnulib-common.m4.
41555
41556 2007-01-08  Bruno Haible  <bruno@clisp.org>
41557
41558         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
41559         command.
41560
41561 2007-01-08  Jim Meyering  <jim@meyering.net>
41562
41563         Use a more robust test for a "can't happen" condition.
41564         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
41565         narrowed the st_size value.  Presuming the "can't happen" condition
41566         is true, that narrowing could conceivably convert an invalid st_size
41567         value into a valid one.  Instead, use a change based on Matthew
41568         Woehlke's original patch.
41569
41570         Slight readability improvement: use an assert-like macro
41571         in place of literal "abort ()" uses.
41572         * lib/fts.c (fts_assert): Define.
41573         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
41574         Use this macro instead of a bare 'abort'.
41575
41576 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
41577
41578         Don't worry about using IRIX 5.3's wctype.h broken definitions;
41579         simply work around them.
41580         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
41581         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
41582         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
41583         declaring.
41584         Don't bother to define as macros, since the standard doesn't require it.
41585         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
41586         longer worry about IRIX 5.3.
41587         (HAVE_WCTYPE_CTMP_BUG): Remove.
41588
41589 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41590
41591         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
41592         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
41593         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
41594         Problems reported by Georg Schwarz for IRIX 5.3.
41595
41596         * gnulib-tool (autoconf_minversion): Take the maximum version number
41597         found, not the minimum.  Problem reported by James Youngman.
41598
41599 2007-01-03  Karl Berry  <karl@gnu.org>
41600
41601         * doc/error.texi: new file, explaining interaction with progname.
41602         * doc/gnulib.texi: include it.  Update copyright.
41603
41604 2007-01-03  Simon Josefsson  <simon@josefsson.org>
41605
41606         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
41607         AC_CANONICAL_HOST, to improve autobuild outputs.
41608
41609 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
41610             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
41611
41612         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
41613         sockets, server sockets, and other file descriptors.  Count errors
41614         to compute the return value.  Reorder the code a bit to be easier
41615         to follow.  Don't set event bits that were not requested (except
41616         POLLERR and POLLHUP).
41617
41618 2007-01-01  Bruno Haible  <bruno@clisp.org>
41619
41620         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
41621
41622 2007-01-03  Jim Meyering  <jim@meyering.net>
41623
41624         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
41625
41626 2007-01-02  Bruno Haible  <bruno@clisp.org>
41627
41628         * modules/settime (Include): Require timespec.h.
41629         * modules/nanosleep (Include): Likewise.
41630
41631 2007-01-01  Bruno Haible  <bruno@clisp.org>
41632
41633         * gnulib-tool (func_emit_copyright_notice): Bump year.
41634         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
41635
41636 2007-01-01  Bruno Haible  <bruno@clisp.org>
41637
41638         Improve support for OpenBSD.
41639         * build-aux/config.rpath (libname_spec): Export.
41640         (library_names_spec): New variable. Export.
41641         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
41642         library_names_spec from the config.rpath output. Locate shared library
41643         through the name pattern in library_names_spec.
41644
41645 2007-01-01  Eric Blake  <ebb9@byu.net>
41646
41647         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
41648
41649 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
41650
41651         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
41652         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
41653         assume the C locale, and avoid an "eval" that could cause trouble.
41654         Problem with SORT reported by Bob Proulx.
41655
41656         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
41657         Define.  Trivial patch from Henning Nielsen Lund, originally
41658         sent to bug-grep@gnu.org today.
41659
41660 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
41661
41662         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
41663         struct stat.  Problem reported by Henning Nielsen Lund.
41664         * lib/acl.c: Include acl.h first, to check interface.  Don't
41665         bother to include sys/types.h and sys/stat.h again.
41666
41667 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
41668
41669         Import the following change from libc; problem reported by
41670         Sven Verdoolaege.
41671
41672         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
41673
41674         [BZ #1373]
41675         * lib/argp.h: Remove __NTH for __argp_usage inline function.
41676
41677 2006-12-28  Jim Meyering  <jim@meyering.net>
41678
41679         * build-aux/announce-gen: Do not assume that the package
41680         builds any of tar.gz, tar.bz2, and .xdelta files.
41681         Suggestion from Simon Josefsson.
41682
41683 2006-12-28  Simon Josefsson  <simon@josefsson.org>
41684
41685         * modules/announce-gen: New file.
41686
41687 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
41688
41689         * lib/mbchar.h: Just include <wctype.h>; the wctype module
41690         handles its gotchas now.
41691         * lib/mbswidth.c: Likewise.
41692         * lib/wcwidth.h: Likewise.
41693         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
41694         and iswcntrl; the wctype module does this stuff now.
41695         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
41696         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
41697         * modules/mbchar (Depends-on): Add wctype.
41698         * modules/mbswidth (Depends-on): Likewise.
41699         * modules/wcwidth (Depends-on): Likewise.
41700
41701 2006-12-27  Eric Blake  <ebb9@byu.net>
41702
41703         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
41704         module uses more than what <wctype.h> is required to provide.
41705
41706 2006-12-26  Eric Blake  <ebb9@byu.net>
41707
41708         * gnulib-tool (sed_extract_prog): Avoid space-tab.
41709
41710 2006-12-26  Eric Blake  <ebb9@byu.net>
41711
41712         * modules/absolute-header: New module.
41713         * modules/fcntl (Depends-on): Depend on it.
41714         * modules/inttypes (Depends-on): Likewise.
41715         * modules/stdint (Depends-on): Likewise.
41716         * modules/sys_stat (Depends-on): Likewise.
41717         * modules/wctype (Depends-on): Likewise.
41718         * MODULES.html.sh (Support for building libraries and
41719         executables): Document it.
41720
41721 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
41722
41723         * gnulib-tool (SED): Remove, undoing previous change.
41724         The problem was that it broke coreutils on Solaris, because
41725         "sed --posix" leaked into a makefile.
41726         (sed): New alias, if 'alias' and GNU sed.
41727
41728 2006-12-24  Jim Meyering  <jim@meyering.net>
41729
41730         Work around an fchownat bug in glibc-2.4:
41731         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
41732         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
41733         in spite of the -P option.
41734         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
41735         New macros.
41736         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
41737         * modules/openat (Files): Add lib/fchownat.c.
41738         * lib/openat.c (fchownat): Don't define here.  Move to...
41739         * lib/fchownat.c: ...this new file.
41740
41741 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
41742
41743         Fix bug reported by Bruno Haible in
41744         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
41745         where quotearg.c didn't compile on Mac OS X 10.2 because it
41746         lacks <wchar.h> and wint_t.
41747         * lib/wctype_.h (__wctype_wint_t): New type.
41748         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
41749         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
41750         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
41751         Arg is now of type __wctype_wint_t, not wint_t.
41752         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
41753         substitute HAVE_WINT_T.
41754         * modules/wctype (Files): Add m4/wint_t.m4.
41755         (wctype.h): Substitute HAVE_WINT_T.
41756
41757 2006-12-23  Bruno Haible  <bruno@clisp.org>
41758
41759         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
41760
41761 2006-12-23  Bruno Haible  <bruno@clisp.org>
41762
41763         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
41764         S_ISLNK.
41765         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
41766         mingw.
41767
41768 2006-12-22  Bruno Haible  <bruno@clisp.org>
41769
41770         * lib/copy-file.c: Include acl.h.
41771         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
41772         Close the file descriptors only after being done with copy_acl.
41773         * modules/copy-file (Depends-on): Add acl.
41774
41775 2006-12-22  Bruno Haible  <bruno@clisp.org>
41776
41777         * gnulib-tool (SED): New variable.
41778         Use $SED instead of sed everywhere.
41779
41780 2006-12-22  Bruno Haible  <bruno@clisp.org>
41781
41782         * modules/no-c++: New file.
41783         * m4/no-c++.m4: New file.
41784         * MODULES.html.sh (Support for building libraries and executables):
41785         Add no-c++.
41786
41787 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
41788
41789         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
41790         Include <limits.h>, and use its INT_MAX to rewrite the
41791         j loop so that it does not overflow 'int'.  Problem reported by
41792         Ralf Wildenhues in
41793         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
41794         Play it safe by shifting left by 1 rather than multiplying by 2,
41795         as GCC is less likely to optimize this away when the value
41796         is signed (when it assumes overflow leads to undefined behavior).
41797         Also, don't assume time_t uses two's complement.
41798
41799 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
41800
41801         * MODULES.html.sh: New module wctype.
41802         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
41803         * lib/fnmatch.c: Don't bother to include <wchar.h> before
41804         <wctype.h>, since the new wctype module should fix this.
41805         * lib/quotearg.c: Include <wctype.h> unconditionally, since
41806         the wctype module should arrange for it.
41807         * lib/regex_internal.h: Likewise.
41808         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
41809         since the wctype module should handle this now.
41810         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
41811         * modules/fnmatch (Depends-on): Add wctype.
41812         * modules/quotearg (Depends-on): Likewise.
41813         * modules/regex (Depends-on): Likewise.
41814
41815 2006-12-19  Bruno Haible  <bruno@clisp.org>
41816
41817         * lib/strdup.h [C++]: Wrap definitions in extern "C".
41818         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
41819
41820 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41821
41822         * modules/savewd (Depends-on): Fix dependency on fcntl.
41823
41824 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
41825
41826         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
41827         conforms to C99, rather than relying on the user's environment
41828         setting of STDINT_H.
41829
41830 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
41831         and Eric Blake  <ebb9@byu.net>
41832
41833         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
41834         This is more consistent with the other defines here.
41835         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
41836         Port to z/OS.  Problem reported by Paul Gilmartin.
41837         Change local vars to use gl_ prefix rather than ac_.
41838         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
41839         with other defines.
41840         * modules/double-slash-root: New module.
41841         * modules/dirname (Files): Remove m4/double-slash-root.m4.
41842         (Depends-on): Add double-slash-root.
41843         * MODULES.html.sh (File system functions): Mention new module.
41844
41845 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
41846
41847         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
41848         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
41849         This is for the benefit of gzip, which doesn't do i18n.
41850
41851 2006-12-12  Jim Meyering  <jim@meyering.net>
41852
41853         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
41854         Reported by Andreas Schwab <schwab@suse.de>.
41855
41856 2006-12-12  Bruno Haible  <bruno@clisp.org>
41857
41858         Merge these changes.
41859         2006-09-05  Bruno Haible  <bruno@clisp.org>
41860         * lib/iconvme.c (iconv_string): No need to save and restore errno when
41861         iconv_alloc succeeded.
41862         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
41863         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
41864         test for " && dest " at the end - dest is always != NULL there. Call
41865         iconv with 4xNULL arguments initially, to reset the state. Call iconv
41866         with 2xNULL arguments, also to flush the state storage. Handle the
41867         IRIX iconv behaviour. Realloc the final result, to throw away unused
41868         memory.
41869
41870 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
41871
41872         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
41873         and fchmodat unconditionally, since glibc 2.4 has them.
41874         Problem reported by Arkadiusz Miskiewicz.
41875
41876 2006-12-10  Bruno Haible  <bruno@clisp.org>
41877
41878         * gnulib-tool (func_import): Show the include files only for those
41879         modules that are copied and specified.
41880         Reported by Karl Berry.
41881
41882 2006-12-08  Jim Meyering  <jim@meyering.net>
41883
41884         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
41885         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
41886
41887         * build-aux/announce-gen: Add two new options, both optional:
41888         --bootstrap-tools=TOOL_LIST
41889               a comma-separated list of tools, e.g.,
41890               autoconf,automake,bison,gnulib
41891         --gnulib-snapshot-date=DATE
41892               if gnulib is in the bootstrap tool list,
41893               then report this as the snapshot date.
41894               If not specified, use the current date/time.
41895               If you specify a date here, be sure it's UTC.
41896
41897 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41898
41899         * tests/test-argp-2.sh: Fix test to match actual output.
41900         (func_compare): Fix sed script to be portable.
41901
41902 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
41903
41904         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
41905         workaround for this case.  It is not autoconfigured now; offhand
41906         it's hard to see how to autoconfigure it.
41907
41908 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
41909
41910         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
41911         a directory that is about to be chowned.  Such a directory's
41912         initial file permissions should permit the owner only and this
41913         should not be changed until after the chown, since the group and
41914         other bits would be incorrect if they granted permission before
41915         the chown.
41916
41917         Fix porting problem for iswctype reported by Georg Schwarz in:
41918         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
41919         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
41920         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
41921         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
41922         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
41923
41924 2006-12-03  Jim Meyering  <jim@meyering.net>
41925
41926         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
41927         p->fts_statp may not yet be defined.
41928         (fts_read): Instead, set it in the caller, once p->fts_statp is
41929         sure to be defined, and corresponds to a top-level directory.
41930         This bug made du -x fail.  Here's the coreutils test case:
41931         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
41932         Reported by Mike Frysinger.
41933
41934 2006-12-01  Jim Meyering  <jim@meyering.net>
41935
41936         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
41937         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
41938         Reported by Simon Josefsson.
41939
41940 2006-11-30  Jim Meyering  <jim@meyering.net>
41941
41942         * m4/warning.m4: Use the all-permissive copyright notice
41943         recommended by RMS (rather than LGPL).
41944         * m4/vararrays.m4: Likewise.
41945         * m4/flexmember.m4: Likewise.
41946
41947 2006-11-29  Bruno Haible  <bruno@clisp.org>
41948
41949         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
41950         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
41951         using +=.
41952         Reported by Simon Josefsson <simon@josefsson.org>.
41953
41954 2006-11-28  James Youngman <jay@gnu.org>
41955
41956         * README: Advise users that they might find the bug-gnulib@gnu.org
41957         and autotools-announce@gnu.org mailing lists useful.
41958
41959 2006-11-28  Bruno Haible  <bruno@clisp.org>
41960
41961         * m4/ptrdiff_max.m4: Remove file.
41962
41963 2006-11-21  Bruno Haible  <bruno@clisp.org>
41964
41965         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
41966         _AC_COMPUTE_INT.
41967         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41968         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
41969         _AC_COMPUTE_INT.
41970         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41971         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
41972         _AC_COMPUTE_INT.
41973         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41974
41975 2006-11-28  Jim Meyering  <jim@meyering.net>
41976
41977         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
41978         warning from "gcc -Wshadow" about shadowing the builtin.
41979
41980 2006-11-27  Bruno Haible  <bruno@clisp.org>
41981
41982         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
41983         _AC_COMPUTE_INT.
41984         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
41985
41986 2006-11-27  Bruno Haible  <bruno@clisp.org>
41987             Paul Eggert  <eggert@cs.ucla.edu>
41988
41989         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
41990
41991 2006-11-26  Bruno Haible  <bruno@clisp.org>
41992
41993         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
41994         noinst_LTLIBRARIES.
41995
41996 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
41997             Bruno Haible  <bruno@clisp.org>
41998
41999         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
42000         if compiling with "gcc -ansi".
42001
42002 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
42003
42004         Fix some incompatibilities with gcc -ansi -pedantic.
42005         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
42006         if compiling pedantically with GCC, unless it's C99 or later.
42007         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
42008         it mishandles gcc -ansi -pedantic as well.
42009         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
42010         if gcc -pedantic.
42011         * lib/regexec.c (check_node_accept_bytes): Don't use auto
42012         initializers for struct if -pedantic, unless it's C99 or later.
42013
42014 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
42015
42016         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
42017         Don't close an fd more than once. Identical atimes indicate
42018         success, not failure.
42019
42020 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
42021
42022         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
42023
42024 2006-11-23  Jim Meyering  <jim@meyering.net>
42025
42026         * build-aux/announce-gen: New file.  From coreutils.
42027
42028 2006-11-22  Jim Meyering  <jim@meyering.net>
42029
42030         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
42031         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
42032         (fts_read): Use a temporary to narrow the overused st_size member
42033         before using it in a switch statement.  Reported by Matthew Woehlke.
42034
42035         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
42036         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
42037
42038 2006-11-20  Bruno Haible  <bruno@clisp.org>
42039
42040         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
42041         changequote instead of pairs of brackets.
42042         Reported by Andreas Schwab <schwab@suse.de>.
42043
42044 2006-11-21  Jim Meyering  <jim@meyering.net>
42045
42046         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
42047         so as to remain compatible with older compilers.
42048         Patch from Michael Deutschmann.
42049
42050 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
42051
42052         * MODULES.html.sh (File system functions): Add openat.
42053
42054         * lib/openat.h (rpl_fstatat): New macro, if
42055         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
42056         (fstatat): Define to rpl_fstatat under the same conditions,
42057         unless COMPILING_FSTATAT.
42058         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
42059         seems to have the bug.
42060         * lib/fstatat.c: New file.
42061         * modules/openat (Files): Add it.
42062
42063 2006-11-20  Bruno Haible  <bruno@clisp.org>
42064
42065         * Makefile: New file.
42066
42067 2006-11-20  Jim Meyering  <jim@meyering.net>
42068
42069         The beginnings of syntax-related checks for gnulib.
42070         * lib/Makefile: New file.
42071         * lib/t-idcache: New script.  Ensure that the two halves of
42072         idcache.c stay in sync.
42073
42074         * lib/idcache.c: Adjust comments in user- and group- portions to
42075         be more accurate, and to be consistent with one another.
42076
42077 2006-11-20  Jim Meyering  <jim@meyering.net>
42078
42079         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
42080         continue using the flexible array member (thus, this module performs
42081         half as many malloc calls), with the addition that...
42082         (getgroup, getuser): Consistently record a non-match via an empty
42083         "name" string, and map an empty string match to a NULL return value.
42084         * modules/idcache (Depends-on): Re-add flexmember.
42085
42086         * lib/idcache.c (getuser): Remove all uses of the register keyword.
42087         (getuidbyname, getgroup, getgidbyname): Likewise.
42088
42089         Use cleaner syntax: NULL rather than 0.
42090         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
42091
42092 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
42093
42094         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
42095         It mishandled the case where the group was missing.
42096         Problem reported by Greg Schafer.
42097         * modules/idcache: Likewise.
42098
42099 2006-11-18  Jim Meyering  <jim@meyering.net>
42100
42101         * check-module (%exempt_header): Add exception for some
42102         conditionally-included headers.
42103
42104         * modules/i-ring (Depends-on): Add verify.
42105         (License): Change to LGPL.
42106
42107 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
42108
42109         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
42110         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
42111         and inttostr.h.  Use snprintf rather than uinttostr, so that
42112         LGPLed code doesn't depend on GPLed.
42113
42114 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
42115
42116         * modules/inline (License): Change from GPL to LGPL.
42117
42118 2006-11-17  Jim Meyering  <jim@meyering.net>
42119
42120         * modules/d-type (License): Switch to LGPL.
42121
42122 2006-11-15  Bruno Haible  <bruno@clisp.org>
42123
42124         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
42125
42126 2006-11-15  Eric Blake  <ebb9@byu.net>
42127
42128         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
42129         the module dependency.
42130
42131 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
42132             Bruno Haible  <bruno@clisp.org>
42133
42134         * gnulib-tool (func_create_testdir): Add license consistency check.
42135
42136 2006-11-15  Eric Blake  <ebb9@byu.net>
42137
42138         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
42139         random "(cached)" in configure output.
42140
42141 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42142
42143         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
42144         test for conforming inttypes.h is both announced and cached.
42145
42146         * MODULES.html.sh (seen_modules, seen_files): New variables.
42147         (func_module): Rewrite to use a few less gnulib-tool and sed
42148         invocations.  Avoid a couple of quadratic algorithms for ...
42149         (missed_modules, missed_files): ... these, with ...
42150         (func_append, func_tmpdir): ... these new functions, from
42151         gnulib-tool.  Analogously, install traps for cleanup.
42152
42153         * tests/test-gc.c (main): Remove unused variables.
42154         * tests/test-read-file.c: Include stdlib.h, for 'free'.
42155
42156 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
42157
42158         * modules/inttostr (License): Change to LGPL.
42159
42160 2006-11-14  Eric Blake  <ebb9@byu.net>
42161
42162         * modules/tempname (License): Change to LGPL.
42163
42164 2006-11-14  Eric Blake  <ebb9@byu.net>
42165
42166         * doc/functions.texi (Function Portability): *printf functions on
42167         Cygwin now understand all POSIX size specifiers.
42168
42169 2006-11-14  Bruno Haible  <bruno@clisp.org>
42170
42171         * modules/c-ctype (License): Change to LGPL.
42172
42173 2006-11-12  Bruno Haible  <bruno@clisp.org>
42174
42175         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
42176         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
42177         for GNOME libraries, for which the include files are installed in
42178         subdirectories of $prefix/include.
42179
42180 2006-11-12  Bruno Haible  <bruno@clisp.org>
42181
42182         * m4/lib-link.m4: Require at least autoconf-2.54.
42183         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
42184         name to underscores for the --with option.
42185
42186 2006-11-13  Bruno Haible  <bruno@clisp.org>
42187
42188         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
42189         the tests directory.
42190         Reported by Ralf Wildenhues.
42191
42192 2006-11-13  Bruno Haible  <bruno@clisp.org>
42193
42194         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
42195         (func_emit_initmacro_end): Undo the override here.
42196         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
42197         Works around the famous automake error in coreutils.
42198
42199 2006-11-13  Eric Blake  <ebb9@byu.net>
42200
42201         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
42202         element, not its node.
42203
42204 2006-11-12  Bruno Haible  <bruno@clisp.org>
42205
42206         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
42207         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
42208
42209 2006-11-12  Bruno Haible  <bruno@clisp.org>
42210
42211         * gnulib-tool: New option --local-symlink.
42212         (func_usage): Document it.
42213         (lsymbolic): New variable.
42214         (func_import, func_create_testdir): If --symlink was not specified,
42215         test whether --local-symlink was specified and the file comes from
42216         the local_gnulib_dir.
42217
42218 2006-11-12  Bruno Haible  <bruno@clisp.org>
42219
42220         * gnulib-tool (func_ln): New function.
42221         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
42222
42223 2006-11-12  Bruno Haible  <bruno@clisp.org>
42224
42225         Finish support for source files in subdirectories.
42226         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
42227         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
42228         AUTOMAKE_OPTIONS.
42229         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
42230
42231 2006-11-12  Bruno Haible  <bruno@clisp.org>
42232
42233         * gnulib-tool (func_get_automake_snippet): Synthesize also an
42234         EXTRA_lib_SOURCES augmentation.
42235         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
42236
42237 2006-11-12  Jim Meyering  <jim@meyering.net>
42238
42239         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
42240         file descriptors.  This also averts a failure on systems with
42241         native openat support when a traversed directory lacks "x" access.
42242         * lib/fts_.h: Include "i-ring.h"
42243         (struct FTS) [fts_fd_ring]: New member.
42244         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
42245         (FCHDIR): Add parentheses.
42246         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
42247         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
42248         When descending, rather than simply closing the previous
42249         fts_cwd_fd value, push that file descriptor onto the ring.
42250         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
42251         (fts_open): Initialize the new fd_ring member.
42252         (fts_close): Clear the ring.
42253         (fts_safe_changedir): When possible, use our new fd_ring to skip
42254         the diropen and fstat and dev/ino comparison that would normally
42255         accompany a virtual `chdir ("..")'.
42256
42257         * modules/fts (Depends-on): Add i-ring.
42258         * modules/i-ring: New module.
42259         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
42260         * m4/i-ring.m4: New file.
42261
42262 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42263
42264         * gnulib-tool (func_create_testdir): Fix replacement of
42265         `build-aux' in configure.ac.  Run autotools in gltests
42266         subdirectory.
42267         (func_create_testdir, func_create_megatestdir, test): There is
42268         no need for '--force' in most autotool invocations in a new
42269         tree.  Actually fail the whole test if any of the tools, or the
42270         configure or make stages fail.
42271
42272         Sync from Automake.
42273         * build-aux/gnupload: Revert last change.  Add pointer to upload
42274         instructions of the GNU Maintenance Instructions.
42275         Suggestion by Karl Berry.
42276
42277 2006-11-10  Jim Meyering  <jim@meyering.net>
42278
42279         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
42280
42281 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
42282
42283         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
42284         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
42285         (bind_textdomain_codeset) [! ENABLE_NLS]:
42286         Evaluate all the arguments.  That way, callers get compatible behavior
42287         if the arguments have side effects.  Also, it avoids some GCC
42288         diagnostics in some cases; Joel E. Denny reported problems when Bison
42289         was configured with --enable-gcc-warnigs.
42290
42291 2006-11-10  Jim Meyering  <jim@meyering.net>
42292
42293         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
42294         relevant options in CFLAGS (like -O, -fno-inline) are taken into
42295         account.
42296
42297 2006-11-10  Jim Meyering  <jim@meyering.net>
42298
42299         * modules/inline: New file/module.
42300         * modules/xalloc (Files): Remove m4/inline.m4.
42301         (Depends-on): Add inline, instead.
42302         * modules/oset: Likewise.
42303         * modules/list: Likewise.
42304
42305 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
42306
42307         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
42308         Problem reported by Matthew Woehlke.
42309
42310 2006-11-09  Bruno Haible  <bruno@clisp.org>
42311
42312         * lib/tempname.c (gen_tempname): Remove variant that invokes
42313         __gen_tempname.
42314         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
42315         __gen_tempname.
42316
42317 2006-11-08  Bruno Haible  <bruno@clisp.org>
42318
42319         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
42320         to 'yes' instead of 'cross-compiling'.
42321
42322 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
42323
42324         * lib/quotearg.h (quotearg_free): New decl.
42325         * lib/quotearg.c (quotearg_free): New function.
42326         (slot0, nslots, slotvec0, slotvec):
42327         Now file-scope so that quotearg_free can get at them.
42328
42329 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42330
42331         Sync from Automake.
42332         * build-aux/gnupload: Add missing 'gnu' to example URL.
42333         Report by Karl Berry.
42334
42335 2006-11-08  Bruno Haible  <bruno@clisp.org>
42336
42337         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
42338         Suggested by Paul Eggert.
42339
42340 2006-11-08  Jim Meyering  <jim@meyering.net>
42341
42342         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
42343         It's already included if !_LIBC.
42344         (fts_safe_changedir): Add a comment.
42345
42346 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
42347
42348         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
42349         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
42350         Matthew Woehlke.
42351
42352         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
42353         definitions up, to avoid colliding with change below.
42354         (static_inline) [HAVE_INLINE]: New macro.
42355         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
42356         Provide extern decls when !HAVE_INLINE.  Do not define unless
42357         static_inline is defined, either by us or by xmalloc.c.  Use
42358         static_inline rather than static inline.
42359         (XCALLOC): Optimize sizeof(T) = 1 case.
42360         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
42361
42362 2006-11-07  Bruno Haible  <bruno@clisp.org>
42363
42364         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
42365         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
42366         AC_C_INLINE.
42367         * modules/xalloc (Files): Add m4/inline.m4.
42368
42369 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42370
42371         * README: Fix typo.
42372         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
42373         (Miscellanous Notes): ...from this.
42374
42375 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
42376
42377         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
42378         Mention that offsetof should be used instead of sizeof.
42379         From Bruno Haible.
42380
42381 2006-11-07  Bruno Haible  <bruno@clisp.org>
42382
42383         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
42384
42385 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
42386
42387         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
42388         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
42389         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
42390         (gl_tree_add_before, gl_tree_add_after):
42391         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
42392         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
42393         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
42394         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
42395         (gl_linked_add_after, gl_linked_add_at): Likewise.
42396         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
42397         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
42398         (gl_tree_add_before, gl_tree_add_after): Likewise.
42399         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
42400         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
42401         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
42402
42403 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42404
42405         * lib/gl_oset.h: Use C comment style, not C++ comment style.
42406
42407 2006-11-06  Bruno Haible  <bruno@clisp.org>
42408
42409         * m4/inline.m4: New file.
42410         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
42411         * modules/list (Files): Add m4/inline.m4.
42412         * modules/oset (Files): Likewise.
42413
42414 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
42415
42416         * lib/idcache.c: Include <stddef.h>, for offsetof.
42417         (struct userid.name): Change from char * to a flexible array member.
42418         All uses changed.
42419         * modules/idcache (Depends-on): Add flexmember.
42420
42421         * MODULES.html.sh (Core language properties): New module flexmember.
42422         * modules/flexmember, m4/flexmember.m4: New files.
42423
42424         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
42425         inline functions that are identical with the old xnmalloc_inline,
42426         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
42427         that we can avoid some unnecessary integer multiplications and
42428         divisions in the common case where the element size is known at
42429         compile time.
42430         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
42431         needed.
42432         (xnboundedmalloc): Remove.
42433         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
42434         arguments, for consistency with rest of this header.
42435         (xcharalloc): Rewrite using XNMALLOC.
42436         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
42437         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
42438         versions have been moved to lib/xalloc.h and renamed to be the
42439         non-*_inline versions.
42440         (xmalloc, xrealloc): Implement without reference to the xnmalloc
42441         and xnrealloc functions, since those functions are now inline and
42442         now call us.
42443         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
42444         renaming described above.
42445         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
42446         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
42447         captures the dependency in AC_C_INLINE.
42448
42449         New module canonicalize-lgpl, proposed by Charles Wilson in
42450         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
42451         with a few small changes afterwards.
42452         * MODULES.html.sh (File system functions): New module
42453         canonicalize-lgpl.
42454         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
42455         and canonicalize_file_name.
42456         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
42457         * modules/canonicalize-lgpl: New files.
42458
42459 2006-11-05  Bruno Haible  <bruno@clisp.org>
42460
42461         * gnulib-tool (func_import, func_create_testdir): Create directories
42462         also for files in subdirectories of lib/.
42463
42464 2006-11-05  Bruno Haible  <bruno@clisp.org>
42465
42466         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
42467         ANSI C compliant.
42468
42469 2006-11-03  Bruno Haible  <bruno@clisp.org>
42470
42471         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
42472         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
42473         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
42474         (xnboundedmalloc): New inline function.
42475         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
42476         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
42477         xmalloc.
42478         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
42479         xmalloc.
42480         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
42481         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
42482         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
42483         xmalloc.
42484         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
42485         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
42486         xmalloc.
42487         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
42488         gl_tree_add_after): Use XMALLOC instead of xmalloc.
42489         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
42490         xmalloc.
42491         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
42492         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
42493         gl_tree_add_after): Use XMALLOC instead of xmalloc.
42494         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
42495         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
42496         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
42497         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
42498
42499 2006-11-03  Bruno Haible  <bruno@clisp.org>
42500
42501         * lib/c-ctype.h [C++]: Define functions without name mangling.
42502         * lib/fwriteerror.h [C++]: Likewise.
42503         * lib/gcd.h [C++]: Likewise.
42504         * lib/linebreak.h [C++]: Likewise.
42505
42506 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
42507
42508         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
42509         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
42510         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
42511         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
42512         Check for functions and headers just once.
42513         Check for declaration of canonicalize_file_name.
42514         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
42515
42516 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
42517
42518         * gnulib-tool (func_import): Fix typo in actioncmd.
42519
42520 2006-11-02  Bruno Haible  <bruno@clisp.org>
42521
42522         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
42523         newline sequence in the Makefile.am snippet as a space, like "make"
42524         does.
42525         Reported by Roger Persson <perrog@gmail.com>.
42526
42527 2006-11-01  Bruno Haible  <bruno@clisp.org>
42528
42529         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
42530         already declared in <string.h>.
42531         * lib/strcase.h (strncasecmp): Don't declare it if yes.
42532
42533 2006-11-01  Bruno Haible  <bruno@clisp.org>
42534
42535         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
42536         * lib/strcase.h: Include <string.h>.
42537         (strcasecmp): Define to rpl_strcasecmp here.
42538
42539 2006-11-01  Bruno Haible  <bruno@clisp.org>
42540
42541         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
42542
42543 2006-11-01  Eric Blake  <ebb9@byu.net>
42544
42545         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
42546
42547         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
42548
42549 2006-10-29  Bruno Haible  <bruno@clisp.org>
42550
42551         Make it compile in C++ mode.
42552         * lib/full-write.c (full_rw): Add a cast.
42553
42554 2006-11-01  Bruno Haible  <bruno@clisp.org>
42555
42556         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
42557         be POSIX compliant.
42558         Reported by Roger Persson <perrog@gmail.com>.
42559
42560 2006-11-01  Eric Blake  <ebb9@byu.net>
42561
42562         * lib/getopt_.h: Fix comments.
42563
42564 2006-10-31  Eric Blake  <ebb9@byu.net>
42565
42566         * modules/tmpdir (Depends-on): Add sys_stat.
42567         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
42568         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
42569         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
42570         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
42571         tempname.
42572
42573 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
42574
42575         Avoid some C++ diagnostics reported by Bruno Haible.
42576         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
42577         xmalloc.
42578         (quotearg_alloc): Use xcharalloc rather than xmalloc.
42579         (struct slotvec): Move to top level.
42580         (quotearg_n_options): Rewrite to avoid xmalloc.
42581         * lib/xalloc.h (xcharalloc): New function.
42582         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
42583         [defined __cplusplus]: Add function template that provides result
42584         type propagation.  This part of the change is from Bruno Haible.
42585
42586 2006-10-29  Bruno Haible  <bruno@clisp.org>
42587
42588         Make it compile in C++ mode.
42589         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
42590         * lib/strnlen1.c (strnlen1): Cast memchr result.
42591         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
42592         * lib/clean-temp.c (string_equals, string_hash): Add casts.
42593         (create_temp_dir): Rename local variable 'template'.
42594         (compile_csharp_using_sscli): Add cast.
42595         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
42596         * lib/findprog.c (find_in_path): Likewise.
42597         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
42598         * lib/wait-process.c (register_slave_subprocess): Likewise.
42599
42600 2006-10-22  Bruno Haible  <bruno@clisp.org>
42601
42602         * modules/tsearch: New file.
42603         * lib/tsearch.h: New file.
42604         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
42605         * m4/tsearch.m4: New file.
42606         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
42607
42608 2006-10-29  Eric Blake  <ebb9@byu.net>
42609
42610         * lib/arcfour.c: Assume config.h.
42611         * lib/arctwo.c: Likewise.
42612         * lib/base64.c: Likewise.
42613         * lib/check-version.c: Likewise.
42614         * lib/crc.c: Likewise.
42615         * lib/des.c: Likewise.
42616         * lib/gc-gnulib.c: Likewise.
42617         * lib/gc-libgcrypt.c: Likewise.
42618         * lib/gc-pbkdf2-sha1.c: Likewise.
42619         * lib/getaddrinfo.c: Likewise.
42620         * lib/getdelim.c: Likewise.
42621         * lib/getline.c: Likewise.
42622         * lib/hmac-md5.c: Likewise.
42623         * lib/hmac-sha1.c: Likewise.
42624         * lib/iconvme.c: Likewise.
42625         * lib/md2.c: Likewise.
42626         * lib/md4.c: Likewise.
42627         * lib/memxor.c: Likewise.
42628         * lib/read-file.c: Likewise.
42629         * lib/readline.c: Likewise.
42630         * lib/rijndael-alg-fst.c: Likewise.
42631         * lib/rijndael-api-fst.c: Likewise.
42632         * lib/xgetdomainname.c: Likewise.
42633
42634 2006-10-28  Eric Blake  <ebb9@byu.net>
42635
42636         * lib/xstrndup.c: Assume config.h.
42637
42638 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
42639
42640         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
42641         stat-macros.h is now for our own macros, whereas stat_h is for
42642         macros in the <sys/stat.h> name space.
42643         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
42644         (STAT_MACROS_H): Remove.
42645         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
42646         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
42647         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
42648         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
42649         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
42650         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
42651         Move these macros to ...
42652         * lib/stat_.h: here.  Don't include stat-macros.h.
42653         * lib/canonicalize.c: Don't include stat-macros.h.
42654         * lib/chown.c: Likewise.
42655         * lib/euidaccess.c: Likewise.
42656         * lib/file-type.c: Likewise.
42657         * lib/filemode.c: Likewise.
42658         * lib/glob.c: Likewise.
42659         * lib/isapipe.c: Likewise.
42660         * lib/lchown.c: Likewise.
42661         * lib/lstat.c: Likewise.
42662         * lib/mkdir-p.c: Likewise.
42663         * lib/rmdir.c: Likewise.
42664         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
42665         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
42666         unless mkdir isn't declared, to speed up 'configure'.
42667         Always create sys/stat.h, since it's unlikely any real sys/stat.h
42668         would define all the S_* symbols.
42669         * modules/canonicalize (Depends-on):
42670         Depend on sys_stat, not stat-macros.
42671         * modules/chown: Likewise.
42672         * modules/euidaccess: Likewise.
42673         * modules/filemode: Likewise.
42674         * modules/file-type: Likewise.
42675         * modules/glob: Likewise.
42676         * modules/isapipe: Likewise.
42677         * modules/lchown: Likewise.
42678         * modules/lstat: Likewise.
42679         * modules/mkancesdirs: Likewise.
42680         * modules/rmdir: Likewise.
42681         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
42682         * modules/modechange: Likewise.
42683         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
42684         (configure.ac): Remove gl_STAT_MACROS.
42685         * modules/sys_stat (Depends-on): Remove stat-macros.
42686
42687 2006-10-27  Bruno Haible  <bruno@clisp.org>
42688
42689         * m4/signed.m4: Remove file.
42690         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
42691         invocation.
42692         * modules/vasnprintf (Files): Remove m4/signed.m4.
42693
42694 2006-10-27  Bruno Haible  <bruno@clisp.org>
42695
42696         Update to GNU gettext 0.16.
42697         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
42698         m4/inttypes-h.m4, m4/signed.m4.
42699         * m4/gettext.m4: Update to GNU gettext 0.16.
42700         * m4/intl.m4: New file, from GNU gettext.
42701         * m4/intldir.m4: New file, from GNU gettext.
42702         * config/srclist.txt: Update
42703
42704 2006-10-27  Eric Blake  <ebb9@byu.net>
42705
42706         * MODULES.html.sh: Document tempname.
42707         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
42708         dependencies.
42709         (Files): Move lib/tempname.c...
42710         * modules/tempname: ...to this new module.
42711         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
42712         (gl_PREREQ_TEMPNAME): Move...
42713         * m4/tempname.m4: ...to this new file.
42714         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
42715         * modules/sys_stat (Depends-on): Add stat-macros.
42716         * lib/stat_.h (includes): Pick up stat macros.
42717         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
42718         if stat macros are broken.
42719         * lib/tempname.c (includes): No need to include "stat-macros.h".
42720         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
42721         (direxists, __path_search) [!_LIBC]: Don't compile these in
42722         gnulib; the tmpdir module covers that.
42723         * lib/tempname.h: New file.
42724
42725 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
42726
42727         * COPYING: Explain how gnulib-tool converts licence headers.
42728         Almost all wording by Eric Blake.
42729
42730 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
42731
42732         * lib/mbchar.h (is_basic_table): Make read-only.
42733         * lib/mbchar.c (is_basic_table): Likewise.
42734         Reported by John Darrington.
42735
42736 2006-10-25  Bruno Haible  <bruno@clisp.org>
42737
42738         * lib/progname.h (set_program_name): Undefine before defining.
42739
42740 2006-10-25  Bruno Haible  <bruno@clisp.org>
42741
42742         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
42743         false for non-gcc C++ compilers.
42744         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
42745
42746 2006-10-24  Bruno Haible  <bruno@clisp.org>
42747
42748         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
42749         iconv implementations like Irix iconv.
42750
42751 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42752
42753         * modules/vararrays: New file.
42754         * m4/vararrays.m4: New file, taken from diffutils.
42755         * MODULES.html.sh: New module vararrays.
42756
42757 2006-10-24  Karl Berry  <karl@gnu.org>
42758
42759         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
42760         Don't call GNU Unix.
42761
42762 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42763
42764         * users.txt: Add Libtool.
42765
42766         Sync from Libtool:
42767
42768         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42769
42770         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
42771         to gnulib's policy of including config.h unconditionally.
42772
42773 2006-10-24  Bruno Haible  <bruno@clisp.org>
42774
42775         * modules/wcwidth (Files): Add m4/wint_t.m4.
42776         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
42777         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
42778
42779 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
42780
42781         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
42782         to pacify GCC with some -W flags enabled.  Problem reported by
42783         Bruno Haible.
42784
42785 2006-10-24  Jim Meyering  <jim@meyering.net>
42786
42787         * MODULES.html.sh: Remove uinttostr.  It's not a module.
42788         Reported by Karl Berry.
42789
42790 2006-10-23  Bruno Haible  <bruno@clisp.org>
42791
42792         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
42793
42794 2006-10-24  Bruno Haible  <bruno@clisp.org>
42795
42796         * lib/gl_list.h: Use C comment style, not C++ comment style.
42797
42798 2006-10-23  Eric Blake  <ebb9@byu.net>
42799
42800         * lib/getaddrinfo.c (includes): Add missing include.
42801
42802 2006-10-23  Bruno Haible  <bruno@clisp.org>
42803             Paul Eggert  <eggert@cs.ucla.edu>
42804
42805         Ability to rename obstack_free.
42806         * lib/obstack.h (__obstack_free): New macro. Declare instead of
42807         obstack_free.
42808         (obstack_free): Invoke the __obstack_free macro.
42809         * lib/obstack.c (obstack_free): Use __obstack_free macro.
42810
42811 2006-10-23  Bruno Haible  <bruno@clisp.org>
42812             Paul Eggert  <eggert@cs.ucla.edu>
42813
42814         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
42815         __argc, __argv from the declaration. (They are defined as macros on
42816         mingw.)
42817
42818 2006-10-22  Bruno Haible  <bruno@clisp.org>
42819
42820         * doc/gnulib-intro.texi: New file.
42821         * doc/gnulib.texi: Include it.
42822
42823 2006-10-21  Bruno Haible  <bruno@clisp.org>
42824
42825         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
42826         "Introduction", "Miscellanous Notes", "Particular Modules".
42827
42828 2006-10-21  Bruno Haible  <bruno@clisp.org>
42829
42830         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
42831         Change mostlyclean-local rule to avoid sh syntax error from bash
42832         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
42833
42834 2006-10-23  Jim Meyering  <jim@meyering.net>
42835
42836         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
42837         in place of snprintf.
42838
42839         * modules/inttostr (Files): Add lib/uinttostr.c.
42840         * lib/uinttostr.c (inttostr): New file/function.
42841         * lib/inttostr.h (uinttostr): Declare.
42842         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
42843         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
42844         Add uinttostr.
42845         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
42846
42847 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
42848
42849         * lib/canonicalize.c (ELOOP): Define if not already defined.
42850         Problem reported by Bruno Haible in
42851         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
42852
42853 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
42854
42855         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
42856         Problem reported by Perry Smith and Ville Laurikari.
42857
42858         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
42859         uses.
42860
42861 2006-10-19  Bruno Haible  <bruno@clisp.org>
42862
42863         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
42864         for mingw.
42865
42866 2006-10-19  Bruno Haible  <bruno@clisp.org>
42867
42868         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
42869         Needed for mingw.
42870
42871 2006-10-19  Bruno Haible  <bruno@clisp.org>
42872
42873         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
42874
42875 2006-10-19  Bruno Haible  <bruno@clisp.org>
42876
42877         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
42878         it.
42879
42880 2006-10-19  Bruno Haible  <bruno@clisp.org>
42881
42882         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
42883         invocation.
42884
42885 2006-10-19  Bruno Haible  <bruno@clisp.org>
42886
42887         * gnulib-tool (func_create_testdir): Don't include ftruncate and
42888         mountlist by default.
42889
42890 2006-10-16  Bruno Haible  <bruno@clisp.org>
42891
42892         * lib/c-strstr.c: Include c-strstr.h.
42893
42894 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
42895
42896         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
42897         in a slash.
42898
42899 2006-10-18  Bruno Haible  <bruno@clisp.org>
42900
42901         * lib/lock.h [C++]: Wrap definitions in extern "C".
42902
42903 2006-10-18  Bruno Haible  <bruno@clisp.org>
42904
42905         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
42906         gl_LIBOBJS list.
42907
42908 2006-10-18  Bruno Haible  <bruno@clisp.org>
42909
42910         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
42911
42912 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
42913
42914         * lib/xstrtol.h: Include gettext.h.
42915         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
42916         Problem reported by Eric Blake.
42917         * modules/xstrtol (Depends-on): Add gettext-h.
42918
42919 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
42920
42921         * lib/strftime.c (advance): New macro.
42922         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
42923         incomplete type, so you can't add 0 to it.  Problem and patch
42924         reported by Eelco Dolstra for dietlibc.
42925
42926 2006-10-18  Jim Meyering  <jim@meyering.net>
42927
42928         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
42929         type for a local, and rename it: s/up/user_proc/.
42930
42931 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
42932
42933         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
42934         READ_UTMP_USER_PROCESS.
42935         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
42936
42937 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
42938
42939         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
42940         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
42941
42942 2006-10-17  Eric Blake  <ebb9@byu.net>
42943
42944         * lib/sigprocmask.c (sigprocmask): Fix typo.
42945
42946         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
42947
42948         * modules/clean-temp (Makefile.am): Don't add to make output...
42949         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
42950         config.h.
42951
42952 2006-10-17  Bruno Haible  <bruno@clisp.org>
42953
42954         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
42955         differently if DEFAULT_TEXT_DOMAIN is set.
42956
42957 2006-10-16  Bruno Haible  <bruno@clisp.org>
42958
42959         * lib/clean-temp.c: Include fwriteerror.h.
42960
42961 2006-10-16  Bruno Haible  <bruno@clisp.org>
42962
42963         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
42964
42965 2006-10-16  Bruno Haible  <bruno@clisp.org>
42966
42967         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
42968         * lib/sigprocmask.h: Include <sys/types.h>.
42969         (sigset_t): Use the system's definition if present.
42970
42971 2006-10-17  Eric Blake  <ebb9@byu.net>
42972
42973         * lib/xvasprintf.c (includes): Assume config.h.
42974         * lib/xasprintf.c (includes): Likewise.
42975
42976 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
42977
42978         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
42979         at least as wide as intmax_t.
42980
42981 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
42982
42983         (Imported from Automake.)
42984         * build-aux/gnupload: Update to version 1.1 of directive file.
42985
42986 2006-10-16  Eric Blake  <ebb9@byu.net>
42987
42988         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
42989         match Automake 1.10a.
42990
42991 2006-10-14  Bruno Haible  <bruno@clisp.org>
42992
42993         * modules/sigprocmask: New file.
42994         * lib/sigprocmask.h: New file.
42995         * lib/sigprocmask.c: New file.
42996         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
42997         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
42998         request sigprocmask.o.
42999         (gl_PREREQ_SIGPROCMASK): New macro.
43000         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
43001         (Depends-on): Add sigprocmask.
43002         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
43003         gt_SIGNALBLOCKING. Test for 'raise' only once.
43004         * lib/fatal-signal.c: Include sigprocmask.h.
43005         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
43006         unblock_fatal_signals): Define always.
43007         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
43008         sigprocmask.
43009
43010 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
43011
43012         Sync from Automake.
43013         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
43014         which incorrectly sets the mode of an existing destination
43015         directory.  In some cases the unpatched install-sh could do the
43016         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
43017         system.  We hope this is rare in practice, but it's clearly worth
43018         fixing.  Problem reported by Alex Unleashed in
43019         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
43020         Also, don't bother to check for -m bugs unless we're using -m;
43021         suggested by Stepan Kasal.
43022
43023 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43024
43025         Sync from Automake.
43026         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
43027         `-c' flag, so they appear at the same position as in %FASTDEP%
43028         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
43029         which ignores unknown options only after the first non-option.
43030         Bug report against M4 by Nelson H. F. Beebe.
43031
43032 2006-10-13  Jim Meyering  <jim@meyering.net>
43033
43034         Fix a bug in yesterday's change.
43035         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
43036         p->fts_statp->st_dev would be used uninitialized.
43037         Ensures that we always call fts_stat on the very first entry.
43038         Miklos Szeredi reported that find -xdev stopped working.
43039
43040 2006-10-12  Bruno Haible  <bruno@clisp.org>
43041
43042         * gnulib-tool (func_get_automake_snippet): Append an automatically
43043         computed EXTRA_DIST augmentation.
43044         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
43045         * modules/alloca-opt (Makefile.am): Likewise.
43046         * modules/allocsa (Makefile.am): Likewise.
43047         * modules/arcfour (Makefile.am): Likewise.
43048         * modules/arctwo (Makefile.am): Likewise.
43049         * modules/argmatch (Makefile.am): Likewise.
43050         * modules/argz (Makefile.am): Likewise.
43051         * modules/atexit (Makefile.am): Likewise.
43052         * modules/backupfile (Makefile.am): Likewise.
43053         * modules/byteswap (Makefile.am): Likewise.
43054         * modules/c-strtod (Makefile.am): Likewise.
43055         * modules/c-strtold (Makefile.am): Likewise.
43056         * modules/calloc (Makefile.am): Likewise.
43057         * modules/canon-host (Makefile.am): Likewise.
43058         * modules/canonicalize (Makefile.am): Likewise.
43059         * modules/chdir-long (Makefile.am): Likewise.
43060         * modules/chdir-safer (Makefile.am): Likewise.
43061         * modules/check-version (Makefile.am): Likewise.
43062         * modules/chown (Makefile.am): Likewise.
43063         * modules/cloexec (Makefile.am): Likewise.
43064         * modules/close-stream (Makefile.am): Likewise.
43065         * modules/closeout (Makefile.am): Likewise.
43066         * modules/crc (Makefile.am): Likewise.
43067         * modules/csharpexec (Makefile.am): Likewise.
43068         * modules/cycle-check (Makefile.am): Likewise.
43069         * modules/des (Makefile.am): Likewise.
43070         * modules/dev-ino (Makefile.am): Likewise.
43071         * modules/dirfd (Makefile.am): Likewise.
43072         * modules/dirname (Makefile.am): Likewise.
43073         * modules/dup2 (Makefile.am): Likewise.
43074         * modules/eealloc (Makefile.am): Likewise.
43075         * modules/error (Makefile.am): Likewise.
43076         * modules/euidaccess (Makefile.am): Likewise.
43077         * modules/exclude (Makefile.am): Likewise.
43078         * modules/exitfail (Makefile.am): Likewise.
43079         * modules/fcntl-safer (Makefile.am): Likewise.
43080         * modules/fcntl (Makefile.am): Likewise.
43081         * modules/file-type (Makefile.am): Likewise.
43082         * modules/fileblocks (Makefile.am): Likewise.
43083         * modules/filemode (Makefile.am): Likewise.
43084         * modules/filenamecat (Makefile.am): Likewise.
43085         * modules/fnmatch (Makefile.am): Likewise.
43086         * modules/fopen-safer (Makefile.am): Likewise.
43087         * modules/fpending (Makefile.am): Likewise.
43088         * modules/fprintftime (Makefile.am): Likewise.
43089         * modules/free (Makefile.am): Likewise.
43090         * modules/fsusage (Makefile.am): Likewise.
43091         * modules/ftruncate (Makefile.am): Likewise.
43092         * modules/fts (Makefile.am): Likewise.
43093         * modules/gc-arcfour (Makefile.am): Likewise.
43094         * modules/gc-des (Makefile.am): Likewise.
43095         * modules/gc-hmac-md5 (Makefile.am): Likewise.
43096         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
43097         * modules/gc-md4 (Makefile.am): Likewise.
43098         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
43099         * modules/gc-sha1 (Makefile.am): Likewise.
43100         * modules/gc (Makefile.am): Likewise.
43101         * modules/getaddrinfo (Makefile.am): Likewise.
43102         * modules/getcwd (Makefile.am): Likewise.
43103         * modules/getdelim (Makefile.am): Likewise.
43104         * modules/getdomainname (Makefile.am): Likewise.
43105         * modules/getgroups (Makefile.am): Likewise.
43106         * modules/gethostname (Makefile.am): Likewise.
43107         * modules/gethrxtime (Makefile.am): Likewise.
43108         * modules/getline (Makefile.am): Likewise.
43109         * modules/getloadavg (Makefile.am): Likewise.
43110         * modules/getlogin_r (Makefile.am): Likewise.
43111         * modules/getndelim2 (Makefile.am): Likewise.
43112         * modules/getopt (Makefile.am): Likewise.
43113         * modules/getpagesize (Makefile.am): Likewise.
43114         * modules/getpass-gnu (Makefile.am): Likewise.
43115         * modules/getpass (Makefile.am): Likewise.
43116         * modules/getsubopt (Makefile.am): Likewise.
43117         * modules/gettime (Makefile.am): Likewise.
43118         * modules/gettimeofday (Makefile.am): Likewise.
43119         * modules/getugroups (Makefile.am): Likewise.
43120         * modules/getusershell (Makefile.am): Likewise.
43121         * modules/glob (Makefile.am): Likewise.
43122         * modules/group-member (Makefile.am): Likewise.
43123         * modules/hard-locale (Makefile.am): Likewise.
43124         * modules/hash (Makefile.am): Likewise.
43125         * modules/hmac-md5 (Makefile.am): Likewise.
43126         * modules/hmac-sha1 (Makefile.am): Likewise.
43127         * modules/human (Makefile.am): Likewise.
43128         * modules/idcache (Makefile.am): Likewise.
43129         * modules/imaxabs (Makefile.am): Likewise.
43130         * modules/imaxdiv (Makefile.am): Likewise.
43131         * modules/inet_ntop (Makefile.am): Likewise.
43132         * modules/inet_pton (Makefile.am): Likewise.
43133         * modules/intprops (Makefile.am): Likewise.
43134         * modules/inttostr (Makefile.am): Likewise.
43135         * modules/inttypes (Makefile.am): Likewise.
43136         * modules/isapipe (Makefile.am): Likewise.
43137         * modules/javaversion (Makefile.am): Likewise.
43138         * modules/lchmod (Makefile.am): Likewise.
43139         * modules/lchown (Makefile.am): Likewise.
43140         * modules/localcharset (Makefile.am): Likewise.
43141         * modules/long-options (Makefile.am): Likewise.
43142         * modules/lstat (Makefile.am): Likewise.
43143         * modules/malloc (Makefile.am): Likewise.
43144         * modules/mathl (Makefile.am): Likewise.
43145         * modules/mbchar (Makefile.am): Likewise.
43146         * modules/md2 (Makefile.am): Likewise.
43147         * modules/md4 (Makefile.am): Likewise.
43148         * modules/md5 (Makefile.am): Likewise.
43149         * modules/memcasecmp (Makefile.am): Likewise.
43150         * modules/memchr (Makefile.am): Likewise.
43151         * modules/memcmp (Makefile.am): Likewise.
43152         * modules/memcoll (Makefile.am): Likewise.
43153         * modules/memcpy (Makefile.am): Likewise.
43154         * modules/memmem (Makefile.am): Likewise.
43155         * modules/memmove (Makefile.am): Likewise.
43156         * modules/mempcpy (Makefile.am): Likewise.
43157         * modules/memrchr (Makefile.am): Likewise.
43158         * modules/memset (Makefile.am): Likewise.
43159         * modules/memxor (Makefile.am): Likewise.
43160         * modules/mkancesdirs (Makefile.am): Likewise.
43161         * modules/mkdir-p (Makefile.am): Likewise.
43162         * modules/mkdir (Makefile.am): Likewise.
43163         * modules/mkdtemp (Makefile.am): Likewise.
43164         * modules/mkstemp (Makefile.am): Likewise.
43165         * modules/mktime (Makefile.am): Likewise.
43166         * modules/modechange (Makefile.am): Likewise.
43167         * modules/mountlist (Makefile.am): Likewise.
43168         * modules/nanosleep (Makefile.am): Likewise.
43169         * modules/obstack (Makefile.am): Likewise.
43170         * modules/openat (Makefile.am): Likewise.
43171         * modules/pagealign_alloc (Makefile.am): Likewise.
43172         * modules/pathmax (Makefile.am): Likewise.
43173         * modules/physmem (Makefile.am): Likewise.
43174         * modules/poll (Makefile.am): Likewise.
43175         * modules/posixtm (Makefile.am): Likewise.
43176         * modules/posixver (Makefile.am): Likewise.
43177         * modules/putenv (Makefile.am): Likewise.
43178         * modules/quote (Makefile.am): Likewise.
43179         * modules/quotearg (Makefile.am): Likewise.
43180         * modules/raise (Makefile.am): Likewise.
43181         * modules/read-file (Makefile.am): Likewise.
43182         * modules/readline (Makefile.am): Likewise.
43183         * modules/readlink (Makefile.am): Likewise.
43184         * modules/readtokens (Makefile.am): Likewise.
43185         * modules/readutmp (Makefile.am): Likewise.
43186         * modules/realloc (Makefile.am): Likewise.
43187         * modules/regex (Makefile.am): Likewise.
43188         * modules/rename-dest-slash (Makefile.am): Likewise.
43189         * modules/rename (Makefile.am): Likewise.
43190         * modules/rijndael (Makefile.am): Likewise.
43191         * modules/rmdir (Makefile.am): Likewise.
43192         * modules/rpmatch (Makefile.am): Likewise.
43193         * modules/safe-read (Makefile.am): Likewise.
43194         * modules/safe-write (Makefile.am): Likewise.
43195         * modules/same-inode (Makefile.am): Likewise.
43196         * modules/same (Makefile.am): Likewise.
43197         * modules/save-cwd (Makefile.am): Likewise.
43198         * modules/savedir (Makefile.am): Likewise.
43199         * modules/setenv (Makefile.am): Likewise.
43200         * modules/settime (Makefile.am): Likewise.
43201         * modules/sha1 (Makefile.am): Likewise.
43202         * modules/sig2str (Makefile.am): Likewise.
43203         * modules/snprintf (Makefile.am): Likewise.
43204         * modules/stat-macros (Makefile.am): Likewise.
43205         * modules/stat-time (Makefile.am): Likewise.
43206         * modules/stdbool (Makefile.am): Likewise.
43207         * modules/stdint (Makefile.am): Likewise.
43208         * modules/stdlib-safer (Makefile.am): Likewise.
43209         * modules/stpcpy (Makefile.am): Likewise.
43210         * modules/stpncpy (Makefile.am): Likewise.
43211         * modules/strcase (Makefile.am): Likewise.
43212         * modules/strcasestr (Makefile.am): Likewise.
43213         * modules/strchrnul (Makefile.am): Likewise.
43214         * modules/strcspn (Makefile.am): Likewise.
43215         * modules/strdup (Makefile.am): Likewise.
43216         * modules/strerror (Makefile.am): Likewise.
43217         * modules/strftime (Makefile.am): Likewise.
43218         * modules/strndup (Makefile.am): Likewise.
43219         * modules/strnlen (Makefile.am): Likewise.
43220         * modules/strpbrk (Makefile.am): Likewise.
43221         * modules/strsep (Makefile.am): Likewise.
43222         * modules/strstr (Makefile.am): Likewise.
43223         * modules/strtod (Makefile.am): Likewise.
43224         * modules/strtoimax (Makefile.am): Likewise.
43225         * modules/strtok_r (Makefile.am): Likewise.
43226         * modules/strtol (Makefile.am): Likewise.
43227         * modules/strtoll (Makefile.am): Likewise.
43228         * modules/strtoul (Makefile.am): Likewise.
43229         * modules/strtoull (Makefile.am): Likewise.
43230         * modules/strtoumax (Makefile.am): Likewise.
43231         * modules/strverscmp (Makefile.am): Likewise.
43232         * modules/sys_socket (Makefile.am): Likewise.
43233         * modules/sys_stat (Makefile.am): Likewise.
43234         * modules/sysexits (Makefile.am): Likewise.
43235         * modules/time_r (Makefile.am): Likewise.
43236         * modules/timegm (Makefile.am): Likewise.
43237         * modules/timespec (Makefile.am): Likewise.
43238         * modules/tmpfile-safer (Makefile.am): Likewise.
43239         * modules/trim (Makefile.am): Likewise.
43240         * modules/unistd-safer (Makefile.am): Likewise.
43241         * modules/unlinkdir (Makefile.am): Likewise.
43242         * modules/unlocked-io (Makefile.am): Likewise.
43243         * modules/userspec (Makefile.am): Likewise.
43244         * modules/utime (Makefile.am): Likewise.
43245         * modules/utimecmp (Makefile.am): Likewise.
43246         * modules/utimens (Makefile.am): Likewise.
43247         * modules/vasnprintf (Makefile.am): Likewise.
43248         * modules/vasprintf (Makefile.am): Likewise.
43249         * modules/vsnprintf (Makefile.am): Likewise.
43250         * modules/xalloc (Makefile.am): Likewise.
43251         * modules/xgetcwd (Makefile.am): Likewise.
43252         * modules/xnanosleep (Makefile.am): Likewise.
43253         * modules/xreadlink (Makefile.am): Likewise.
43254         * modules/xstrtod (Makefile.am): Likewise.
43255         * modules/xstrtol (Makefile.am): Likewise.
43256         * modules/xstrtold (Makefile.am): Likewise.
43257         * modules/yesno (Makefile.am): Likewise.
43258         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
43259
43260 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
43261
43262         * modules/error (Makefile.am): Distribute files through
43263         EXTRA_DIST, not lib_SOURCES.
43264
43265 2006-10-12  Eric Blake  <ebb9@byu.net>
43266
43267         * modules/error (Makefile.am): Distribute files in /lib.
43268         * modules/obstack (Makefile.am): Likewise.
43269
43270 2006-10-12  Bruno Haible  <bruno@clisp.org>
43271
43272         * modules/acl (Makefile.am): Distribute all files in lib/ through
43273         EXTRA_DIST.
43274         * modules/arcfour (Makefile.am): Likewise.
43275         * modules/arctwo (Makefile.am): Likewise.
43276         * modules/argmatch (Makefile.am): Likewise.
43277         * modules/argz (Makefile.am): Likewise.
43278         * modules/atexit (Makefile.am): Likewise.
43279         * modules/backupfile (Makefile.am): Likewise.
43280         * modules/c-strtod (Makefile.am): Likewise.
43281         * modules/c-strtold (Makefile.am): Likewise.
43282         * modules/calloc (Makefile.am): Likewise.
43283         * modules/canon-host (Makefile.am): Likewise.
43284         * modules/canonicalize (Makefile.am): Likewise.
43285         * modules/chdir-long (Makefile.am): Likewise.
43286         * modules/chdir-safer (Makefile.am): Likewise.
43287         * modules/check-version (Makefile.am): Likewise.
43288         * modules/chown (Makefile.am): Likewise.
43289         * modules/cloexec (Makefile.am): Likewise.
43290         * modules/close-stream (Makefile.am): Likewise.
43291         * modules/closeout (Makefile.am): Likewise.
43292         * modules/crc (Makefile.am): Likewise.
43293         * modules/cycle-check (Makefile.am): Likewise.
43294         * modules/des (Makefile.am): Likewise.
43295         * modules/dirfd (Makefile.am): Likewise.
43296         * modules/dirname (Makefile.am): Likewise.
43297         * modules/dup2 (Makefile.am): Likewise.
43298         * modules/euidaccess (Makefile.am): Likewise.
43299         * modules/exclude (Makefile.am): Likewise.
43300         * modules/exitfail (Makefile.am): Likewise.
43301         * modules/fcntl-safer (Makefile.am): Likewise.
43302         * modules/file-type (Makefile.am): Likewise.
43303         * modules/fileblocks (Makefile.am): Likewise.
43304         * modules/filemode (Makefile.am): Likewise.
43305         * modules/filenamecat (Makefile.am): Likewise.
43306         * modules/fnmatch (Makefile.am): Likewise.
43307         * modules/fopen-safer (Makefile.am): Likewise.
43308         * modules/fpending (Makefile.am): Likewise.
43309         * modules/fprintftime (Makefile.am): Likewise.
43310         * modules/free (Makefile.am): Likewise.
43311         * modules/fsusage (Makefile.am): Likewise.
43312         * modules/ftruncate (Makefile.am): Likewise.
43313         * modules/fts (Makefile.am): Likewise.
43314         * modules/gc (Makefile.am): Likewise.
43315         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
43316         * modules/getaddrinfo (Makefile.am): Likewise.
43317         * modules/getcwd (Makefile.am): Likewise.
43318         * modules/getdelim (Makefile.am): Likewise.
43319         * modules/getdomainname (Makefile.am): Likewise.
43320         * modules/getgroups (Makefile.am): Likewise.
43321         * modules/gethostname (Makefile.am): Likewise.
43322         * modules/gethrxtime (Makefile.am): Likewise.
43323         * modules/getline (Makefile.am): Likewise.
43324         * modules/getloadavg (Makefile.am): Likewise.
43325         * modules/getlogin_r (Makefile.am): Likewise.
43326         * modules/getopt (Makefile.am): Likewise.
43327         * modules/getpass (Makefile.am): Likewise.
43328         * modules/getpass-gnu (Makefile.am): Likewise.
43329         * modules/getsubopt (Makefile.am): Likewise.
43330         * modules/gettime (Makefile.am): Likewise.
43331         * modules/gettimeofday (Makefile.am): Likewise.
43332         * modules/getugroups (Makefile.am): Likewise.
43333         * modules/getusershell (Makefile.am): Likewise.
43334         * modules/glob (Makefile.am): Likewise.
43335         * modules/group-member (Makefile.am): Likewise.
43336         * modules/hard-locale (Makefile.am): Likewise.
43337         * modules/hash (Makefile.am): Likewise.
43338         * modules/hmac-md5 (Makefile.am): Likewise.
43339         * modules/hmac-sha1 (Makefile.am): Likewise.
43340         * modules/human (Makefile.am): Likewise.
43341         * modules/idcache (Makefile.am): Likewise.
43342         * modules/imaxabs (Makefile.am): Likewise.
43343         * modules/imaxdiv (Makefile.am): Likewise.
43344         * modules/inet_ntop (Makefile.am): Likewise.
43345         * modules/inet_pton (Makefile.am): Likewise.
43346         * modules/inttostr (Makefile.am): Likewise.
43347         * modules/isapipe (Makefile.am): Likewise.
43348         * modules/lchown (Makefile.am): Likewise.
43349         * modules/long-options (Makefile.am): Likewise.
43350         * modules/lstat (Makefile.am): Likewise.
43351         * modules/malloc (Makefile.am): Likewise.
43352         * modules/mathl (Makefile.am): Likewise.
43353         * modules/mbchar (Makefile.am): Likewise.
43354         * modules/md2 (Makefile.am): Likewise.
43355         * modules/md4 (Makefile.am): Likewise.
43356         * modules/md5 (Makefile.am): Likewise.
43357         * modules/memcasecmp (Makefile.am): Likewise.
43358         * modules/memchr (Makefile.am): Likewise.
43359         * modules/memcmp (Makefile.am): Likewise.
43360         * modules/memcoll (Makefile.am): Likewise.
43361         * modules/memcpy (Makefile.am): Likewise.
43362         * modules/memmem (Makefile.am): Likewise.
43363         * modules/memmove (Makefile.am): Likewise.
43364         * modules/mempcpy (Makefile.am): Likewise.
43365         * modules/memrchr (Makefile.am): Likewise.
43366         * modules/memset (Makefile.am): Likewise.
43367         * modules/memxor (Makefile.am): Likewise.
43368         * modules/mkancesdirs (Makefile.am): Likewise.
43369         * modules/mkdir (Makefile.am): Likewise.
43370         * modules/mkdir-p (Makefile.am): Likewise.
43371         * modules/mkdtemp (Makefile.am): Likewise.
43372         * modules/mkstemp (Makefile.am): Likewise.
43373         * modules/mktime (Makefile.am): Likewise.
43374         * modules/modechange (Makefile.am): Likewise.
43375         * modules/mountlist (Makefile.am): Likewise.
43376         * modules/nanosleep (Makefile.am): Likewise.
43377         * modules/openat (Makefile.am): Likewise.
43378         * modules/pagealign_alloc (Makefile.am): Likewise.
43379         * modules/physmem (Makefile.am): Likewise.
43380         * modules/poll (Makefile.am): Likewise.
43381         * modules/posixtm (Makefile.am): Likewise.
43382         * modules/posixver (Makefile.am): Likewise.
43383         * modules/putenv (Makefile.am): Likewise.
43384         * modules/quote (Makefile.am): Likewise.
43385         * modules/quotearg (Makefile.am): Likewise.
43386         * modules/raise (Makefile.am): Likewise.
43387         * modules/read-file (Makefile.am): Likewise.
43388         * modules/readline (Makefile.am): Likewise.
43389         * modules/readlink (Makefile.am): Likewise.
43390         * modules/readtokens (Makefile.am): Likewise.
43391         * modules/readutmp (Makefile.am): Likewise.
43392         * modules/realloc (Makefile.am): Likewise.
43393         * modules/regex (Makefile.am): Likewise.
43394         * modules/rename (Makefile.am): Likewise.
43395         * modules/rename-dest-slash (Makefile.am): Likewise.
43396         * modules/rijndael (Makefile.am): Likewise.
43397         * modules/rmdir (Makefile.am): Likewise.
43398         * modules/rpmatch (Makefile.am): Likewise.
43399         * modules/safe-read (Makefile.am): Likewise.
43400         * modules/safe-write (Makefile.am): Likewise.
43401         * modules/same (Makefile.am): Likewise.
43402         * modules/save-cwd (Makefile.am): Likewise.
43403         * modules/savedir (Makefile.am): Likewise.
43404         * modules/setenv (Makefile.am): Likewise.
43405         * modules/settime (Makefile.am): Likewise.
43406         * modules/sha1 (Makefile.am): Likewise.
43407         * modules/sig2str (Makefile.am): Likewise.
43408         * modules/snprintf (Makefile.am): Likewise.
43409         * modules/stdlib-safer (Makefile.am): Likewise.
43410         * modules/stpcpy (Makefile.am): Likewise.
43411         * modules/stpncpy (Makefile.am): Likewise.
43412         * modules/strcase (Makefile.am): Likewise.
43413         * modules/strcasestr (Makefile.am): Likewise.
43414         * modules/strchrnul (Makefile.am): Likewise.
43415         * modules/strcspn (Makefile.am): Likewise.
43416         * modules/strdup (Makefile.am): Likewise.
43417         * modules/strerror (Makefile.am): Likewise.
43418         * modules/strftime (Makefile.am): Likewise.
43419         * modules/strndup (Makefile.am): Likewise.
43420         * modules/strnlen (Makefile.am): Likewise.
43421         * modules/strpbrk (Makefile.am): Likewise.
43422         * modules/strsep (Makefile.am): Likewise.
43423         * modules/strstr (Makefile.am): Likewise.
43424         * modules/strtod (Makefile.am): Likewise.
43425         * modules/strtoimax (Makefile.am): Likewise.
43426         * modules/strtok_r (Makefile.am): Likewise.
43427         * modules/strtol (Makefile.am): Likewise.
43428         * modules/strtoll (Makefile.am): Likewise.
43429         * modules/strtoul (Makefile.am): Likewise.
43430         * modules/strtoull (Makefile.am): Likewise.
43431         * modules/strtoumax (Makefile.am): Likewise.
43432         * modules/strverscmp (Makefile.am): Likewise.
43433         * modules/time_r (Makefile.am): Likewise.
43434         * modules/timegm (Makefile.am): Likewise.
43435         * modules/tmpfile-safer (Makefile.am): Likewise.
43436         * modules/unistd-safer (Makefile.am): Likewise.
43437         * modules/unlinkdir (Makefile.am): Likewise.
43438         * modules/userspec (Makefile.am): Likewise.
43439         * modules/utime (Makefile.am): Likewise.
43440         * modules/utimecmp (Makefile.am): Likewise.
43441         * modules/utimens (Makefile.am): Likewise.
43442         * modules/vasnprintf (Makefile.am): Likewise.
43443         * modules/vasprintf (Makefile.am): Likewise.
43444         * modules/vsnprintf (Makefile.am): Likewise.
43445         * modules/xalloc (Makefile.am): Likewise.
43446         * modules/xgetcwd (Makefile.am): Likewise.
43447         * modules/xnanosleep (Makefile.am): Likewise.
43448         * modules/xreadlink (Makefile.am): Likewise.
43449         * modules/xstrtod (Makefile.am): Likewise.
43450         * modules/xstrtol (Makefile.am): Likewise.
43451         * modules/xstrtold (Makefile.am): Likewise.
43452         * modules/yesno (Makefile.am): Likewise.
43453
43454 2006-10-12  Jim Meyering  <jim@meyering.net>
43455
43456         * m4/getloadavg.m4: Revert the change below.
43457
43458         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
43459         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
43460         fail with a symlink, which is what coreutils' ./bootstrap now
43461         creates by default.
43462
43463 2006-10-12  Bruno Haible  <bruno@clisp.org>
43464
43465         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
43466         mingw.
43467         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
43468         MSVC and mingw explicitly.
43469
43470 2006-10-11  Simon Josefsson  <jas@extundo.com>
43471             Bruno Haible  <bruno@clisp.org>
43472
43473         Add support for multiple gnulib-tool invocations in the scope of a
43474         single configure.ac file.
43475         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
43476         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
43477         with the same contents as the _LIBADD variable.
43478         (func_emit_initmacro_start, func_emit_initmacro_end,
43479         func_emit_initmacro_done): New functions.
43480         (func_import, func_create_testdir): Invoke them. Allow the identifiers
43481         gl_LIBOBJS and gl_LTLIBOBJS.
43482
43483 2006-10-11  Bruno Haible  <bruno@clisp.org>
43484
43485         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
43486         (func_create_testdir): Don't create po/Makefile.am, don't invoke
43487         autoreconf. Instead, invoke autopoint explicitly but move back the
43488         *.m4 files from gnulib.
43489
43490 2006-10-11  Bruno Haible  <bruno@clisp.org>
43491
43492         * gnulib-tool (func_usage): Make module names after --create-testdir
43493         optional.
43494         (func_create_testdir): If no module was specified, use nearly all
43495         modules.
43496
43497 2006-10-12  Jim Meyering  <jim@meyering.net>
43498
43499         Big performance improvement for fts-based tools that use FTS_NOSTAT.
43500         Avoid spurious inode-mismatch problems on non-POSIX file systems.
43501         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
43502         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
43503         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
43504         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
43505         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
43506         (fts_set_stat_required): New function.
43507         (fts_open): Defer the calls to fts_stat, if possible or requested.
43508         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
43509         into fts_stat itself.
43510         (fts_read): Perform any required (deferred) fts_stat call.
43511         (fts_build): Likewise, for the directory we're about to open and read.
43512         In the readdir loop, carefully decide whether each entry will require
43513         an eventual call to fts_stat, using dirent.d_type info if available.
43514         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
43515         a command line argument into this function.  Update all callers.
43516         Map a return value of FTS_DOT to FTS_D for a command line argument.
43517         * modules/fts (Depends-on): Add d-type.  Alphabetize.
43518         Thanks to Miklos Szeredi for his tenacity and for the initial
43519         bug report about "find" failing on a FUSE-based file system.
43520
43521         * lib/fts.c (fts_open): Use consistent indentation.
43522
43523 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
43524
43525         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
43526         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
43527         reported by Jim Meyering.  All uses of cache variables renamed
43528         to match Autoconf's.
43529         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
43530         the other one.
43531
43532         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
43533         Fix misspelling in diagnostic.
43534
43535 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
43536
43537         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
43538         defined.  Problem reported by Matthew Woehlke.
43539
43540         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
43541         Add support for Tandem NonStop R series.
43542         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
43543         Use new macro.
43544
43545         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
43546         (has_trailing_slash): Omit size arg; all callers changed.
43547         Omit 'inline', since it doesn't help performance and we'd
43548         need to configure it.
43549         Don't count //, ///, etc. as having a trailing slash.
43550         As a side effect, this removes a C99ism reported by Matthew Woehlke.
43551         (rpl_rename_dest_slash): On failure, use rename's errno rather
43552         than (in some cases) an incorrect or junk errno.
43553         Simplify code by removing need to compute length; this does
43554         cause it to make two passes instead of one over the file name,
43555         but it's worth it.
43556
43557         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
43558         change, since Autoconf's version may no longer be appropriate now
43559         that we are using CVS Autoconf's version.  Add support for Tandem.
43560
43561 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
43562             Bruno Haible  <bruno@clisp.org>
43563
43564         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
43565         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
43566         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
43567         gl_AC_TYPE_LONG_LONG.
43568
43569         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
43570         instead of HAVE_LONG_LONG.
43571         * lib/printf-args.c (printf_fetchargs): Likewise.
43572         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
43573         * lib/vasnprintf.c (VASNPRINTF): Likewise.
43574         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
43575         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
43576         gl_AC_TYPE_LONG_LONG.
43577
43578 2006-10-11  Bruno Haible  <bruno@clisp.org>
43579
43580         * m4/longlong.m4: Add comments.
43581         * m4/ulonglong.m4: Likewise.
43582
43583 2006-10-10  Bruno Haible  <bruno@clisp.org>
43584
43585         Make it possible to #define stpcpy, strdup to aliases.
43586         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
43587         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
43588
43589 2006-10-10  Bruno Haible  <bruno@clisp.org>
43590
43591         Make it possible to #define gcd to an alias.
43592         * lib/gcd.c: Include config.h.
43593
43594 2006-10-10  Bruno Haible  <bruno@clisp.org>
43595
43596         Make it possible to #define c_isascii to an alias.
43597         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
43598         defined. Undefine the macros before defining them, to avoid gcc
43599         warnings.
43600         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
43601         define NO_C_CTYPE_MACROS early.
43602
43603 2006-10-10  Bruno Haible  <bruno@clisp.org>
43604
43605         Make it possible to #define set_program_name to an alias.
43606         * lib/progname.c: Don't undefine set_program_name; instead, undefine
43607         ENABLE_RELOCATABLE early.
43608
43609 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
43610
43611         Port to Tandem NSK OSS, which has 64-bit signed int but at most
43612         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
43613         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
43614         More generally, don't assume that 64-bit signed int is available
43615         if unsigned int is, and vice versa.
43616         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
43617         unsigned symbols, not on their signed counterparts.
43618         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
43619         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
43620         (UINT64_C, UINTMAX_C):
43621         Likewise.
43622         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
43623         unsigned counterparts.
43624         (Have_long_long, Unsigned): New macros.
43625         (Int): Renamed from INT.
43626         (strtoimax): Use the new macros.
43627         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
43628         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
43629         * modules/inttypes (inttypes.h): Substitute
43630         HAVE_UNSIGNED_LONG_LONG_INT.
43631         * modules/stdint (stdint.h): Likewise.
43632         (Files): Add m4/ulonglong.m4.
43633
43634 2006-10-10  Bruno Haible  <bruno@clisp.org>
43635
43636         Fix a gcc -Wshadow warning.
43637         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
43638         to 'bucket'.
43639         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
43640         gl_linked_indexof_from_to): Likewise.
43641         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
43642         Likewise.
43643         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
43644         Likewise.
43645         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
43646         Reported by Eric Blake.
43647
43648 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
43649
43650         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
43651         for NetBSD.  Problem reported by Bruno Haible.
43652
43653 2006-10-09  Jim Meyering  <jim@meyering.net>
43654
43655         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
43656         Patch from Bruno Haible.
43657
43658 2006-10-09  Jim Meyering  <jim@meyering.net>
43659
43660         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
43661         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
43662         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
43663
43664 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
43665
43666         Don't include <config.h> twice; this doesn't work in some cases,
43667         e.g., when config.h has "#define intmax_t long long int" and
43668         we include <config.h>, <inttypes.h>, <config.h> in that order.
43669         Problem reported by Matthew Woehlke in:
43670         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
43671         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
43672         * lib/fts-cycle.c: Don't include config.h.
43673         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
43674         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
43675         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
43676         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
43677         inttypes.h.
43678         * lib/xstrtoumax.c: Likewise.
43679         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
43680         __strtol and the like, so that this module is more like its siblings.
43681         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
43682         Remove; no longer needed now that we assume gnulib inttypes.h.
43683
43684 2006-10-08  Bruno Haible  <bruno@clisp.org>
43685
43686         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
43687         option.
43688
43689 2006-10-07  Jim Meyering  <jim@meyering.net>
43690
43691         * modules/inttypes (inttypes.h): Revert what seems to have been
43692         an inadvertent part of today's change: use "|", not "/" in the
43693         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
43694
43695 2006-10-07  Bruno Haible  <bruno@clisp.org>
43696
43697         * modules/sublist: New file.
43698
43699 2006-10-07  Bruno Haible  <bruno@clisp.org>
43700
43701         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
43702         * modules/argz (argz.h): Likewise.
43703         * modules/arpa_inet (arpa/inet.h): Likewise.
43704         * modules/byteswap (byteswap.h): Likewise.
43705         * modules/configmake (configmake.h): Likewise.
43706         * modules/fcntl (fcntl.h): Likewise.
43707         * modules/fnmatch (fnmatch.h): Likewise.
43708         * modules/getopt (getopt.h): Likewise.
43709         * modules/glob (glob.h): Likewise.
43710         * modules/inttypes (inttypes.h): Likewise.
43711         * modules/netinet_in (netinet/in.h): Likewise.
43712         * modules/poll (poll.h): Likewise.
43713         * modules/stdbool (stdbool.h): Likewise.
43714         * modules/stdint (stdint.h): Likewise.
43715         * modules/sys_select (sys/select.h): Likewise.
43716         * modules/sys_socket (sys/socket.h): Likewise.
43717         * modules/sys_stat (sys/stat.h): Likewise.
43718         * modules/sysexits (sysexits.h): Likewise.
43719         * modules/unistd (unistd.h): Likewise.
43720         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
43721         Add a "DO NOT EDIT" comment to the generated file.
43722         (func_import): Likewise for gnulib-comp.m4.
43723
43724 2006-10-07  Bruno Haible  <bruno@clisp.org>
43725
43726         * lib/gl_sublist.h: New file.
43727         * lib/gl_sublist.c: New file.
43728
43729 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
43730
43731         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
43732         name (relative to the original working directory) and the file
43733         name component (relative to the temporary working directory).  All
43734         callers changed.
43735         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
43736         * lib/mkdir-p.c (make_dir_parents): Likewise.
43737         * lib/mkdir-p.h (make_dir_parents): Likewise.
43738
43739 2006-10-06  Eric Blake  <ebb9@byu.net>
43740
43741         Define several macros for use by the clean-temp module.
43742         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
43743         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
43744         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
43745
43746         * lib/clean-temp.h (close_stream_temp): New declaration.
43747         * lib/clean-temp.c (includes): Pull in headers according to what
43748         other modules are in use.
43749         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
43750
43751 2006-10-06  Bruno Haible  <bruno@clisp.org>
43752
43753         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
43754         instead of fopen, fwriteerror.
43755
43756 2006-10-06  Bruno Haible  <bruno@clisp.org>
43757
43758         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
43759         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
43760         int.
43761         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
43762         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
43763         Return an error indicator.
43764         Suggested by Eric Blake.
43765
43766 2006-10-06  Bruno Haible  <bruno@clisp.org>
43767
43768         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
43769         Reported by Eric Blake.
43770
43771 2006-10-06  Bruno Haible  <bruno@clisp.org>
43772
43773         * modules/closeout (Description): Mention stderr too.
43774
43775 2006-10-06  Bruno Haible  <bruno@clisp.org>
43776         and Paul Eggert  <eggert@cs.ucla.edu>
43777
43778         * lib/closeout.c (close_stdout): Also close stderr.
43779         * lib/closeout.h: Update comment.
43780
43781 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
43782
43783         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
43784         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
43785         * lib/dirchownmod.c: Include lchown.h.
43786         * lib/lchown.c: Don't include files that lchown.h now includes.
43787         Don't declare chown, since lchown.h now does that.
43788         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
43789         (lchown): Define to rpl_chown if lchown is declared but
43790         does not exist.  Declare using a prototype if lchown is not
43791         declared.  Add a copyright notice.
43792         * lib/mkstemp.h: Include <unistd.h>.
43793         * lib/openat.c: Include lchown.h.
43794
43795         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
43796         we now test for that separately.
43797         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
43798         rather than O_NOFOLLOW, when testing whether it's possible to
43799         avoid a race condition reliably.
43800         * lib/savewd.c (savewd_chdir): Likewise.
43801
43802         Remove macros that are no longer needed now that stdint.h is
43803         reliable.
43804         * lib/fsusage.c (UINTMAX_MAX): Remove.
43805         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
43806         * lib/utimecmp.c (SIZE_MAX): Remove.
43807
43808         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
43809
43810         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
43811         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
43812         O_NOATIME works.
43813
43814 2006-10-05  Bruno Haible  <bruno@clisp.org>
43815
43816         * lib/gl_list.h (gl_sortedlist_search_from_to,
43817         gl_sortedlist_indexof_from_to): New declarations.
43818         (gl_list_implementation): New fields sortedlist_search_from_to,
43819         sortedlist_indexof_from_to.
43820         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
43821         inline functions.
43822         * lib/gl_list.c (gl_sortedlist_search_from_to,
43823         gl_sortedlist_indexof_from_to): New functions.
43824         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
43825         function.
43826         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
43827         (gl_array_sortedlist_search_from_to): New function.
43828         (gl_array_list_implementation): Update.
43829         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
43830         function.
43831         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
43832         (gl_carray_sortedlist_search_from_to): New function.
43833         (gl_carray_list_implementation): Update.
43834         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
43835         gl_linked_sortedlist_indexof_from_to): New functions.
43836         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
43837         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
43838         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
43839         gl_tree_sortedlist_indexof_from_to): New functions.
43840         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
43841         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
43842         Update.
43843         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
43844         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
43845         Update.
43846
43847 2006-10-05  Bruno Haible  <bruno@clisp.org>
43848
43849         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
43850         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
43851         (struct gl_list_implementation): Add fields search_from_to,
43852         indexof_from_to. Remove fields search, indexof.
43853         (gl_list_search): Use the search_from_to method.
43854         (gl_list_search_from, gl_list_search_from_to): New functions.
43855         (gl_list_indexof): Use the indexof_from_to method.
43856         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
43857         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
43858         (gl_list_search_from, gl_list_search_from_to): New functions.
43859         (gl_list_indexof): Use the indexof_from_to method.
43860         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
43861         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
43862         gl_array_indexof. Add start_index, end_index arguments.
43863         (gl_array_search_from_to): Renamed from gl_array_search. Add
43864         start_index, end_index arguments.
43865         (gl_array_remove, gl_array_list_implementation): Update.
43866         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
43867         gl_carray_indexof. Add start_index, end_index arguments.
43868         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
43869         start_index, end_index arguments.
43870         (gl_carray_remove, gl_carray_list_implementation): Update.
43871         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
43872         gl_linked_search. Add start_index, end_index arguments.
43873         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
43874         start_index, end_index arguments.
43875         (gl_linked_remove): Update.
43876         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
43877         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
43878         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
43879         field to 'size_t'.
43880         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
43881         gl_tree_search. Add start_index, end_index arguments.
43882         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
43883         start_index, end_index arguments.
43884         (gl_tree_remove): Update.
43885         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
43886         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
43887         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
43888         function.
43889         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
43890         gl_tree_search. Add start_index, end_index arguments.
43891         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
43892         start_index, end_index arguments.
43893         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
43894         Update.
43895         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
43896
43897 2006-10-05  Bruno Haible  <bruno@clisp.org>
43898
43899         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
43900
43901         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
43902         fwriteerror_temp): New declarations.
43903         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
43904         (descriptors): New variable.
43905         (cleanup): First, close the descriptors.
43906         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
43907         fclose_temp, fwriteerror_temp): New functions.
43908
43909 2006-10-04  Jim Meyering  <jim@meyering.net>
43910
43911         * lib/fts.c (fts_open): Tiny comment change.
43912
43913 2006-10-04  Bruno Haible  <bruno@clisp.org>
43914
43915         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
43916         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
43917         gl_LOCK_BODY.
43918         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
43919         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
43920         gl_LOCK_EARLY_BODY.
43921         (gl_LOCK): Require gl_LOCK_BODY.
43922
43923 2006-10-04  Bruno Haible  <bruno@clisp.org>
43924
43925         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
43926         (gl_oset_search_atleast): New declaration.
43927         (struct gl_oset_implementation): Add field 'search_atleast'.
43928         (gl_oset_search_atleast): New inline function.
43929         * lib/gl_oset.c (gl_oset_search_atleast): New function.
43930         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
43931         (gl_array_oset_implementation): Update.
43932         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
43933         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
43934         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
43935
43936 2006-10-04  Bruno Haible  <bruno@clisp.org>
43937
43938         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
43939
43940 2006-10-03  Bruno Haible  <bruno@clisp.org>
43941
43942         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
43943         from gl_avltreehash_list_implementation.
43944
43945 2006-10-03  Bruno Haible  <bruno@clisp.org>
43946
43947         * lib/gl_oset.c (gl_oset_add): Fix return type.
43948
43949 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
43950
43951         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
43952
43953 2006-10-02  Eric Blake  <ebb9@byu.net>
43954
43955         * modules/strnlen (Depends-on): Add extensions.
43956
43957 2006-10-02  Eric Blake  <ebb9@byu.net>
43958
43959         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
43960         definition in 2.60+.
43961
43962 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
43963
43964         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
43965         checks.
43966
43967 2006-10-02  Bruno Haible  <bruno@clisp.org>
43968
43969         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
43970         to the AUTOMAKE_OPTIONS.
43971         Reported by Jim Meyering.
43972
43973 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
43974
43975         Work around bug in Solaris 10 /proc file system:
43976         /proc/self/fd/NNN/.. isn't the parent directory of
43977         the directory whose file descriptor is NNN.  This needs to
43978         be worked around at run time, not compile time, since a
43979         program might be built on Solaris 8, where things work, and
43980         run on Solaris 10.
43981         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
43982         to use the following interface instead:
43983         (OPENAT_BUFFER_SIZE): New macro.
43984         (openat_proc_name): New function.
43985         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
43986         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
43987         Likewise.
43988         * lib/openat-proc.c: New file.
43989         * modules/openat (Files): Add lib/openat-proc.c.
43990         (Depends-on): Add same-inode, stdbool.
43991         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
43992
43993 2006-09-29  Bruno Haible  <bruno@clisp.org>
43994
43995         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
43996         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
43997         argument. Set stdout_closed before testing for ferror, not after.
43998         (fwriteerror, fwriteerror_no_ebadf): New functions.
43999
44000 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44001
44002         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
44003
44004 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
44005
44006         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
44007         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
44008
44009 2006-09-28  Jim Meyering  <jim@meyering.net>
44010
44011         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
44012         Include <unistd.h>.
44013
44014 2006-09-28  Bruno Haible  <bruno@clisp.org>
44015
44016         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
44017         * modules/linkedhash-list (Depends-on): Likewise.
44018         * modules/rbtreehash-list (Depends-on): Likewise.
44019
44020 2006-09-28  Bruno Haible  <bruno@clisp.org>
44021
44022         * lib/strndup.h: Simplify the redefinition of strndup.
44023         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
44024         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
44025
44026 2006-09-28  Bruno Haible  <bruno@clisp.org>
44027
44028         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
44029         * lib/gl_linkedhash_list.c: Likewise.
44030         * lib/gl_rbtreehash_list.c: Likewise.
44031
44032 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
44033
44034         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
44035         getaddrinfo.
44036
44037         * lib/__fpending.h: Don't include <stdio_ext.h> unless
44038         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
44039         it causes <stdio_ext.h> to cause a compile-time error.
44040         Problem reported by Nelson H. F. Beebe.
44041         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
44042         of HAVE_DECL___PENDING.
44043
44044         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
44045         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
44046         declaration.
44047
44048 2006-09-27  Jim Meyering  <jim@meyering.net>
44049
44050         This file could end up with a definition for a function
44051         named __strndup, rather than rpl_strndup on a system with
44052         incomplete weak_alias support.
44053         * lib/strndup.c (strndup): Rename from __strndup.
44054         Remove #defines that used to map __strndup to strndup.
44055         Don't use K&R prototypes.
44056         Remove LIBC-related code, since this file is not sync'd with glibc.
44057         * lib/strndup.h: Revamp, accordingly.
44058         * m4/strndup.m4: Modernize.
44059
44060 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
44061
44062         * modules/savewd (Depends-on): Add 'raise'.
44063         * lib/savewd.c: Include <signal.h>, for 'raise'.
44064
44065 2006-09-26  Jim Meyering  <jim@meyering.net>
44066
44067         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
44068         when we detect Darwin 8.7.0's acl_get_file bug.
44069         Rearrange to perform the new (below) run-test while $LIBS
44070         contains any acl-related library.  Set USE_ACL at the end.
44071         (gl_ACL_GET_FILE): New function.
44072
44073 2006-09-26  Eric Blake  <ebb9@byu.net>
44074
44075         * lib/verror.c: Include <config.h> unconditionally.
44076
44077 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
44078
44079         * modules/clock-time (Maintainer): Add self.
44080         * modules/getlogin_r (Depends-on): Add extensions.
44081
44082 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44083
44084         * modules/clock-time: New module.
44085         * modules/nanosleep (Depends-on): Add clock-time.
44086         * modules/gethrxtime (Depends-on): Likewise.
44087         * modules/gettime (Depends-on): Likewise.
44088         * modules/settime (Depends-on): Likewise.
44089
44090         * modules/fts-lgpl: Depend on openat.
44091         * modules/mkancesdirs: Depend on savewd.
44092         * modules/mkdir-p: Likewise.
44093
44094 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44095
44096         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
44097
44098         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
44099         `gl_have_arbitrary_file_name_length_limit' to
44100         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
44101         actually works between configure runs.
44102
44103 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44104             Bruno Haible  <bruno@clisp.org>
44105
44106         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
44107
44108 2006-09-25  Jim Meyering  <jim@meyering.net>
44109
44110         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
44111         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
44112
44113 2006-09-25  Eric Blake  <ebb9@byu.net>
44114
44115         * gnulib-tool (func_import, func_create_testdir): Fix typos in
44116         exec's in 2006-09-18 patch when shuffling fds.
44117
44118 2006-09-25  Bruno Haible  <bruno@clisp.org>
44119
44120         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
44121         Reported by Jim Meyering.
44122
44123 2006-09-24  Jim Meyering  <jim@meyering.net>
44124
44125         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
44126         compare a pointer against a literal "0".  That caused failures with
44127         at least HP-UX's hpcc.
44128
44129 2006-09-22  Simon Josefsson  <jas@extundo.com>
44130
44131         * modules/gc-sha1:
44132         * modules/gc-md4:
44133         * modules/gc-hmac-sha1:
44134         * modules/gc-hmac-md5:
44135         * modules/gc-des:
44136         * modules/gc-arcfour: Distribute more files.
44137
44138 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44139
44140         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
44141         (gl_linked_iterator_from_to): Initialize struct completely.
44142         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
44143         (gl_tree_iterator_from_to): Likewise
44144         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
44145         * lib/gl_array_list.c [lint] (gl_array_iterator)
44146         (gl_array_iterator_from_to): Likewise.
44147         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
44148         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
44149         (gl_carray_iterator_from_to): Likewise.
44150
44151         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
44152         * lib/md4.c (md4_process_block): Remove unused variable.
44153         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
44154         parentheses for clarity.
44155
44156 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44157
44158         * modules/bison-i18n (Depends-on): Add gettext.
44159
44160 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44161
44162         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
44163         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
44164         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
44165         also add missing comma that caused broken test.
44166         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
44167         stdlib.h, for `abort'.
44168         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
44169         variables.
44170         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
44171         include unistd.h if present, for `rmdir'.
44172         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
44173         variables.
44174         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
44175         in the process include standard headers for prototypes.
44176         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
44177         gets declared on GNU/Linux.
44178         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
44179         unistd.h, for `rmdir'.
44180         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
44181
44182         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
44183         always true.
44184         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
44185
44186         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
44187
44188 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44189
44190         * gnulib-tool (func_version): Create output all at once.  This
44191         may help avoid triggering unnecessary SIGPIPEs, and at any
44192         rate it doesn't hurt.
44193
44194 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44195             Bruno Haible  <bruno@clisp.org>
44196
44197         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
44198         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
44199         * m4/signed.m4 (bh_C_SIGNED): Likewise.
44200
44201         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
44202         (gl_FUNC_VASPRINTF): Invoke it.
44203
44204 2006-09-22  Bruno Haible  <bruno@clisp.org>
44205
44206         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
44207         getloadavg.c as first argument.
44208
44209 2006-09-22  Bruno Haible  <bruno@clisp.org>
44210
44211         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
44212         at the beginning of the gl_INIT macro.
44213         * modules/getloadavg (configure.ac): Pass $gl_source_base to
44214         gl_GETLOADAVG.
44215
44216 2006-09-22  Bruno Haible  <bruno@clisp.org>
44217
44218         * gnulib-tool (func_create_megatestdir): Don't include the config-h
44219         module.
44220         Suggested by Ralf Wildenhues.
44221
44222 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
44223
44224         Import this patch from libc:
44225
44226         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
44227
44228         * lib/regex_internal.c (re_string_reconstruct): Handle
44229         offset < pstr->valid_raw_len && pstr->offsets_needed case.
44230         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
44231         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
44232         re_string_context_at.
44233
44234         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
44235         now requires it.
44236         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
44237         gl_REGEX now does it for us.
44238         (gl_REGEX): Add test taken from
44239         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
44240
44241         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
44242         Check that large offsets work.  Modernize Autoconf usages.
44243         Prefer "yes" to mean a good thing rather than a bad.
44244         Don't put "#define mkstemp" in config.h, as this might interfere
44245         with standard system headers that "#define mkstemp mkstemp64".
44246
44247         * modules/mkstemp (Depends-on): Add extensions, so that
44248         mkstemp is visible on some platforms.
44249         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
44250         (Include): Change to "mkstemp.h" from <stdlib.h>.
44251         (Files): Add mkstemp.h.
44252
44253         * lib/mkstemp.h: New file, since some standard headers
44254         #define mkstemp.
44255         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
44256         Include "mkstemp.h".
44257         Make the _LIBC code resemble glibc original more,
44258         e.g., use K&R style.
44259         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
44260         (mkstemp): Remove, since mkstemp.h does this for us.
44261         * lib/stdlib--.h: Include mkstemp.h.
44262
44263         Import this patch from libc:
44264
44265         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
44266
44267         * lib/tempname.c (__gen_tempname): Change attempts_min
44268         into a macro.  Use preprocessor to decide how to initialize
44269         attempts [Coverity CID 67].
44270
44271 2006-09-20  Bruno Haible  <bruno@clisp.org>
44272
44273         * lib/mkdtemp.c: Import from libc.
44274         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
44275                 * sysdeps/posix/tempname.c (__gen_tempname): Change
44276                 attempts_min into a macro.  Use preprocessor to decide how to
44277                 initialize attempts [Coverity CID 67].
44278         2001-11-27  Paul Eggert  <eggert@twinsun.com>
44279                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
44280                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
44281
44282 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44283
44284         * gnulib-tool (func_exit): New function, to allow to pass the
44285         exit status portably through the trap.  Use everywhere.
44286         (--help, --version): Signal a write error.
44287         (trap): catch SIGPIPE, for write errors.
44288         Exit at the end of the trap, with the correct exit status.
44289
44290 2006-09-19  Karl Berry  <karl@gnu.org>
44291
44292         * doc/gnulib.texi: note about the license texinfo files.
44293
44294 2006-09-19  Eric Blake  <ebb9@byu.net>
44295
44296         * gnulib-tool: Avoid space-tab.
44297
44298 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
44299
44300         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
44301         that prevented coreutils 6.1 from building.  Problem reported
44302         by Petter Reinholdtsen.
44303
44304 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
44305
44306         * gnulib-tool (avoidlist): Fix typo that broke options like
44307         --avoid=lock that are used by coreutils bootstrap.
44308
44309 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
44310
44311         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
44312         more systematically.
44313
44314 2006-09-18  Jim Meyering  <jim@meyering.net>
44315
44316         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
44317
44318 2006-09-18  Bruno Haible  <bruno@clisp.org>
44319
44320         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
44321
44322 2006-09-18  Bruno Haible  <bruno@clisp.org>
44323
44324         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
44325         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
44326         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
44327         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
44328         * m4/gettext.m4: Require autoconf >= 2.52.
44329         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
44330         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
44331         of gl_cv_header_inttypes_h.
44332
44333 2006-09-18  Bruno Haible  <bruno@clisp.org>
44334
44335         * lib/javaversion.c: Include configmake.h.
44336
44337 2006-09-18  Bruno Haible  <bruno@clisp.org>
44338
44339         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
44340         avoid that the while loops be executed in a subshell.
44341
44342 2006-09-18  Bruno Haible  <bruno@clisp.org>
44343
44344         * MODULES.html.sh (func_module): Break long lines.
44345         Suggested by Bruce Korb <bkorb@gnu.org>.
44346
44347 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44348
44349         Speed up by a factor of 1.12.
44350         * gnulib-tool (nl): New variable.
44351         (func_import): Rewrite include directive extraction to only read each
44352         directive once.
44353
44354 2006-09-17  Bruno Haible  <bruno@clisp.org>
44355
44356         * modules/javaversion (Makefile.am): Remove DEFS setting.
44357         (Depends-on): Add configmake, for PKGDATADIR definition.
44358
44359 2006-09-17  Bruno Haible  <bruno@clisp.org>
44360
44361         * gnulib-tool (func_create_testdir): Rewrite all files at once.
44362
44363 2006-09-17  Bruno Haible  <bruno@clisp.org>
44364
44365         * gnulib-tool (func_append): New function, stolen from libtool.m4.
44366         (func_modules_transitive_closure, func_modules_add_dummy,
44367         func_modules_to_filelist, func_import, func_create_testdir,
44368         func_create_megatestdir, ...): Use it wherever possible.
44369         Suggested by Ralf Wildenhues.
44370
44371 2006-09-16  Karl Berry  <karl@gnu.org>
44372
44373         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
44374         to avoid sectioning errors.
44375         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
44376         [ifinfo]: blank line after @center-ed titles.
44377         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
44378         Spell FSF address consistently with others.
44379         (These changes approved by rms.)
44380
44381 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44382
44383         Speed up by a factor of 1.61.
44384         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
44385         already checked module names again.
44386
44387 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44388
44389         Speed up by a factor of 1.13.
44390         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
44391         for new_files, and the input to func_add_or_update.
44392
44393 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44394
44395         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
44396         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
44397
44398 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
44399
44400         * modules/mkancesdirs (Depends-on): Add fcntl.
44401         * modules/savewd: New file.
44402         * MODULES.html.sh (File system functions): Add savewd.
44403
44404         * modules/configmake (Makefile.am): Add support for the
44405         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
44406
44407 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
44408
44409         * m4/savewd.m4: New file.
44410
44411 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
44412
44413         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
44414         (dirchownmod): New arg FD.  All callers changed.
44415         Use FD rather than opening the directory ourself, as opening is
44416         now the caller's responsibility.
44417         * lib/dirchownmod.h: Likewise.
44418         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
44419         hosts that require <sys/types.h> before <sys/stat.h>.  Include
44420         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
44421         (test_dir): Remove.
44422         (mkancesdirs): Return length of prefix of FILE that has already
44423         been made, or -2 if there is a child doing the work.  Redo
44424         algorithm so that it is O(N) rather than O(N**2).  Optimize away
44425         ".", and treat ".." specially since it might stray back into
44426         already-created areas.  Use a subprocess if necessary.  New arg
44427         WD; all users changed.  MAKE_DIR function should now return 1
44428         if it creates a directory that is not readable.  Return -2 if
44429         a child process is spun off.
44430         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
44431         Adjust signature to match code.
44432         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
44433         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
44434         all users changed.
44435         * lib/savewd.c, lib/savewd.h: New files.
44436
44437 2006-09-15  Jim Meyering  <jim@meyering.net>
44438
44439         * modules/rename-dest-slash: New module.
44440         * MODULES.html.sh (posix_compat): Add it here.
44441
44442         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
44443
44444 2006-09-15  Jim Meyering  <jim@meyering.net>
44445
44446         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
44447         file.
44448
44449         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
44450
44451 2006-09-15  Jim Meyering  <jim@meyering.net>
44452
44453         * lib/rename-dest-slash.c (has_trailing_slash): Use
44454         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
44455         (rpl_rename_dest_slash): Perform the cheaper trailing slash
44456         test before testing whether SRC is a directory.
44457         Suggestions from Bruno Haible.
44458
44459         Avoid a warning about an unused variable.
44460         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
44461         into the #ifdef block where it's used.
44462
44463         * lib/rename-dest-slash.c: New file.
44464
44465 2006-09-14  Bruno Haible  <bruno@clisp.org>
44466
44467         * lib/allocsa.c: Include <config.h> unconditionally.
44468         * lib/asnprintf.c: Likewise.
44469         * lib/asprintf.c: Likewise.
44470         * lib/c-strcasecmp.c: Likewise.
44471         * lib/c-strcasestr.c: Likewise.
44472         * lib/c-strncasecmp.c: Likewise.
44473         * lib/c-strstr.c: Likewise.
44474         * lib/classpath.c: Likewise.
44475         * lib/clean-temp.c: Likewise.
44476         * lib/concatpath.c: Likewise.
44477         * lib/copy-file.c: Likewise.
44478         * lib/csharpcomp.c: Likewise.
44479         * lib/csharpexec.c: Likewise.
44480         * lib/execute.c: Likewise.
44481         * lib/fatal-signal.c: Likewise.
44482         * lib/findprog.c: Likewise.
44483         * lib/fwriteerror.c: Likewise.
44484         * lib/gl_array_list.c: Likewise.
44485         * lib/gl_array_oset.c: Likewise.
44486         * lib/gl_avltree_list.c: Likewise.
44487         * lib/gl_avltree_oset.c: Likewise.
44488         * lib/gl_avltreehash_list.c: Likewise.
44489         * lib/gl_carray_list.c: Likewise.
44490         * lib/gl_linked_list.c: Likewise.
44491         * lib/gl_linkedhash_list.c: Likewise.
44492         * lib/gl_list.c: Likewise.
44493         * lib/gl_oset.c: Likewise.
44494         * lib/gl_rbtree_list.c: Likewise.
44495         * lib/gl_rbtree_oset.c: Likewise.
44496         * lib/gl_rbtreehash_list.c: Likewise.
44497         * lib/imaxabs.c: Likewise.
44498         * lib/imaxdiv.c: Likewise.
44499         * lib/javacomp.c: Likewise.
44500         * lib/javaexec.c: Likewise.
44501         * lib/javaversion.c: Likewise.
44502         * lib/linebreak.c: Likewise.
44503         * lib/localcharset.c: Likewise.
44504         * lib/lock.c: Likewise.
44505         * lib/mbchar.c: Likewise.
44506         * lib/mbswidth.c: Likewise.
44507         * lib/mkdtemp.c: Likewise.
44508         * lib/pipe.c: Likewise.
44509         * lib/printf-args.c: Likewise.
44510         * lib/printf-parse.c: Likewise.
44511         * lib/progname.c: Likewise.
44512         * lib/progreloc.c: Likewise.
44513         * lib/readlink.c: Likewise.
44514         * lib/sh-quote.c: Likewise.
44515         * lib/stpcpy.c: Likewise.
44516         * lib/stpncpy.c: Likewise.
44517         * lib/strcasecmp.c: Likewise.
44518         * lib/strcasestr.c: Likewise.
44519         * lib/strcspn.c: Likewise.
44520         * lib/striconv.c: Likewise.
44521         * lib/strncasecmp.c: Likewise.
44522         * lib/strnlen1.c: Likewise.
44523         * lib/strstr.c: Likewise.
44524         * lib/strtok_r.c: Likewise.
44525         * lib/tls.c: Likewise.
44526         * lib/tmpdir.c: Likewise.
44527         * lib/unicodeio.c: Likewise.
44528         * lib/unsetenv.c: Likewise.
44529         * lib/vasnprintf.c: Likewise.
44530         * lib/vasprintf.c: Likewise.
44531         * lib/wait-process.c: Likewise.
44532         * lib/xallocsa.c: Likewise.
44533         * lib/xsetenv.c: Likewise.
44534         * lib/xstriconv.c: Likewise.
44535
44536 2006-09-13  Simon Josefsson  <jas@extundo.com>
44537
44538         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
44539         that internally, suggested by Ralf Wildenhues
44540         <Ralf.Wildenhues@gmx.de>.
44541
44542 2006-09-13  Simon Josefsson  <jas@extundo.com>
44543
44544         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
44545         @LIBOBJS@.
44546         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
44547
44548 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
44549
44550         * lib/_fpending.c: Include <config.h> unconditionally, since we no
44551         longer worry about uses that don't define HAVE_CONFIG_H.
44552         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
44553         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
44554         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
44555         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
44556         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
44557         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
44558         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
44559         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
44560         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
44561         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
44562         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
44563         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
44564         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
44565         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
44566         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
44567         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
44568         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
44569         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
44570         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
44571         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
44572         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
44573         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
44574         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
44575         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
44576         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
44577         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
44578         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
44579         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
44580         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
44581         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
44582         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
44583         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
44584         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
44585         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
44586         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
44587         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
44588         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
44589         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
44590         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
44591         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
44592         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
44593         Likewise.
44594
44595 2006-09-13  Eric Blake  <ebb9@byu.net>
44596
44597         * lib/getopt.c: Fix typo in last commit.
44598
44599 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
44600
44601         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
44602         dgettext.
44603
44604 2006-09-12  Jim Meyering  <jim@meyering.net>
44605
44606         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
44607         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
44608         Reported by Nelson H. F. Beebe.
44609
44610 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
44611
44612         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
44613         program_invocation_name and program_invocation_short_name are
44614         initialized.
44615         * lib/argp-namefrob.h: Move declarations of program_invocation_name
44616         and program_invocation_short_name to argp.h, so they are visible
44617         to user programs.
44618         * lib/argp.h: Likewise
44619
44620 2006-09-10  Bruno Haible  <bruno@clisp.org>
44621
44622         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
44623         m4/inttypes_h.m4, m4/uintmax_t.m4.
44624
44625 2006-09-10  Bruno Haible  <bruno@clisp.org>
44626
44627         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
44628         gl_AC_TYPE_UINTMAX_T.
44629
44630 2006-09-10  Bruno Haible  <bruno@clisp.org>
44631
44632         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
44633
44634 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44635
44636         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
44637         convention.  Text proposed by Bruno Haible.
44638         (struct argp_option): Document the use of N_() wrappers.
44639
44640         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
44641         '\v', and translate the two parts separately, instead of feeding
44642         the whole string to gettext.  This allows to exclude
44643         '\v' from the strings visible to the translator by writing doc
44644         strings as N_("..") "\v" N_("..").
44645
44646 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
44647
44648         * config/srclist.txt: Undo latest change; the bug was fixed.
44649
44650 2006-09-09  Bruno Haible  <bruno@clisp.org>
44651
44652         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
44653         assignments if building a library without libtool.
44654         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
44655         in func_emit_lib_Makefile_am.
44656         (func_import): When building a static library libfoo.a, arrange to
44657         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
44658         (func_create_testdir): Likewise.
44659         * modules/gc (configure.ac, Makefile.am): If building statically,
44660         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
44661         * modules/iconvme (configure.ac, Makefile.am): Likewise.
44662         * modules/striconv (configure.ac, Makefile.am): Likewise.
44663         Based on a suggestion by Ralf Wildenhues.
44664
44665 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44666
44667         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
44668         Check for unistd.h too, since Autoconf doesn't assume POSIX.
44669         Also:
44670
44671         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44672         Add year_2050_test to catch glibc bug 2821
44673         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
44674
44675         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44676         Prefer #ifdef to #if.
44677
44678         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
44679         Return from 'main' instead of calling 'exit'.
44680
44681 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44682
44683         * lib/mktime.c (guess_time_tm): Fix bug where mktime
44684         returned the maximum time_t value rather than (time_t) -1.
44685         Problem originally reported by William Bardwell
44686         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
44687
44688         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
44689         Moved to here ...
44690         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
44691         ... from here.
44692
44693 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
44694
44695         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
44696         2821 is fixed.
44697
44698 2006-09-08  Jim Meyering  <jim@meyering.net>
44699
44700         Don't make generated files read-only.  That would bother too many
44701         people.  However, do retain the ability to work when targets are
44702         read-only: remove the destination and temporary files before writing
44703         them (when generated via sed or echo), or by using the -f option for
44704         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
44705         * modules/alloca-opt, modules/argz, modules/arpa_inet:
44706         * modules/byteswap, modules/configmake, modules/fcntl:
44707         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
44708         * modules/localcharset, modules/netinet_in, modules/poll:
44709         * modules/stdbool, modules/stdint, modules/sys_select:
44710         * modules/sys_socket, modules/sys_stat, modules/sysexits:
44711
44712 2006-09-08  Jim Meyering  <jim@meyering.net>
44713
44714         Avoid new build failure on FreeBSD 6.0.
44715         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
44716         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
44717         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
44718
44719 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44720
44721         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
44722
44723 2006-09-07  Jim Meyering  <jim@meyering.net>
44724
44725         Fix global typo in last change: use chmod u-w, not chmod u-x.
44726         Spotted by Paul Eggert and Bruce Korb.
44727         * modules/alloca-opt, modules/argz, modules/arpa_inet:
44728         * modules/byteswap, modules/configmake, modules/fcntl:
44729         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
44730         * modules/localcharset, modules/netinet_in, modules/poll:
44731         * modules/stdbool, modules/stdint, modules/sys_select:
44732         * modules/sys_socket, modules/sys_stat, modules/sysexits:
44733
44734 2006-09-06  Jim Meyering  <jim@meyering.net>
44735
44736         Make generated files be read-only.
44737         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
44738         Ensure that each generated file is now read-only.
44739         * modules/argz: Likewise.
44740         * modules/arpa_inet: Likewise.
44741         * modules/byteswap: Likewise.
44742         * modules/configmake: Likewise.
44743         * modules/fcntl: Likewise.
44744         * modules/fnmatch: Likewise.
44745         * modules/getopt: Likewise.
44746         * modules/glob: Likewise.
44747         * modules/inttypes: Likewise.
44748         * modules/netinet_in: Likewise.
44749         * modules/poll: Likewise.
44750         * modules/stdbool: Likewise.
44751         * modules/stdint: Likewise.
44752         * modules/sys_select: Likewise.
44753         * modules/sys_socket: Likewise.
44754         * modules/sys_stat: Likewise.
44755         * modules/sysexits: Likewise.
44756         * modules/localcharset: Same as above, but continue using temporary
44757         file named "t-$@" (why different?) rather than the "$@-t" used
44758         everywhere else.
44759
44760         * modules/sysexits (Makefile.am): Replace literal occurrences
44761         of "sysexit.h" more readable, and more consistent, "$@".
44762
44763 2006-09-06  Bruno Haible  <bruno@clisp.org>
44764
44765         * modules/striconv: New file.
44766         * modules/xstriconv: New file.
44767         * MODULES.html.sh (Internationalization functions): Add striconv,
44768         xstriconv.
44769
44770 2006-09-06  Bruno Haible  <bruno@clisp.org>
44771
44772         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
44773         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
44774         not using libtool correctly.
44775
44776 2006-09-06  Bruno Haible  <bruno@clisp.org>
44777
44778         * lib/striconv.h: New file.
44779         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
44780         iconvstring.c.
44781         * lib/xstriconv.h: New file.
44782         * lib/xstriconv.c: New file.
44783
44784 2006-09-06  Bruno Haible  <bruno@clisp.org>
44785
44786         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
44787         lib_..._LDFLAGS.
44788
44789 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44790
44791         * lib/argz_.h: Sync from Libtool.
44792
44793         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
44794                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
44795
44796         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
44797
44798 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
44799
44800         * modules/trim: New file.
44801
44802 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
44803
44804         * lib/trim.h: New file.
44805         * lib/trim.c: New file.
44806
44807 2006-09-05  Bruno Haible  <bruno@clisp.org>
44808
44809         * MODULES.html.sh (String handling): Add trim.
44810
44811 2006-09-04  Karl Berry  <karl@gnu.org>
44812
44813         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
44814         until next release.
44815
44816 2006-09-03  Bruno Haible  <bruno@clisp.org>
44817
44818         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
44819         correctly.
44820
44821 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44822
44823         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
44824         not gl_GETLOADAVG.  Omit unneeded semicolons.
44825         Problems reported by Ralf Wildenhues in
44826         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
44827         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
44828         at the end, which is the usual gnulib style.
44829
44830         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
44831         of doing all the work ourselves.
44832         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
44833         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
44834
44835 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44836
44837         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
44838         Problem reported by Ralf Wildenhues in
44839         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
44840
44841         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
44842         HAVE_STRUCT_STATFS_F_FSTYPENAME.
44843
44844 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
44845
44846         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
44847         yesterday's patch by changing test -n to test -z.
44848
44849 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44850
44851         * modules/getloadavg (Files): Add m4/getloadavg.m4.
44852         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
44853         the former is now obsolescent.
44854
44855         * modules/chdir-long (Depends-on): Add fcntl.
44856
44857 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44858
44859         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
44860         obsolescent, and programs should use gnulib instead.
44861         * m4/getloadavg.m4: New file, with contents taken from Autoconf
44862         but with prefixes changed.
44863
44864 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
44865
44866         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
44867         or stdbool.h, because they might not exist while configuring.
44868
44869         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
44870         Don't include unistd.h or limits.h; not needed, since chdir-long.h
44871         does that for us.
44872         (O_DIRECTORY): Remove.
44873
44874 2006-08-31  Eric Blake  <ebb9@byu.net>
44875
44876         * gnulib-tool: Don't let emacs change spaces to TAB.
44877
44878 2006-08-31  Bruno Haible  <bruno@clisp.org>
44879
44880         * gnulib-tool: When calling func_import more than once, do it in a
44881         subshell.
44882         Reported by Eric Blake <ebb9@byu.net>.
44883
44884 2006-08-31  Bruno Haible  <bruno@clisp.org>
44885
44886         * gnulib-tool (nl): Remove variable.
44887         (sed_transform_lib_file): Use more robust test for config-h module.
44888         (func_import): Fix typo in 2006-08-25 patch.
44889
44890 2006-08-31  Bruno Haible  <bruno@clisp.org>
44891
44892         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
44893         specified, augment Makefile.am variables instead of assigning them.
44894
44895 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44896
44897         Work around a bug in both the Linux and SunOS 64-bit kernels:
44898         nanosleep mishandles sleeps for longer than 2**31 seconds.
44899         Problem reported by Frank v Waveren in
44900         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
44901         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
44902         Check for nanosleep bug.
44903         (LIB_NANOSLEEP): Append clock_gettime library if needed.
44904
44905 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44906
44907         Work around a bug in both the Linux and SunOS 64-bit kernels:
44908         nanosleep mishandles sleeps for longer than 2**31 seconds.
44909         Problem reported by Frank v Waveren in
44910         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
44911         * lib/nanosleep.c (BILLION): New constant.
44912         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
44913         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
44914         implementation.
44915
44916 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44917
44918         * modules/nanosleep (Depends-on): Add gettime.
44919
44920 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
44921         and Simon Josefsson  <jas@extundo.com>
44922         and Oskar Liljeblad  <oskar@osk.mine.nu>
44923
44924         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
44925         * gnulib-tool (func_import): New license type 'unmodifiable license
44926         text'.
44927         * modules/fdl: Use it.  Longer description.
44928         * module/gpl, module/lgpl: New files.
44929
44930 2006-08-30  Jim Meyering  <jim@meyering.net>
44931
44932         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
44933         shadowing the parameter.
44934
44935 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44936
44937         Sync from Libtool:
44938
44939         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44940
44941         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
44942         sharing with gnulib.  Report by Eric Blake.
44943
44944 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44945
44946         * modules/isapipe: New file.
44947         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
44948
44949 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44950
44951         * modules/configmake (Makefile.am): Add a comment, and omit
44952         the CONFIGMAKE_ prefix from generated macro names.  Suggested
44953         by Bruno Haible.
44954
44955 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44956
44957         * m4/isapipe.m4: New file.
44958
44959 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
44960
44961         * lib/isapipe.c, lib/isapipe.h: New files.
44962
44963 2006-08-29  Jim Meyering  <jim@meyering.net>
44964
44965         * modules/configmake (Makefile.am): Make configmake.h depend on
44966         Makefile.  Otherwise, a stale configmake.h could hang around.
44967
44968 2006-08-29  Eric Blake  <ebb9@byu.net>
44969
44970         * lib/error.c (error_at_line, print_errno_message): Match libc, after
44971         resolution of upstream bug 3044.
44972
44973 2006-08-29  Bruno Haible  <bruno@clisp.org>
44974
44975         * modules/localcharset (Depends-on): Add configmake.
44976         (Makefile.am): Remove setting of LIBDIR through DEFS.
44977
44978 2006-08-29  Bruno Haible  <bruno@clisp.org>
44979
44980         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
44981         defined.
44982
44983 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
44984
44985         * modules/fcntl: New file.
44986         * modules/chdir-safer (Depends-on): Add fcntl.
44987         * modules/fts: Likewise.
44988         * modules/mkdir-p: Likewise.
44989
44990         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
44991         This undoes the most recent change, since we're now addressing the
44992         problem in a different way.
44993
44994         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
44995         into output, since the output might be called Makefile.am even
44996         if $makefile_name is something different.
44997         (func_import): Use $makefile_am rather than
44998         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
44999         empty.
45000
45001         * modules/inttypes (Files): Add m4/inttypes-h.m4.
45002
45003 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
45004
45005         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
45006         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
45007         recent change to stdint.m4, since we're now addressing the problem in a
45008         different way.
45009
45010 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
45011
45012         * m4/fcntl_h.m4: New file.
45013
45014 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
45015
45016         * lib/fcntl_.h: New file.
45017         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
45018         the fcntl module.
45019         * lib/dirchownmod.c: Likewise.
45020         * lib/fts.c: Likewise.
45021
45022         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
45023         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
45024         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
45025         just before including <inttypes.h>, to avoid circular inclusion.
45026
45027 2006-08-28  Jim Meyering  <jim@meyering.net>
45028
45029         * doc/visibility.texi: Actually read and correct the grammar of the
45030         sentence affected by yesterday's change.
45031
45032 2006-08-28  Eric Blake  <ebb9@byu.net>
45033
45034         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
45035         needs wrapper.
45036
45037 2006-08-28  Eric Blake  <ebb9@byu.net>
45038
45039         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
45040
45041 2006-08-28  Eric Blake  <ebb9@byu.net>
45042
45043         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
45044
45045 2006-08-28  Bruno Haible  <bruno@clisp.org>
45046
45047         * modules/c-strstr: New file, from GNU gettext.
45048         * MODULES.html.sh (String handling): Add c-strstr.
45049
45050 2006-08-28  Bruno Haible  <bruno@clisp.org>
45051
45052         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
45053         macros.
45054         Reported by Eric Blake.
45055
45056 2006-08-28  Bruno Haible  <bruno@clisp.org>
45057
45058         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
45059         (VASNPRINTF): Return a string of length > INT_MAX without failing.
45060         * lib/vasprintf.c: Include errno.h, limits.h.
45061         (EOVERFLOW): New fallback definition.
45062         (vasprintf): Test here whether the string length is > INT_MAX.
45063         * lib/vsnprintf.c: Include errno.h, limits.h.
45064         (EOVERFLOW): New fallback definition.
45065         (vsnprintf): Fix bug when generated string was too long for the buffer.
45066         Test here whether the string length is > INT_MAX.
45067
45068 2006-08-28  Bruno Haible  <bruno@clisp.org>
45069
45070         * lib/inttypes_.h (SCNX*): Remove definitions.
45071         Reported by Eric Blake.
45072
45073 2006-08-28  Bruno Haible  <bruno@clisp.org>
45074
45075         * lib/c-strstr.h: New file, from GNU gettext.
45076         * lib/c-strstr.c: New file, from GNU gettext.
45077
45078 2006-08-28  Bruno Haible  <bruno@clisp.org>
45079
45080         * gnulib-tool: Reorder some statements.
45081
45082 2006-08-28  Bruno Haible  <bruno@clisp.org>
45083
45084         * gnulib-tool: New option --makefile-name.
45085         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
45086         $makefile_name.
45087         (func_import): Write $makefile_name to the cache file, and read it from
45088         there unless explicitly specified. Use $makefile_name as file name
45089         instead of Makefile.am. Adjust the recommendations accordingly.
45090
45091 2006-08-28  Bruno Haible  <bruno@clisp.org>
45092
45093         * gnulib-tool (func_verify_module): Check against misapplying patch.
45094
45095 2006-08-28  Bruno Haible  <bruno@clisp.org>
45096
45097         * gnulib-tool (func_relativize, func_relconcat): New functions.
45098         Give an error if --local-dir is given with --update.
45099         Remove trailing slashes from $local_gnulib_dir.
45100         (func_import): Store the relativized $local_gnulib_dir in
45101         gnulib-cache.m4, and read it from there if not specified explicitly.
45102
45103 2006-08-28  Bruno Haible  <bruno@clisp.org>
45104
45105         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
45106         is the current directory. Respect also $local_gnulib_dir.
45107
45108 2006-08-28  Bruno Haible  <bruno@clisp.org>
45109             Simon Josefsson  <jas@extundo.com>
45110
45111         BeOS portability.
45112         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
45113
45114 2006-08-27  Jim Meyering  <jim@meyering.net>
45115
45116         * doc/visibility.texi: Remove duplicate word: "pointer".
45117
45118 2006-08-26  Bruno Haible  <bruno@clisp.org>
45119
45120         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
45121         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
45122         (Makefile.am): Create inttypes.h from inttypes_.h.
45123         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
45124
45125         * modules/imaxabs: New file.
45126
45127         * modules/imaxdiv: New file.
45128
45129 2006-08-26  Bruno Haible  <bruno@clisp.org>
45130
45131         * m4/inttypes.m4: New file.
45132         * m4/_inttypes_h.m4: Remove file.
45133         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
45134         PRI_MACROS_BROKEN.
45135         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
45136
45137         * m4/imaxabs.m4: New file.
45138
45139         * m4/imaxdiv.m4: New file.
45140
45141 2006-08-26  Bruno Haible  <bruno@clisp.org>
45142
45143         * lib/inttypes_.h: New file.
45144         * lib/inttypes.h: Remove file.
45145         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
45146
45147         * lib/imaxabs.c: New file.
45148
45149         * lib/imaxdiv.c: New file.
45150
45151 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
45152
45153         New config-h module, so that "make" output needn't be cluttered
45154         by -DHAVE_CONFIG_H.
45155         * MODULES.html.sh (Support for building libraries and executables):
45156         Add config-h.
45157         * modules/config-h: New file.
45158         * gnulib-tool (nl, sed_transform_lib_file): New vars.
45159         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
45160         the config-h module is used.
45161
45162         New configmake module, so that "make" output needn't be cluttered
45163         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
45164         * MODULES.html.sh (Support for building libraries and executables):
45165         Add configmake.
45166         * modules/configmake: New file.
45167
45168 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
45169
45170         * m4/config-h.m4: New file.
45171
45172 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
45173
45174         * config/srclist.txt: Add elisp-comp.
45175
45176 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
45177
45178         * MODULES.html.sh (Support for building libraries and executables):
45179         Add elisp-comp.
45180         * build-aux/elisp-comp: New file.
45181         * modules/elisp-comp: New file.
45182
45183 2006-08-24  Bruno Haible  <bruno@clisp.org>
45184
45185         * gnulib-tool (func_create_testdir): Use non-default values of
45186         sourcebase and m4base.
45187
45188 2006-08-24  Bruno Haible  <bruno@clisp.org>
45189
45190         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
45191         HTML structure.
45192
45193 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
45194
45195         * modules/openat (Depends-on): Add lchown.
45196
45197 2006-08-23  Bruno Haible  <bruno@clisp.org>
45198
45199         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
45200         of gl_LOCK_EARLY instead of gl_LOCK.
45201
45202 2006-08-23  Bruno Haible  <bruno@clisp.org>
45203
45204         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
45205         on OSF/1 to no.
45206         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
45207
45208 2006-08-23  Bruno Haible  <bruno@clisp.org>
45209
45210         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
45211         as unusable.
45212
45213         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
45214         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
45215         (gl_LOCK): New macro.
45216
45217 2006-08-22  Simon Josefsson  <jas@extundo.com>
45218
45219         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
45220         to md5 module.
45221
45222 2006-08-22  Simon Josefsson  <jas@extundo.com>
45223
45224         * MODULES.html.sh: Add "Support for maintaining and release
45225         projects".
45226
45227         * build-aux/gnupload: New file, from coreutils.
45228
45229 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
45230
45231         Avoid the need for AC_LIBSOURCES in m4 macros.
45232         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
45233         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
45234         * modules/check-version (EXTRA_DIST): Add check-version.h.
45235         * modules/crc (EXTRA_DIST): Add crc.h.
45236         * modules/des (EXTRA_DIST): Add des.h.
45237         * modules/gc (EXTRA_DIST): Add gc.h.
45238         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
45239         * modules/getline (EXTRA_DIST): Add getline.h.
45240         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
45241         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
45242         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
45243         * modules/md2 (EXTRA_DIST): Add md2.h.
45244         * modules/md4 (EXTRA_DIST): Add md4.h.
45245         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
45246         * modules/read-file (EXTRA_DIST): Add read-file.h.
45247         * modules/readline (EXTRA_DIST): Add readline.h.
45248         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
45249         rijndael-api-fst.h.
45250
45251 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
45252
45253         * m4/rijndael.m4 (gl_ARCFOUR):
45254         * m4/arctwo.m4 (gl_ARCTWO):
45255         * m4/check-version.m4 (gl_CHECK_VERSION):
45256         * m4/crc.m4 (gl_CRC):
45257         * m4/des.m4 (gl_DES):
45258         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
45259         * m4/gc.m4 (gl_GC):
45260         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
45261         * m4/getline.m4 (gl_FUNC_GETLINE):
45262         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
45263         * m4/hmac-md5.m4 (gl_HMAC_MD5):
45264         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
45265         * m4/md2.m4 (gl_MD2):
45266         * m4/md4.m4 (gl_MD4):
45267         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
45268         * m4/read-file.m4 (gl_FUNC_READ_FILE):
45269         * m4/readline.m4 (gl_FUNC_READLINE):
45270         * m4/rijndael.m4 (gl_RIJNDAEL):
45271         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
45272         to get the necessary .h files and whatnot.
45273
45274 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
45275
45276         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
45277         gnulib rather than the other way around.
45278         * config/srclistvars.sh (COREUTILS): Remove.
45279
45280 2006-08-22  Jim Meyering  <jim@meyering.net>
45281
45282         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
45283
45284         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
45285
45286 2006-08-22  Eric Blake  <ebb9@byu.net>
45287
45288         * modules/regexprops-generic: New file.
45289         * MODULES.html.sh (Support for building documentation): List it.
45290
45291 2006-08-22  Eric Blake  <ebb9@byu.net>
45292
45293         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
45294         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
45295         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
45296         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
45297
45298 2006-08-22  Bruno Haible  <bruno@clisp.org>
45299
45300         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
45301         and lib_LTLIBRARIES like the other lib_* variables.
45302
45303 2006-08-22  Bruno Haible  <bruno@clisp.org>
45304
45305         * build-aux/x-to-1.in: New file, from GNU gettext.
45306
45307 2006-08-22  Bruno Haible  <bruno@clisp.org>
45308
45309         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
45310         <utmpx.h> exists.
45311
45312 2006-08-22  Bruno Haible  <bruno@clisp.org>
45313
45314         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
45315         <utmpx.h> exists.
45316
45317 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
45318
45319         BeOS portability.
45320         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
45321         exist.
45322         Problem reported by Bruno Haible.
45323
45324 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
45325
45326         Avoid the need for AC_LIBSOURCES in m4 macros.
45327         * modules/acl (EXTRA_DIST): Add acl.h.
45328         * modules/argmatch (Files): Add m4/argmatch.m4.
45329         (configure.ac): Add gl_ARGMATCH.
45330         (EXTRA_DIST): Renamed from lib_SOURCES, for
45331         consistency with the other modules.  Remove argmatch.c.
45332         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
45333         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
45334         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
45335         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
45336         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
45337         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
45338         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
45339         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
45340         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
45341         * modules/closeout (EXTRA_DIST): Add closeout.h.
45342         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
45343         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
45344         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
45345         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
45346         dirname.h; remove basename.c and stripslash.c.
45347         * modules/exclude (EXTRA_DIST): Add exclude.h.
45348         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
45349         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
45350         * modules/file-type (EXTRA_DIST): Add file-type.h.
45351         * modules/filemode (EXTRA_DIST): Add filemode.h.
45352         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
45353         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
45354         * modules/fpending (EXTRA_DIST): Add __fpending.h.
45355         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
45356         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
45357         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
45358         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
45359         * modules/getdate (EXTRA_DIST): Add getdate.c.
45360         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
45361         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
45362         * modules/getpass (EXTRA_DIST): Add getpass.h.
45363         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
45364         * modules/group-member (EXTRA_DIST): Add group-member.h.
45365         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
45366         * modules/hash (EXTRA_DIST): Add hash.h.
45367         * modules/human (EXTRA_DIST): Add human.h.
45368         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
45369         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
45370         * modules/lchown (EXTRA_DIST): Add lchown.h.
45371         * modules/long-options (EXTRA_DIST): Add long-options.h.
45372         * modules/lstat (EXTRA_DIST): Add lstat.h.
45373         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
45374         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
45375         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
45376         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
45377         * modules/memxor (EXTRA_DIST): Add memxor.h.
45378         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
45379         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
45380         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
45381         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
45382         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
45383         * modules/physmem (EXTRA_DIST): Add physmem.h.
45384         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
45385         * modules/posixver (EXTRA_DIST): Add posixver.h.
45386         * modules/quote (EXTRA_DIST): Add quote.h.
45387         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
45388         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
45389         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
45390         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
45391         regex_internal.h regexec.c.
45392         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
45393         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
45394         * modules/same (EXTRA_DIST): Add same.h.
45395         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
45396         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
45397         * modules/savedir (EXTRA_DIST): Add savedir.h.
45398         * modules/sha1 (EXTRA_DIST): Add sha1.h.
45399         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
45400         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
45401         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
45402         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
45403         * modules/strdup (EXTRA_DIST): Add strdup.h.
45404         * modules/strftime (EXTRA_DIST): Add strftime.h.
45405         * modules/strndup (EXTRA_DIST): Add strndup.h.
45406         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
45407         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
45408         * modules/time_r (EXTRA_DIST): Add time_r.h.
45409         * modules/timespec (EXTRA_DIST): Add timespec.h.
45410         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
45411         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
45412         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
45413         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
45414         * modules/userspec (EXTRA_DIST): Add userspec.h.
45415         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
45416         * modules/utimens (EXTRA_DIST): Add utimens.h.
45417         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
45418         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
45419         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
45420         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
45421         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
45422         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
45423         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
45424         * modules/yesno (EXTRA_DIST): Add yesno.h.
45425
45426 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
45427
45428         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
45429
45430         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
45431         * m4/dev-ino.m4, same-inode.m4: Remove.
45432
45433         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
45434         * m4/acl.m4 (AC_FUNC_ACL):
45435         * m4/backupfile.m4 (gl_BACKUPFILE):
45436         * m4/c-strtod.m4 (gl_C99_STRTOLD):
45437         * m4/canon-host.m4 (gl_CANON_HOST):
45438         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
45439         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
45440         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
45441         * m4/cloexec.m4 (gl_CLOEXEC):
45442         * m4/close-stream.m4 (gl_CLOSE_STREAM):
45443         * m4/closeout.m4 (gl_CLOSEOUT):
45444         * m4/dirfd.m4 (gl_FUNC_DIRFD):
45445         * m4/dirname.m4 (gl_DIRNAME):
45446         * m4/exclude.m4 (gl_EXCLUDE):
45447         * m4/exitfail.m4 (gl_EXITFAIL):
45448         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
45449         * m4/file-type.m4 (gl_FILE_TYPE):
45450         * m4/filemode.m4 (gl_FILEMODE):
45451         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
45452         * m4/fpending.m4 (gl_FUNC_FPENDING):
45453         * m4/fprintftime.m4 (gl_FPRINTFTIME):
45454         * m4/fts.m4 (gl_FUNC_FTS):
45455         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
45456         * m4/getdate.m4 (gl_GETDATE):
45457         * m4/gethrxtime.m4 (gl_GETHRXTIME):
45458         * m4/getpagesize.m4 (gl_GETPAGESIZE):
45459         * m4/getpass.m4 (gl_FUNC_GETPASS):
45460         * m4/gettime.m4 (gl_GETTIME):
45461         * m4/getugroups.m4 (gl_GETUGROUPS):
45462         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
45463         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
45464         * m4/hard-locale.m4 (gl_HARD_LOCALE):
45465         * m4/hash.m4 (gl_HASH):
45466         * m4/idcache.m4 (gl_IDCACHE):
45467         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
45468         * m4/lchown.m4 (gl_FUNC_LCHOWN):
45469         * m4/long-options.m4 (gl_LONG_OPTIONS):
45470         * m4/lstat.m4 (gl_FUNC_LSTAT):
45471         * m4/md5.m4 (gl_MD5):
45472         * m4/memcasecmp.m4 (gl_MEMCASECMP):
45473         * m4/memcoll.m4 (gl_MEMCOLL):
45474         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
45475         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
45476         * m4/memxor.m4 (gl_MEMXOR):
45477         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
45478         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
45479         * m4/modechange.m4 (gl_MODECHANGE):
45480         * m4/mountlist.m4 (gl_MOUNTLIST):
45481         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
45482         * m4/openat.m4 (gl_FUNC_OPENAT):
45483         * m4/pathmax.m4 (gl_PATHMAX):
45484         * m4/physmem.m4 (gl_PHYSMEM):
45485         * m4/posixtm.m4 (gl_POSIXTM):
45486         * m4/posixver.m4 (gl_POSIXVER):
45487         * m4/quote.m4 (gl_QUOTE):
45488         * m4/quotearg.m4 (gl_QUOTEARG):
45489         * m4/readtokens.m4 (gl_READTOKENS):
45490         * m4/readutmp.m4 (gl_READUTMP):
45491         * m4/regex.m4 (gl_REGEX):
45492         * m4/safe-read.m4 (gl_SAFE_READ):
45493         * m4/safe-write.m4 (gl_SAFE_WRITE):
45494         * m4/same.m4 (gl_SAME):
45495         * m4/save-cwd.m4 (gl_SAVE_CWD):
45496         * m4/savedir.m4 (gl_SAVEDIR):
45497         * m4/settime.m4 (gl_SETTIME):
45498         * m4/sha1.m4 (gl_SHA1):
45499         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
45500         * m4/stat-macros.m4 (gl_STAT_MACROS):
45501         * m4/stat-time.m4 (gl_STAT_TIME):
45502         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
45503         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
45504         * m4/strdup.m4 (gl_FUNC_STRDUP):
45505         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
45506         * m4/strndup.m4 (gl_FUNC_STRNDUP):
45507         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
45508         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
45509         * m4/time_r.m4 (gl_TIME_R):
45510         * m4/timespec.m4 (gl_TIMESPEC):
45511         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
45512         * m4/unlinkdir.m4 (gl_UNLINKDIR):
45513         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
45514         * m4/userspec.m4 (gl_USERSPEC):
45515         * m4/utimecmp.m4 (gl_UTIMECMP):
45516         * m4/utimens.m4 (gl_UTIMENS):
45517         * m4/xalloc.m4 (gl_XALLOC):
45518         * m4/xgetcwd.m4 (gl_XGETCWD):
45519         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
45520         * m4/xreadlink.m4 (gl_XREADLINK):
45521         * m4/xstrtod.m4 (gl_XSTRTOD):
45522         * m4/yesno.m4 (gl_YESNO):
45523         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
45524         to get the necessary .h files and whatnot.
45525
45526 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
45527             Bruno Haible  <bruno@clisp.org>
45528
45529         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
45530         /bin/sh understanding of '!' conditional negation.
45531
45532 2006-08-21  Jim Meyering  <jim@meyering.net>
45533
45534         * modules/openat (Depends-on): Really alphabetize.
45535
45536         * modules/acl (Depends-on): Add error and quote.
45537
45538         * check-module (find_included_lib_files): Add at-func.c to the
45539         ok-to-include-more-than-once white list.
45540
45541         * modules/openat (Depends-on): Add lstat.  Alphabetize.
45542
45543 2006-08-21  Bruno Haible  <bruno@clisp.org>
45544
45545         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
45546         Emit a pkgdata_DATA variable only if some snippets add contents to it.
45547         Reported by Martin Lambers <marlam@marlam.de>.
45548
45549 2006-08-21  Bruno Haible  <bruno@clisp.org>
45550
45551         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
45552         specify an installation location, don't emit a noinst_LIBRARIES or
45553         noinst_LTLIBRARIES assignment.
45554
45555 2006-08-21  Bruno Haible  <bruno@clisp.org>
45556
45557         BeOS portability.
45558         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
45559         BeOS has mbrtowc() but no <wctype.h>.
45560
45561 2006-08-21  Bruno Haible  <bruno@clisp.org>
45562
45563         BeOS portability.
45564         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
45565         exist.
45566
45567 2006-08-21  Bruno Haible  <bruno@clisp.org>
45568
45569         BeOS portability.
45570         * lib/mbchar.h: Include <wctype.h> only if it exists.
45571
45572 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
45573
45574         Remove files that are no longer needed by their respective modules.
45575         * m4/obstack.m4: Remove.
45576         * m4/strerror_r.m4: Remove.
45577         * m4/uint32_t.m4: Remove.
45578         * m4/uintptr_t.m4: Remove.
45579         * m4/ullong_max.m4: Remove.
45580         * m4/xstrtoimax.m4: Remove.
45581         * m4/xstrtoumax.m4: Remove.
45582
45583         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
45584         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
45585         dependencies now capture this.
45586
45587         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
45588         Do not use AC_LIBSOURCES, since gnulib modules now do this.
45589         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
45590         * m4/human.m4 (gl_HUMAN): Likewise.
45591         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
45592         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
45593
45594         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
45595
45596         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
45597         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
45598         stdint.
45599         * m4/human.m4 (gl_HUMAN): Likewise.
45600         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
45601         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
45602         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
45603         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
45604         * m4/xstrtol (gl_XSTRTOL): Likewise.
45605
45606         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
45607         AC_TYPE_LONG_LONG_INT.
45608         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
45609         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
45610         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
45611         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
45612
45613         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
45614         on stdbool.
45615
45616         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
45617         (gl_PREREQ_XSTRTOUL): Remove.
45618
45619         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
45620
45621         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
45622         mode.
45623
45624 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
45625
45626         Add and change modules to make it easier for coreutils to use
45627         gnulib-tool.
45628         * modules/backupfile (Files): Remove m4/d-ino.m4.
45629         (Depends-on): Add d-ino.
45630         * modules/cycle-check (Depends-on): Add stdint.
45631         (lib_SOURCES): Add cycle-check.h.
45632         * modules/d-ino: New module.
45633         * modules/d-type: New module.
45634         * modules/error (Files): Remove m4/strerror_r.m4.
45635         * modules/filemode (Files): Add m4/st_dm_mode.m4.
45636         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
45637         m4/inttypes_h.m4, m4/uintmax_t.m4.
45638         (Depends-on): Add stdint.
45639         (lib_SOURCES): Add fsusage.h.
45640         * modules/getcwd (Files): Remove d-ino.m4.
45641         (Depends-on): Add d-ino.
45642         * modules/getndelim2 (Depends-on): Add stdint.
45643         * modules/glob (Files): Remove m4/d-type.m4.
45644         (Depends-on): Add d-type.
45645         * modules/host-os: New module.
45646         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
45647         m4/inttypes_h.m4, m4/uintmax_t.m4.
45648         * Depends-on: Add stdint.
45649         (lib_SOURCES): Add human.h.
45650         * modules/inttostr (Files): Remove m4/intmax_t.m4,
45651         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
45652         m4/uintmax_t.m4, m4/ulonglong.m4.
45653         (Depends-on): Add stdint.
45654         (EXTRA_DIST): Add inttostr.h.
45655         * modules/lchmod: New module.
45656         * modules/link-follow: New module.
45657         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
45658         (Depends-on): Add lchmod.
45659         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
45660         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
45661         (Depends-on): Add stdint.
45662         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
45663         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
45664         (Depends-on): Add stdint.
45665         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
45666         * modules/perl: New module.
45667         * modules/regex (Depends-on): Add stdint.
45668         * modules/rmdir-errno: New module.
45669         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
45670         m4/intmax_t.m4.
45671         (Depends-on): Add stdint.
45672         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
45673         m4/uintmax_t.m4.
45674         (Depends-on): Add stdint.
45675         * modules/unlink-busy: New module.
45676         * modules/utimecmp (Depends-on): Add stdint.
45677         * modules/uptime: New module.
45678         * modules/winsz-ioctl: New module.
45679         * modules/winsz-termios: New module.
45680         * modules/xnanosleep (Depends-on): Add nanosleep.
45681         * modules/ullong_max: Remove.
45682         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
45683         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
45684         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
45685         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
45686         (Depends-on): Add inttypes.
45687         (lib_SOURCES): Add xstrtol.h.
45688         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
45689         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
45690         * MODULES.html.sh: Move 'assert' into the assert section.
45691         Move 'dummy' into the linking section.
45692         Remove ullong_max.
45693         Add section for compatibility checks for POSIX:2001 functions,
45694         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
45695         winsz-ioctl, and winsz-termios into it.
45696         Add lchmod.
45697         Add top-level Misc section and put host-os, perl, and uptime
45698         into it.
45699
45700 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
45701
45702         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
45703         now assume the stdint module.  Do not include inttypes.h.
45704         * lib/fsusage.h: Likewise.
45705         * lib/getndelim2.c: Likewise.
45706         * lib/human.h: Likewise.
45707         * lib/inttostr.h: Likewise.
45708         * lib/obstack.c: Likewise.
45709         * lib/regex_internal.h: Likewise.
45710         * lib/tempname.c: Likewise.
45711         * lib/utimecmp.c: Likewise.
45712         * lib/xstrtol.h: Likewise.
45713
45714         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
45715
45716         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
45717         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
45718         * lib/xtime.h: Likewise.
45719
45720 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45721
45722         * modules/openat (Files): Add lib/fchmodat.c.
45723         Fixes problem reported by Jay Youngman.
45724
45725 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
45726
45727         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
45728         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
45729
45730 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
45731             Bruno Haible  <bruno@clisp.org>
45732
45733         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
45734         and is a script that invokes bison. Tighten the code. Add comments.
45735
45736 2006-08-18  Jim Meyering  <jim@meyering.net>
45737
45738         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
45739         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
45740         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
45741         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
45742
45743 2006-08-18  Bruno Haible  <bruno@clisp.org>
45744
45745         * modules/bison-i18n: New file.
45746         * MODULES.html.sh (Internationalization functions): Add it.
45747
45748 2006-08-18  Bruno Haible  <bruno@clisp.org>
45749
45750         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
45751         sys/statvfs.h. When getmntinfo was found, check its declaration and
45752         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
45753
45754 2006-08-18  Bruno Haible  <bruno@clisp.org>
45755
45756         * m4/bison-i18n.m4: New file, from bison.
45757
45758 2006-08-18  Bruno Haible  <bruno@clisp.org>
45759
45760         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
45761         (ME_DUMMY): Treat "kernfs" as a dummy.
45762         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
45763
45764 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
45765
45766         Update from coreutils.
45767
45768         2006-08-15  Jim Meyering  <jim@meyering.net>
45769
45770         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
45771
45772         2006-01-17  Jim Meyering  <jim@meyering.net>
45773
45774         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
45775
45776         2006-01-11  Jim Meyering  <jim@meyering.net>
45777
45778         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
45779         Check for the lchmod function.
45780
45781 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
45782
45783         Update from coreutils.
45784
45785         * lib/__fpending.h: Add copyright notice.
45786         * lib/fprintftime.h: Likewise.
45787         * lib/savedir.c: Use (C) in copyright notice.
45788         * lib/savedir.h: Likewise.
45789
45790         2006-08-15  Jim Meyering  <jim@meyering.net>
45791
45792         * lib/at-func.c: New file, with the logic of all emulated at-functions.
45793         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
45794         in support of the EXPECTED_ERRNO macro.
45795         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
45796         definitions.  Instead, define the appropriate symbols and include
45797         "at-func.c".
45798         * lib/mkdirat.c (mkdirat): Likewise.
45799         * lib/fchmodat.c (fchmodat): Likewise.
45800         (ENOSYS): Remove definition.
45801         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
45802         it.  Don't include "unistd--.h" -- it wasn't ever used.
45803
45804         2006-01-17  Jim Meyering  <jim@meyering.net>
45805
45806         Rewrite fts.c not to change the current working directory,
45807         by using openat, fstatat, fdopendir, etc..
45808
45809         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
45810         (HAVE_OPENAT_SUPPORT): Define.
45811         [_LIBC] (fchdir): Don't undef or define; no longer used.
45812         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
45813         Now, this `function' always succeeds, and consumes its file descriptor
45814         parameter -- so callers must not close such FDs.  Update callers.
45815         (diropen_fd, opendirat, cwd_advance_fd): New functions.
45816         (diropen): Add parameter, SP.  Adjust all callers.
45817         Implement using diropen_fd, rather than open.
45818         (fts_open): Initialize new member, fts_cwd_fd.
45819         Remove fts_rft-setting code.
45820         (fts_close): Close fts_cwd_fd, if necessary.
45821         (__opendir2): Define in terms of opendir or opendirat,
45822         depending on whether the FST_NOCHDIR flag is set.
45823         (fts_build): Since fts_safe_changedir consumes its FD, and since
45824         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
45825         and close the dup'd file descriptor upon failure.
45826         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
45827         (fts_safe_changedir): Tweak semantics to reflect that this function
45828         now calls cwd_advance_fd and hence consumes its FD argument.
45829         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
45830         [struct FTS] (fts_rft): Remove now-unused member.
45831         [struct FTS] (fts_cycle.state): Improve comment.
45832
45833         * lib/openat.c (openat_needs_fchdir): New function.
45834         * lib/openat.h (openat_needs_fchdir): Declare it.
45835
45836 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
45837
45838         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
45839         Problem and fix reported by Pádraig Brady in
45840         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
45841
45842 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45843
45844         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
45845
45846 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45847
45848         * lib/memcoll.c (memcoll): Optimize for the common case where the
45849         arguments are bytewise equal.
45850
45851 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
45852
45853         * doc/regexprops-generic.texi: Add a copyright notice.
45854
45855 2006-08-15  Bruno Haible  <bruno@clisp.org>
45856
45857         * modules/tmpdir (License): Change to LGPL.
45858
45859 2006-08-15  Bruno Haible  <bruno@clisp.org>
45860
45861         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
45862         module.
45863
45864 2006-08-14  Simon Josefsson  <jas@extundo.com>
45865
45866         * config/srclist.txt: Add gnupload.
45867
45868 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45869
45870         Change copyright notice from LGPL 2 to GPL 2, since that's the
45871         standard form used in the gnulib repository.
45872         * tests/test-lock.c: Likewise.
45873         * tests/test-stdint.c: Likewise.
45874         * tests/test-tls.c: Likewise.
45875
45876         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
45877         prelude-manager.  User shorter URLs for GNU projects, without '?'.
45878         Add copyright notice.
45879
45880         * check-module: Add copyright notice.  Output a copyright
45881         notice if "--version" is specified.
45882         * modules/COPYING: New file.
45883         * tests/test-getaddrinfo.c: Add copyright notice.
45884         * tests/test-verify.c: Likewise.
45885
45886 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45887
45888         Change copyright notice from LGPL 2 to GPL 2, since that's the
45889         standard form used in the gnulib repository.
45890         * lib/lock.c: LGPL -> GPL.
45891         * lib/lock.h: Likewise.
45892         * lib/strnlen1.c: Likewise.
45893         * lib/strnlen1.h: Likewise.
45894         * lib/tls.c: Likewise.
45895         * lib/tls.h: Likewise.
45896         * lib/tmpdir.c: Likewise.
45897
45898         * lib/TODO: Remove; this belongs only in coreutils.
45899
45900 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45901
45902         Add copyright notices to long-enough files that lack them, since
45903         otherwise the files aren't clearly free.  Use the same notice that
45904         getdate.texi already uses.
45905         * doc/alloca-opt.texi: Add copyright notice.
45906         * doc/alloca.texi: Likewise.
45907         * doc/ctime.texi: Likewise.
45908         * doc/functions.texi: Likewise.
45909         * doc/gcd.texi: Likewise.
45910         * doc/gnulib-tool.texi: Likewise.
45911         * doc/inet_ntoa.texi: Likewise.
45912         * doc/visibility.texi: Likewise.
45913
45914         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
45915         * doc/quote.texi: Add copyright notice.
45916
45917         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
45918         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
45919         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
45920         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
45921         is now obsolete, and give a pointer to the Sun list.
45922         Add copyright notice.
45923
45924 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
45925
45926         * config/srclistvars.sh: Add copyright notice.
45927
45928 2006-08-14  Eric Blake  <ebb9@byu.net>
45929
45930         Import the following change from libc:
45931
45932         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
45933
45934         Upstream bug 2997.
45935         * lib/misc/error.c: Add space between program name and message if file
45936         name is missing.
45937
45938 2006-08-12  Karl Berry  <karl@gnu.org>
45939
45940         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
45941         remove, these originate in gnulib now.
45942
45943 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45944
45945         * doc/Makefile (standards.info standards.html standards.dvi):
45946         Also depend on make-stds.texi.
45947
45948 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
45949
45950         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
45951         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
45952
45953         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
45954         in wchar_t.  Problem reported by Eric Blake.
45955
45956         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
45957         LEN is smaller than SIZE.  Suggested by Bruno Haible.
45958         Also, help the compiler to keep LEN in a register.
45959
45960 2006-08-11  Eric Blake  <ebb9@byu.net>
45961
45962         * users.txt: Sort.  Add tar.
45963
45964 2006-08-11  Bruno Haible  <bruno@clisp.org>
45965
45966         * users.txt: New file.
45967
45968 2006-08-11  Bruno Haible  <bruno@clisp.org>
45969
45970         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
45971         before <wchar.h>. Needed for OSF/1 and BSD/OS.
45972
45973 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
45974
45975         * modules/snprintf (Depends-on): Remove minmax.
45976         (Maintainer): Add self and Bruno.
45977
45978 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
45979
45980         * lib/.cppi-disable: Add snprintf.h, socket_.h.
45981         * lib/snprintf.c: Include <errno.h> and <limits.h>.
45982         (EOVERFLOW): Define if the system does not.
45983         Do not include "minmax.h"; it wasn't used.
45984         (snprintf): Don't assume size_t promotes to an unsigned type.
45985         Fix bug when generated string was too long for the buffer: the
45986         buffer's contents are supposed to be the initial prefix of the
45987         output.  Don't assume vasnprintf returns EOVERFLOW if the size
45988         exceeds INT_MAX; do the check ourselves.
45989
45990         Import the following changes from libc:
45991
45992         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
45993
45994         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
45995         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
45996         set wc to the byte which couldn't be converted.
45997         (re_string_reconstruct): Don't clear valid_raw_len before calling
45998         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
45999         tip_context using re_string_context_at.
46000
46001         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
46002
46003         * lib/posix/regex.h: g++ still cannot handled [restrict].
46004
46005         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
46006
46007         * lib/posix/regex.h: Remove special handling for VMS.
46008
46009 2006-08-10  Jim Meyering  <jim@meyering.net>
46010
46011         * modules/same-inode: New module.
46012         * modules/dev-ino: New module.
46013         * modules/cycle-check: Depend on these modules, rather than simply
46014         including their .h files.
46015         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
46016         required via m4/cycle-check.m4.
46017         * modules/same: Depend on new same-inode module, rather than
46018         including same-inode.h.
46019         * modules/chdir-safer: New file.
46020
46021         * modules/chown (Depends-on): Add stat-macros.
46022
46023 2006-08-10  Jim Meyering  <jim@meyering.net>
46024
46025         * m4/cycle-check.m4: New file.
46026         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
46027         * m4/dev-ino.m4, m4/same-inode.m4: New files.
46028
46029 2006-08-10  Eric Blake  <ebb9@byu.net>
46030
46031         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
46032         in from original proposal.
46033
46034 2006-08-10  Eric Blake  <ebb9@byu.net>
46035         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
46036
46037         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
46038         namespace.
46039
46040 2006-08-10  Bruno Haible  <bruno@clisp.org>
46041
46042         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
46043         as well.
46044
46045 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
46046
46047         Sync from coreutils.
46048
46049         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
46050
46051         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
46052         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
46053
46054 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
46055
46056         * modules/restrict: Remove; no longer needed now that we assume
46057         Autoconf 2.59 or later.
46058         * MODULES.html.sh: Remove 'restrict'.
46059         * modules/argp (Depends-on): Remove 'restrict'.
46060         * modules/base64 (Depends-on): Likewise.
46061         * modules/gc (Depends-on): Likewise.
46062         * modules/getaddrinfo (Depends-on): Likewise.
46063         * modules/glob (Depends-on): Likewise.
46064         * modules/inet_ntop (Depends-on): Likewise.
46065         * modules/inet_pton (Depends-on): Likewise.
46066         * modules/memxor (Depends-on): Likewise.
46067         * modules/regex (Depends-on): Likewise.
46068         * modules/strtok_r (Depends-on): Likewise.
46069         * modules/time_r (Depends-on): Likewise.
46070
46071 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
46072
46073         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
46074         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
46075         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
46076         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
46077         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
46078         * m4/memxor.m4 (gl_MEMXOR): Likewise.
46079         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
46080         gl_C_RESTRICT replaced by AC_C_RESTRICT.
46081
46082         Merge from coreutils.
46083         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
46084         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
46085         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
46086         * m4/time_r.m4 (gl_TIME_R): Likewise.
46087
46088 2006-08-09  Karl Berry  <karl@gnu.org>
46089
46090         * config/srclist.txt: no more gettext-tools, per Bruno.
46091
46092 2006-08-08  Eric Blake  <ebb9@byu.net>
46093
46094         * modules/verror: New module.
46095         * MODULES.html.sh: Document it.
46096
46097 2006-08-08  Eric Blake  <ebb9@byu.net>
46098
46099         * lib/verror.h, lib/verror.c: New files.
46100
46101 2006-08-08  Eric Blake  <ebb9@byu.net>
46102
46103         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
46104         verror_at_line output complies with GNU Coding Standards even when
46105         file is NULL.
46106
46107 2006-08-07  Bruno Haible  <bruno@clisp.org>
46108
46109         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
46110         versions of AIX.
46111         Reported by Ralf Wildenhues.
46112
46113 2006-08-07  Bruno Haible  <bruno@clisp.org>
46114
46115         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
46116         in an AC_DEFUN. Needed so that the autoconf snippets can use
46117         AC_REQUIRE.
46118
46119 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46120
46121         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
46122         Initialize pkgdata_DATA.
46123         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
46124         overriding it.
46125
46126 2006-08-06  Eric Blake  <ebb9@byu.net>
46127
46128         * lib/error.h: Fold in some upstream changes from glibc.
46129         * lib/error.c: Likewise.
46130
46131 2006-08-04  Bruno Haible  <bruno@clisp.org>
46132
46133         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
46134         Make the mostlyclean-local rule depend on mostlyclean-generic.
46135         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
46136
46137 2006-07-31  Bruno Haible  <bruno@clisp.org>
46138
46139         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
46140         <stdlib.h>, <string.h>.
46141
46142 2006-07-30  Bruno Haible  <bruno@clisp.org>
46143
46144         * modules/readlink (License): Change to LGPL.
46145
46146 2006-07-30  Bruno Haible  <bruno@clisp.org>
46147
46148         * modules/javaversion (Makefile.am): Distribute javaversion.java and
46149         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
46150         set PKGDATADIR to point to it.
46151
46152 2006-07-30  Bruno Haible  <bruno@clisp.org>
46153
46154         * modules/csharpexec (configure.ac): Comment out macro invocation.
46155         * modules/javaexec (configure.ac): Likewise.
46156         * modules/javacomp-script (configure.ac): Likewise.
46157
46158         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
46159
46160 2006-07-30  Bruno Haible  <bruno@clisp.org>
46161
46162         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
46163         linked-list.
46164
46165 2006-07-30  Bruno Haible  <bruno@clisp.org>
46166
46167         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
46168
46169 2006-07-30  Bruno Haible  <bruno@clisp.org>
46170
46171         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
46172         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
46173         get removed.
46174
46175 2006-07-29  Bruno Haible  <bruno@clisp.org>
46176
46177         Make it possible for gnulib-tool to work with locally modified or
46178         augmented gnulib repositories.
46179         * gnulib-tool (func_usage): Document --local-dir option.
46180         (local_gnulib_dir): New variable.
46181         Handle --local-dir option.
46182         (func_lookup_file): New function.
46183         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
46184         (func_get_description, func_get_filelist, func_get_description,
46185         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
46186         func_get_automake_snippet, func_get_include_directive,
46187         func_get_license, func_get_maintainer): Use func_lookup_file.
46188         (func_import, func_create_testdir): Use func_lookup_file.
46189
46190 2006-07-29  Bruno Haible  <bruno@clisp.org>
46191
46192         * modules/setenv (Depends-on): Add unistd.
46193
46194 2006-07-29  Bruno Haible  <bruno@clisp.org>
46195
46196         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
46197
46198 2006-07-29  Bruno Haible  <bruno@clisp.org>
46199
46200         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
46201
46202 2006-07-29  Bruno Haible  <bruno@clisp.org>
46203
46204         * gnulib-tool (import, update): If there is no Makefile.am, look at
46205         aclocal.m4, instead of bailing out.
46206
46207 2006-07-29  Bruno Haible  <bruno@clisp.org>
46208
46209         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
46210         Categorize the options by when they are useful.
46211
46212 2006-07-29  Bruno Haible  <bruno@clisp.org>
46213
46214         * gnulib-tool (func_usage): Document option --no-libtool.
46215         Handle option --no-libtool.
46216         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
46217         for changed semantics of $libtool variable.
46218         (func_import): Likewise. If libtool is not used, show this through
46219         an option --no-libtool.
46220         (func_create_testdir): Update.
46221
46222 2006-07-29  Bruno Haible  <bruno@clisp.org>
46223
46224         * gnulib-tool (func_import): Extend error message about missing
46225         --doc-base.
46226
46227 2006-07-29  Bruno Haible  <bruno@clisp.org>
46228
46229         * gnulib-tool (func_import): Don't create the $docbase directory if
46230         there is no file to store there.
46231
46232 2006-07-29  Bruno Haible  <bruno@clisp.org>
46233
46234         * gnulib-tool (autoconf_minversion): If a --dir option is given and
46235         relevant, look for configure.ac there, not in the current directory.
46236         Also use a simple search for AC_PREREQ, not "autoconf --trace".
46237
46238 2006-07-29  Bruno Haible  <bruno@clisp.org>
46239
46240         * gnulib-tool (SORT): New variable.
46241         (func_usage): Undocument --assume-autoconf option.
46242         Remove --assume-autoconf option handling.
46243         (autoconf_minversion): Determine from the contents of configure.ac.
46244         (func_import): Remove autoconf_minversion handling.
46245         Suggested by Eric Blake.
46246
46247 2006-07-29  Bruno Haible  <bruno@clisp.org>
46248
46249         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
46250
46251 2006-07-29  Bruno Haible  <bruno@clisp.org>
46252
46253         * config/srclist.txt (*setenv.[ch]): Remove rules.
46254
46255 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46256
46257         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
46258
46259 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46260
46261         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
46262         arpa/inet.h.
46263
46264 2006-07-28  Simon Josefsson  <jas@extundo.com>
46265
46266         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
46267         * modules/inet_pton (Depends-on): Likewise.
46268
46269 2006-07-28  Simon Josefsson  <jas@extundo.com>
46270
46271         * m4/netinet_in_h.m4: New file.
46272
46273 2006-07-28  Simon Josefsson  <jas@extundo.com>
46274
46275         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
46276         #include's.
46277
46278 2006-07-28  Simon Josefsson  <jas@extundo.com>
46279
46280         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
46281         #include's.
46282
46283 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
46284
46285         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
46286         setgid on directories only if they set these bits.
46287         * lib/modechange.h: Remove obsolete comment about masks.
46288
46289 2006-07-28  Eric Blake  <ebb9@byu.net>
46290
46291         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
46292         macro expansion.
46293
46294 2006-07-28  Bruno Haible  <bruno@clisp.org>
46295
46296         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
46297
46298 2006-07-28  Bruno Haible  <bruno@clisp.org>
46299
46300         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
46301
46302 2006-07-28  Bruno Haible  <bruno@clisp.org>
46303
46304         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
46305         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
46306         Define fallbacks.
46307         Avoids link error on FreeBSD 4.x.
46308         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
46309
46310         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
46311         encoding.
46312         * lib/mbswidth.c (iswcntrl): Likewise.
46313
46314 2006-07-27  Bruno Haible  <bruno@clisp.org>
46315
46316         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
46317         test.
46318
46319 2006-07-27  Bruno Haible  <bruno@clisp.org>
46320
46321         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
46322         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
46323         defined.
46324
46325 2006-07-26  Eric Blake  <ebb9@byu.net>
46326
46327         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
46328
46329 2006-07-26  Eric Blake  <ebb9@byu.net>
46330
46331         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
46332         like mingw that lack mkstemp.
46333         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
46334         avoid compilation warning on mingw.
46335
46336 2006-07-26  Bruno Haible  <bruno@clisp.org>
46337
46338         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
46339         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
46340         INT_FAST*_MIN, INTPTR_MIN.
46341
46342 2006-07-25  Bruno Haible  <bruno@clisp.org>
46343
46344         * modules/version-etc (Depends-on): Add stdarg.
46345
46346 2006-07-25  Bruno Haible  <bruno@clisp.org>
46347
46348         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
46349         complex commands.
46350
46351 2006-07-25  Bruno Haible  <bruno@clisp.org>
46352
46353         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
46354         defined in <stdarg.h> or config.h.
46355
46356 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
46357
46358         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
46359         (gl_STDIO_SAFER): Remove.
46360
46361 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
46362
46363         * MODULES.html.sh (File stream based Input/Output):
46364         Add fopen-safer, tmpfile-safer; remove stdio-safer.
46365         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
46366         * modules/fopen-safer, modules/tmpfile-safer: New files.
46367         * modules/stdio-safer: Remove.
46368
46369 2006-07-24  Bruno Haible  <bruno@clisp.org>
46370
46371         * modules/tmpdir: New file.
46372         * MODULES.html.sh (File system functions): Add it.
46373
46374 2006-07-24  Bruno Haible  <bruno@clisp.org>
46375
46376         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
46377         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
46378
46379 2006-07-24  Bruno Haible  <bruno@clisp.org>
46380
46381         * modules/clean-temp: New file.
46382
46383 2006-07-24  Bruno Haible  <bruno@clisp.org>
46384
46385         * m4/tmpdir.m4: New file, from GNU gettext.
46386
46387 2006-07-24  Bruno Haible  <bruno@clisp.org>
46388
46389         * lib/tmpdir.h: New file, from GNU gettext.
46390         * lib/tmpdir.c: New file, from GNU gettext.
46391
46392 2006-07-24  Bruno Haible  <bruno@clisp.org>
46393
46394         * lib/clean-temp.h: New file, from GNU gettext.
46395         * lib/clean-temp.c: New file, from GNU gettext.
46396
46397 2006-07-23  Eric Blake  <ebb9@byu.net>
46398
46399         * modules/stdio-safer (Files): Add tmpfile-safer.c.
46400         (Depends-on): Add binary-io.
46401
46402 2006-07-23  Eric Blake  <ebb9@byu.net>
46403
46404         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
46405
46406 2006-07-23  Eric Blake  <ebb9@byu.net>
46407
46408         * lib/tmpfile-safer.c: New file.
46409         * lib/stdio-safer.h (fopen_safer): Add prototype.
46410         * lib/stdio--.h (tmpfile): Make safer.
46411
46412 2006-07-23  Bruno Haible  <bruno@clisp.org>
46413
46414         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
46415         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
46416         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
46417         gl_linked_remove_at): Use it.
46418
46419 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46420         and Simon Josefsson <jas@extundo.com>
46421
46422         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
46423
46424         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
46425
46426 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
46427
46428         * modules/close-stream: New file.
46429         * modules/closeout (Description): Make it clear that it exits
46430         with a diagnostic on error.
46431         (Depends-on): Add close-stream.  Remove fpending, stdbool.
46432         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
46433
46434 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
46435
46436         * m4/close-stream.m4: New file.
46437
46438 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
46439
46440         * lib/close-stream.c, lib/close-stream.h: New files.
46441
46442 2006-07-22  Bruno Haible  <bruno@clisp.org>
46443
46444         Merge from GNU gettext 0.15.
46445
46446         2006-05-01  Bruno Haible  <bruno@clisp.org>
46447
46448                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
46449
46450         2006-07-22  Bruno Haible  <bruno@clisp.org>
46451
46452                 * modules/javaversion: New file.
46453                 * MODULES.html.sh (Java): Add javaversion.
46454
46455         2006-03-12  Bruno Haible  <bruno@clisp.org>
46456
46457                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
46458
46459         2005-12-04  Bruno Haible  <bruno@clisp.org>
46460
46461                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
46462                 (untested).
46463
46464         2006-06-21  Bruno Haible  <bruno@clisp.org>
46465
46466                 Avoid warnings from recent versions of mcs.
46467                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
46468                 -o, -L, -r any more. Use options documented since mcs-1.0
46469                 instead. Similarly for -g.
46470
46471         2005-12-04  Bruno Haible  <bruno@clisp.org>
46472
46473                 * build-aux/csharpcomp.sh.in: Suffix for resources is
46474                 .resources, not .resource.
46475
46476         2005-07-09  Bruno Haible  <bruno@clisp.org>
46477
46478                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
46479                 add a .dll suffix.
46480                 Reported by Mark Junker <mjscod@gmx.de>.
46481
46482         2006-07-22  Bruno Haible  <bruno@clisp.org>
46483
46484                 * modules/gettext: Upgrade to gettext-0.15.
46485                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
46486                 m4/visibility.m4.
46487                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
46488
46489 2006-07-22  Bruno Haible  <bruno@clisp.org>
46490
46491         Merge from GNU gettext 0.15.
46492
46493         2006-03-25  Bruno Haible  <bruno@clisp.org>
46494
46495                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
46496
46497         2006-07-21  Bruno Haible  <bruno@clisp.org>
46498
46499                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
46500                 "1.1".
46501
46502         2006-05-09  Bruno Haible  <bruno@clisp.org>
46503
46504                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
46505                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
46506                 for the conftestver execution.
46507
46508         2006-05-01  Bruno Haible  <bruno@clisp.org>
46509
46510                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
46511                 optional target-version argument. Verify that the compiler
46512                 groks source of the specified source-version, or add -source
46513                 option as necessary. Verify that the compiler produces
46514                 bytecode in the specified target-version, or add -target and
46515                 -source options as necessary. Make the result of the test
46516                 available as variable CONF_JAVAC. Also log error output in
46517                 config.log.
46518
46519         2006-03-11  Bruno Haible  <bruno@clisp.org>
46520
46521                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
46522
46523         2006-05-09  Bruno Haible  <bruno@clisp.org>
46524
46525                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
46526                 CLASSPATH_SEPARATOR to a semicolon.
46527
46528         2006-03-12  Bruno Haible  <bruno@clisp.org>
46529
46530                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
46531                 available as variable CONF_JAVA, for subsequent autoconf
46532                 tests. Also log error output in config.log.
46533
46534         2006-07-19  Bruno Haible  <bruno@clisp.org>
46535
46536                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
46537                 that getline works on glibc2 systems. Needed to avoid trouble
46538                 in relocatable.c.
46539                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
46540
46541         2005-12-04  Bruno Haible  <bruno@clisp.org>
46542
46543                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
46544                 launcher (untested).
46545
46546         2005-12-04  Bruno Haible  <bruno@clisp.org>
46547
46548                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
46549
46550         2006-07-22  Bruno Haible  <bruno@clisp.org>
46551
46552                 * gettext.m4: Update from GNU gettext-0.15.
46553                 * nls.m4: Likewise.
46554                 * po.m4: Likewise.
46555                 * inttypes-pri.m4: Likewise.
46556                 * inttypes-h.m4: Renamed from inttypes.m4.
46557                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
46558
46559 2006-07-22  Bruno Haible  <bruno@clisp.org>
46560
46561         Merge from GNU gettext 0.15.
46562
46563         2005-07-05  Bruno Haible  <bruno@clisp.org>
46564
46565                 * printf-args.c (printf_fetchargs): Work around broken
46566                 definition of wint_t on mingw.
46567
46568         2005-02-12  Bruno Haible  <bruno@clisp.org>
46569
46570                 * xallocsa.h: Add extern "C" for C++.
46571
46572         2006-05-17  Bruno Haible  <bruno@clisp.org>
46573
46574                 Cygwin portability.
46575                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
46576
46577         2006-04-30  Bruno Haible  <bruno@clisp.org>
46578
46579                 * progreloc.c: Include <mach-o/dyld.h> if available.
46580                 (find_executable): Use _NSGetExecutablePath when possible.
46581
46582         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
46583
46584                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
46585                 function.
46586
46587         2005-12-29  Bruno Haible  <bruno@clisp.org>
46588
46589                 * progreloc.c (set_program_name_and_installdir): Fix
46590                 compilation error.
46591
46592         2005-12-04  Bruno Haible  <bruno@clisp.org>
46593
46594                 Cygwin portability.
46595                 * progreloc.c: Include <windows.h> also on Cygwin.
46596                 (find_executable): Add support for Cygwin.
46597                 (set_program_name_and_installdir): Handle also platforms with
46598                 nonempty EXEEXT.
46599
46600         2006-07-11  Bruno Haible  <bruno@clisp.org>
46601
46602                 * javacomp.c: Fix a comment.
46603                 Reported by Jim Meyering.
46604
46605         2006-04-30  Bruno Haible  <bruno@clisp.org>
46606
46607                 * javacomp.h (compile_java_class): Add source_version,
46608                 target_version arguments.
46609                 * javacomp.c: Rewritten to choose only a compiler that
46610                 respects the specified source_version and target_version.
46611
46612         2006-06-27  Bruno Haible  <bruno@clisp.org>
46613
46614                 Assume correct S_ISDIR macro.
46615                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
46616
46617         2006-07-22  Bruno Haible  <bruno@clisp.org>
46618
46619                 * javaversion.h: New file, from GNU gettext.
46620                 * javaversion.c: New file, from GNU gettext.
46621                 * javaversion.java: New file, from GNU gettext.
46622                 * javaversion.class: New file, from GNU gettext.
46623
46624         2006-05-17  Bruno Haible  <bruno@clisp.org>
46625
46626                 Cygwin portability.
46627                 * javaexec.c (execute_java_class): Test for jview program
46628                 also on Cygwin.
46629
46630         2006-04-09  Bruno Haible  <bruno@clisp.org>
46631
46632                 * fatal-signal.c: Don't include string.h.
46633                 (at_fatal_signal): Use a copying loop instead of memcpy.
46634
46635         2005-12-04  Bruno Haible  <bruno@clisp.org>
46636
46637                 * csharpexec.c: Add support for 'clix' launcher (untested).
46638                 (execute_csharp_using_sscli): New function.
46639                 (execute_csharp_program): Call it.
46640
46641         2006-06-21  Bruno Haible  <bruno@clisp.org>
46642
46643                 Avoid warnings from recent versions of mcs.
46644                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
46645                 -o, -L, -r any more. Use options documented since mcs-1.0
46646                 instead. Similarly for -g.
46647
46648         2005-07-09  Bruno Haible  <bruno@clisp.org>
46649
46650                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
46651                 add a .dll suffix.
46652                 Reported by Mark Junker <mjscod@gmx.de>.
46653
46654         2006-06-17  Bruno Haible  <bruno@clisp.org>
46655
46656                 * config.charset: Update for NetBSD 3.0.
46657
46658         2006-05-17  Bruno Haible  <bruno@clisp.org>
46659
46660                 Cygwin portability.
46661                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
46662
46663         2006-05-16  Bruno Haible  <bruno@clisp.org>
46664
46665                 * localcharset.c [CYGWIN]: Include <windows.h>.
46666                 (get_charset_aliases): For Cygwin, return the same CPxxx
46667                 aliases list as under WIN32.
46668                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
46669                 the environment variables. Fall back to GetACP().
46670
46671         2006-04-05  Bruno Haible  <bruno@clisp.org>
46672
46673                 * config.charset: Update Juan Manuel Guerrero's address.
46674
46675         2005-02-12  Bruno Haible  <bruno@clisp.org>
46676
46677                 * allocsa.h: Add extern "C" for C++.
46678
46679         2005-02-10  Bruno Haible  <bruno@clisp.org>
46680
46681                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
46682                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
46683
46684         2006-07-22  Bruno Haible  <bruno@clisp.org>
46685
46686                 * gettext.h: Update to GNU gettext-0.15.
46687
46688 2006-07-22  Bruno Haible  <bruno@clisp.org>
46689
46690         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
46691         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
46692         lib-prefix.m4, longdouble.m4, ssize_t.m4.
46693
46694 2006-07-21  Eric Blake  <ebb9@byu.net>
46695
46696         * modules/stdlib-safer: New file.
46697         * MODULES.html.sh (File stream based Input/Output): Add
46698         stdlib-safer.
46699
46700 2006-07-21  Eric Blake  <ebb9@byu.net>
46701
46702         * lib/stdlib-safer.h: New file from coreutils, required by
46703         stdlib--.h.
46704
46705 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
46706
46707         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
46708
46709 2006-07-20  Bruno Haible  <bruno@clisp.org>
46710
46711         * gnulib-tool: Recognize new option --assume-autoconf.
46712         (autoconf_minversion): New variable.
46713         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
46714
46715 2006-07-20  Bruno Haible  <bruno@clisp.org>
46716
46717         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
46718
46719 2006-07-19  Derek R. Price  <derek@ximbiot.com>
46720
46721         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
46722         Reindent and repaginate.
46723
46724 2006-07-19  Derek Price  <derek@ximbiot.com>
46725
46726         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
46727         Correct grammar.
46728
46729 2006-07-17  Bruno Haible  <bruno@clisp.org>
46730
46731         * modules/list: New file.
46732         * modules/array-list: New file.
46733         * modules/carray-list, modules/carray-list-tests: New files.
46734         * modules/linked-list, modules/linked-list-tests: New files.
46735         * modules/avltree-list, modules/avltree-list-tests: New files.
46736         * modules/rbtree-list, modules/rbtree-list-tests: New files.
46737         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
46738         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
46739         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
46740         * modules/oset: New file.
46741         * modules/array-oset: New file.
46742         * modules/avltree-oset, modules/avltree-oset-tests: New files.
46743         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
46744         * tests/test-carray_list.c: New file.
46745         * tests/test-linked_list.c: New file.
46746         * tests/test-avltree_list.c: New file.
46747         * tests/test-rbtree_list.c: New file.
46748         * tests/test-linkedhash_list.c: New file.
46749         * tests/test-avltreehash_list.c: New file.
46750         * tests/test-rbtreehash_list.c: New file.
46751         * tests/test-avltree_oset.c: New file.
46752         * tests/test-rbtree_oset.c: New file.
46753         * MODULES.html.sh (Container data structures): New section.
46754
46755 2006-07-17  Bruno Haible  <bruno@clisp.org>
46756
46757         * m4/gl_list.m4: New file.
46758
46759 2006-07-17  Bruno Haible  <bruno@clisp.org>
46760
46761         * lib/gl_list.h: New file.
46762         * lib/gl_list.c: New file.
46763         * lib/gl_array_list.h: New file.
46764         * lib/gl_array_list.c: New file.
46765         * lib/gl_carray_list.h: New file.
46766         * lib/gl_carray_list.c: New file.
46767         * lib/gl_linked_list.h: New file.
46768         * lib/gl_linked_list.c: New file.
46769         * lib/gl_anylinked_list1.h: New file.
46770         * lib/gl_anylinked_list2.h: New file.
46771         * lib/gl_avltree_list.h: New file.
46772         * lib/gl_avltree_list.c: New file.
46773         * lib/gl_anyavltree_list1.h: New file.
46774         * lib/gl_anyavltree_list2.h: New file.
46775         * lib/gl_rbtree_list.h: New file.
46776         * lib/gl_rbtree_list.c: New file.
46777         * lib/gl_anyrbtree_list1.h: New file.
46778         * lib/gl_anyrbtree_list2.h: New file.
46779         * lib/gl_anytree_list1.h: New file.
46780         * lib/gl_anytree_list2.h: New file.
46781         * lib/gl_linkedhash_list.h: New file.
46782         * lib/gl_linkedhash_list.c: New file.
46783         * lib/gl_anyhash_list1.h: New file.
46784         * lib/gl_anyhash_list2.h: New file.
46785         * lib/gl_avltreehash_list.h: New file.
46786         * lib/gl_avltreehash_list.c: New file.
46787         * lib/gl_rbtreehash_list.h: New file.
46788         * lib/gl_rbtreehash_list.c: New file.
46789         * lib/gl_anytreehash_list1.h: New file.
46790         * lib/gl_anytreehash_list2.h: New file.
46791
46792         * lib/gl_oset.h: New file.
46793         * lib/gl_oset.c: New file.
46794         * lib/gl_array_oset.h: New file.
46795         * lib/gl_array_oset.c: New file.
46796         * lib/gl_avltree_oset.h: New file.
46797         * lib/gl_avltree_oset.c: New file.
46798         * lib/gl_rbtree_oset.h: New file.
46799         * lib/gl_rbtree_oset.c: New file.
46800         * lib/gl_anytree_oset.h: New file.
46801
46802 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46803
46804         * m4/mkancesdirs.m4: New file.
46805         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
46806         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
46807         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
46808         it.
46809
46810 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46811
46812         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
46813         * lib/mkancesdirs.h: New files.
46814         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
46815         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
46816         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
46817         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
46818         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
46819         callers changed.  Revamp internals significantly, by not
46820         attempting to create directories that are temporarily more
46821         permissive than the final results.  Do not attempt to use
46822         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
46823         This removes some race conditions, fixes some bugs, and simplifies
46824         things.  Use new dirchownmod function to do owner and mode changes.
46825         * lib/mkdir-p.h: Likewise.
46826         * lib/modechange.c (octal_to_mode): New function.
46827         (struct mode_change): New member mentioned.
46828         (make_node_op_equals): New arg mentioned.  All callers changed.
46829         (mode_compile): Keep track of which mode bits the user has explicitly
46830         mentioned.
46831         (mode_adjust): New arg DIR, so that we implement the X op correctly.
46832         New arg PMODE_BITS, to keep track of which mode bits the user
46833         mentioned; it treats S_ISUID and S_ISGID speciall.
46834         All callers changed.
46835         * lib/modechange.h: Likewise.
46836
46837 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
46838
46839         * MODULES.html.sh: Add mkancestors.
46840         * modules/mkancesdirs: New module.
46841         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
46842         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
46843         The chdir-safer and afs files are now orphans; I'll remove them
46844         unless someone speaks up.
46845         Add lib/dirchownmod.c, lib/dirchownmod.h.
46846         (Depends-on): Remove alloca, chown, save-cwd, dirname.
46847         Add lchown, mkancesdirs.
46848         (Maintainer): Add self.
46849
46850 2006-07-15  Karl Berry  <karl@gnu.org>
46851
46852         * gnulib-tool: help message wording/arrangement.
46853
46854 2006-07-14  Simon Josefsson  <jas@extundo.com>
46855
46856         * doc/gnulib.texi (Libtool and Windows): New section.
46857
46858 2006-07-12  Simon Josefsson  <jas@extundo.com>
46859
46860         * modules/gendocs (License): Fix license, approved by Karl.
46861
46862 2006-07-12  Eric Blake  <ebb9@byu.net>
46863
46864         * MODULES.html.sh: Add gendocs.
46865
46866 2006-07-11  Eric Blake  <ebb9@byu.net>
46867
46868         * modules/fdl: New module, to install doc/fdl.texi.
46869         * MODULES.html.sh: Add new section for documentation modules.
46870         * gnulib-tool: Avoid space-tab.
46871         (--doc-base): New option, to manage files from doc.
46872
46873 2006-07-11  Eric Blake  <ebb9@byu.net>
46874
46875         * m4/absolute-header.m4: Fix comments to match recent change.
46876
46877 2006-07-11  Eric Blake  <ebb9@byu.net>
46878
46879         * gnulib-tool: List --doc-base before --tests-base.
46880
46881 2006-07-11  Derek R. Price  <derek@ximbiot.com>
46882
46883         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
46884
46885 2006-07-11  Bruno Haible  <bruno@clisp.org>
46886
46887         * README: Mention where to put documentation.
46888
46889 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46890
46891         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
46892
46893 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
46894
46895         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
46896         to stdint.m4.
46897
46898 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
46899
46900         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
46901         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
46902         "no/such/file/stdint.h" when there is no such file, so that
46903         the resulting C code can be parsed by dodgy compilers.
46904         Problems reported by Bob Proulx.
46905
46906 2006-07-10  Derek R. Price  <derek@ximbiot.com>
46907
46908         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
46909         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
46910         macros into the GNU _D_EXACT_NAMLEN.
46911         * lib/savedir.c:  Likewise.
46912         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
46913
46914 2006-07-10  Derek R. Price  <derek@ximbiot.com>
46915         and Paul Eggert  <eggert@cs.ucla.edu>
46916
46917         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
46918         * m4/savedir.m4:
46919         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
46920         macros into the GNU _D_EXACT_NAMLEN.
46921
46922 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46923
46924         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
46925         around the absolute name, to work around a problem with the HP-UX
46926         11.23 native C compiler, reported by Bob Proulx.
46927
46928 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46929
46930         * doc/maintain.texi, make-stds.texi: Sync from
46931         <http://savannah.gnu.org/projects/gnustandards>.
46932
46933 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
46934
46935         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
46936
46937 2006-07-09  Jim Meyering  <jim@meyering.net>
46938
46939         * m4/glob.m4: Remove a doubled word in a comment.
46940
46941 2006-07-09  Jim Meyering  <jim@meyering.net>
46942
46943         * lib/argp-pv.c: Remove a doubled word in a comment.
46944         * lib/check-version.c (check_version): Likewise.
46945         * lib/javacomp.c (compile_java_class): Likewise.
46946
46947 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
46948
46949         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
46950         for the benefit of people using Autoconf 2.60.  If you want to
46951         support older Autoconf versions you can copy m4/onceonly_2_57.m4
46952         (or m4/onceonly.m4, if pre-2.57) manually.
46953
46954 2006-07-08  Jim Meyering  <jim@meyering.net>
46955
46956         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
46957         comment.
46958         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
46959         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
46960         comment.
46961
46962 2006-07-08  Jim Meyering  <jim@meyering.net>
46963
46964         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
46965
46966 2006-07-07  Simon Josefsson  <jas@extundo.com>
46967
46968         * tests/test-crc.c: Change expected crc value, the test vector
46969         were probably computed using the old broken crc.c?
46970
46971 2006-07-06  Simon Josefsson  <jas@extundo.com>
46972
46973         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
46974         now the canonical place for the M4 file).
46975
46976         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
46977         from the sys_socket dependency now.
46978
46979         * modules/inet_pton (Files): Ditto.
46980
46981         * modules/inet_ntop (Files): Ditto.
46982
46983 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
46984
46985         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
46986         not gl_PREREQ_GETUSERSHELL.
46987
46988 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46989
46990         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
46991         with only one argument, for Autoconf 2.60.
46992         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
46993         expand to nothing, so add a shell command to avoid syntax error.
46994         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
46995
46996 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46997
46998         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
46999
47000 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
47001
47002         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
47003         no longer needed.  Check for isblank decl.
47004         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
47005         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
47006         of existence.
47007
47008 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
47009
47010         * lib/getloadavg.c: Use __VMS, not VMS.
47011         * lib/getopt.c: Likewise.
47012         * lib/getpagesize.h: Likewise.
47013         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
47014         and probably does not work.
47015
47016 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
47017
47018         * lib/.cppi-disable: Add wcwidth.
47019         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
47020         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
47021         (ISGRAPH): Remove.  All uses changed to isgraph.
47022         (FOLD) [!defined _LIBC]: Remove special case.
47023         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
47024         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
47025         HAVE_ISBLANK.
47026         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
47027         case.
47028
47029 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
47030
47031         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
47032         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
47033         brackets.  Other minor changes to suppress some compiler
47034         warnings.
47035
47036 2006-07-06  Derek R. Price  <derek@ximbiot.com>
47037         and Paul Eggert  <eggert@cs.ucla.edu>
47038
47039         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
47040         of invoking obsolescent AC_HEADER_DIRENT macro.
47041         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
47042         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
47043         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
47044         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
47045         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
47046         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
47047         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
47048         * m4/readdir.m4: Remove; no longer needed.
47049
47050 2006-07-06  Derek R. Price  <derek@ximbiot.com>
47051         and Paul Eggert  <eggert@cs.ucla.edu>
47052
47053         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
47054         Don't worry about this obsolete case any more.
47055         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
47056         directories.
47057         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
47058         worry about this obsolete case any more.
47059         * lib/fts.c: Likewise.
47060         * lib/getcwd.c: Likewise.
47061         * lib/glob.h: Likewise.
47062         * lib/savedir.c: Likewise.
47063
47064 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
47065
47066         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
47067         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
47068         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
47069         needed.
47070         All uses removed.
47071         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
47072         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
47073         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
47074         needed.
47075         * m4/getdate.m4 (gl_GETDATE): Likewise.
47076         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
47077         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
47078         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
47079         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
47080         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
47081         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
47082         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
47083         needed.
47084
47085 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
47086
47087         * lib/memcasecmp.c: Include <limits.h>.
47088         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
47089         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
47090         Don't assume isdigit succeeds only on '0' through '9'.
47091
47092 2006-07-05  Eric Blake  <ebb9@byu.net>
47093
47094         * modules/getaddrinfo (Depends-on): Add snprintf.
47095
47096 2006-07-05  Eric Blake  <ebb9@byu.net>
47097
47098         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
47099         to avoid 'header present but could not be compiled' on cygwin.
47100
47101 2006-07-05  Eric Blake  <ebb9@byu.net>
47102
47103         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
47104         missing from netdb.h.
47105         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
47106
47107 2006-07-05  Derek R. Price  <derek@ximbiot.com>
47108
47109         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
47110         no longer needed.
47111         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
47112         * m4/getdate.m4 (gl_GETDATE): Likewise.
47113         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
47114         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
47115         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
47116         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
47117         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
47118
47119 2006-07-05  Derek R. Price  <derek@ximbiot.com>
47120
47121         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
47122         All uses of is_space replaced by isspace.
47123         * lib/exit.h: Don't talk about STDC_HEADERS.
47124         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
47125         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
47126         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
47127         replaced by isprint etc.
47128         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
47129         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
47130         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
47131         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
47132         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
47133         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
47134
47135 2006-07-05  Bruno Haible  <bruno@clisp.org>
47136
47137         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
47138         the function exists, before testing against AIX.
47139         Reported by Martin Lambers <marlam@marlam.de>.
47140
47141 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
47142
47143         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
47144         From Mark D. Baushke.
47145
47146 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
47147
47148         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
47149         to the absolute name, not just one, to bypass Sun C 5.8's
47150         "warning: #include of /usr/include/... may be non-portable".
47151
47152 2006-07-04  Eric Blake  <ebb9@byu.net>
47153
47154         * modules/dirname-tests: New test module.
47155         * tests/test-dirname.c: New file, replacing dirname.c
47156         TEST_DIRNAME section that was recently deleted.
47157
47158 2006-07-04  Bruno Haible  <bruno@clisp.org>
47159
47160         Assume ANSI C header files and <ctype.h> functions.
47161         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
47162         (mbsnwidth): Use isprint, iscntrl instead.
47163
47164 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47165
47166         Merge from coreutils.
47167         * MODULES.html.sh: Add xstrtold.
47168         * modules/xstrtold: New file.
47169         * modules/cycle-check (Files): Add lib/same-inode.h.
47170         * modules/dirname (Files): Add m4/double-slash-root.m4.
47171         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
47172         * modules/mkdir-p (Files): Add lib/same-inode.h.
47173         * modules/same (Files): Add lib/same-inode.h.
47174
47175 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47176
47177         * m4/absolute-header.m4: Renamed from full-header-path.m4.
47178         This is to keep the terminology clean; POSIX talks about
47179         "absolute pathnames", not "full pathnames", but the GNU
47180         Coding Standards say to use "path" for something else;
47181         so use "absolute" to keep both sides happy.
47182         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
47183         Set gl_absolute_header, not gl_full_header_path.
47184         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
47185         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
47186         All uses changed.
47187
47188         Merge from coreutils.
47189
47190         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
47191
47192         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
47193         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
47194         want to require the building of c-strtod.o.
47195         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
47196         needs -lm directly.
47197         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
47198
47199         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
47200
47201         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
47202         --as-needed option if available.  Problem reported by Albert Chin in
47203         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
47204         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
47205         cc merely issues a bunch of annoying warnings for --as-needed
47206         (this problem was reported by Bob Proulx).  Also, try linking with
47207         -lm to detect a bug in binutils 2.16 (this problem was reported
47208         by Ralf Wildenhues).
47209
47210         2006-06-18  Jim Meyering  <jim@meyering.net>
47211
47212         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
47213         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
47214         macro.
47215         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
47216         also check for glibc-2.4's abort-inducing bug.
47217
47218         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
47219         Low-probability clean-up should be to use rmdir to get rid of
47220         the just-created directory, not unlink.
47221
47222         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
47223         configure fail, and request a bug report to inform us about it.
47224         Add a comment that, barring reports to the contrary, in 2007 we'll
47225         assume ftruncate is universally available.
47226
47227         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
47228
47229         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
47230
47231         2006-03-12  Jim Meyering  <jim@meyering.net>
47232
47233         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
47234         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
47235         * m4/same.m4 (gl_SAME): Likewise.
47236         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
47237
47238         2006-03-11  Eric Blake  <ebb9@byu.net>
47239
47240         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
47241         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
47242         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
47243         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
47244
47245 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
47246
47247         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
47248         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
47249         reported by Mark D. Baushke, one in
47250         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
47251
47252         Merge from coreutils.
47253
47254         * lib/.cppi-disable: Add stdint_.h.
47255         * lib/.cvsignore: Add stdint.h.
47256
47257         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
47258
47259         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
47260         both double and long double versions.
47261         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
47262         * lib/xstrtold.c: New file.
47263         * lib/xstrtod.h (xstrtold): New decl.
47264
47265         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
47266
47267         * lib/filemode.c (setst): Remove.
47268         (strmode): Rewrite to avoid setst.  This makes the code shorter,
47269         (arguably) clearer, and the generated code is a bit smaller on my
47270         Debian GNU/Linux stable x86 host.
47271
47272         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
47273
47274         * lib/filemode.c: Include "filemode.h" first, to test the interface.
47275         Assume that filemode.h includes sys/types.h and sys/stat.h.
47276         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
47277         (ftypelet): Reorder to put common cases first, for efficiency.
47278         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
47279         to do 'M'.
47280         (strmode): Renamed from mode_string, and now stores 12 bytes instead
47281         of 10, for compatibility with FreeBSD.  All callers changed.
47282         (filemodestring): Now stores 12 bytes instead of 10, and sets file
47283         types that can't be deduced solely from st_mode.  First arg is now a
47284         const pointer.
47285         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
47286         (strmode): Renamed from mode_string.
47287         (filemodestring): New decl.
47288         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
47289         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
47290         needed.
47291         (S_ISPORT, S_ISWHT): New macros, if not already defined.
47292
47293         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
47294
47295         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
47296         fsusage.h now does that.  Include fsusage.h first, to test interface.
47297         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
47298         at most one method (the old code could have generated decls that
47299         didn't conform to C89, not that this was ever exercised).
47300         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
47301
47302         2006-03-19  Jim Meyering  <jim@meyering.net>
47303
47304         Work even in a chroot where d_ino values for entries in "/"
47305         don't match the stat.st_ino values for the same names.
47306         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
47307         number, iterate through all entries again, using lstat instead.
47308         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
47309         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
47310
47311         * lib/getcwd.c (__getcwd): Clarify a comment.
47312         Use memcpy in place of a call to strcpy.
47313
47314         2006-03-12  Jim Meyering  <jim@meyering.net>
47315
47316         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
47317         matches that of the current directory (which we're about to chdir ".."
47318         out of), then save the dev-ino of the parent, instead.
47319
47320         * lib/same-inode.h (SAME_INODE): New file/macro.
47321         * lib/chdir-safer.c (SAME_INODE): Remove definition.
47322         Include "same-inode.h", instead.
47323         * lib/same.c: Likewise.
47324         * lib/cycle-check.h: Include "same-inode.h".
47325         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
47326         * lib/cycle-check.c (SAME_INODE): Remove definition.
47327         * lib/root-dev-ino.h: Include "same-inode.h".
47328
47329         2006-03-11  Eric Blake  <ebb9@byu.net>
47330
47331         * lib/same.c (same_name): s/base_name/last_component/
47332         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
47333         * lib/filenamecat.c (file_name_concat): Likewise.
47334
47335         2006-03-11  Eric Blake  <ebb9@byu.net>,
47336                     Paul Eggert  <eggert@cs.ucla.edu>
47337
47338         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
47339         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
47340         drive prefix.
47341         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
47342         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
47343         (last_component): New method.
47344         * lib/dirname.c (dir_len): Determine when drive letters need a
47345         subsequent slash.  Preserve // when it is special.
47346         (dir_name): Don't append dot when drive letter is absolute.
47347         [TEST_DIRNAME]: Move into a full-blown gnulib test.
47348         * lib/basename.c (base_name): New semantics - malloc the result.
47349         Preserve // when it is special.  Preserve relative files that look
47350         like drive letters.
47351         (base_len): Preserve // when it is special.
47352         (last_component): New method, similar to old base_name semantics.
47353         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
47354         base_name.  Strip redundant slashes from ///.
47355
47356 2006-07-03  Jim Meyering  <jim@meyering.net>
47357
47358         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
47359         macro is used before the first cycle_check call.
47360
47361 2006-07-03  Eric Blake  <ebb9@byu.net>
47362
47363         * modules/dirname (Depends-on): Add xstrndup.
47364
47365 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
47366
47367         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
47368         test cases, so that config.log is a bit easier to follow.
47369
47370 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
47371
47372         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
47373         both are 64 bits, since this seems to be the tradition, and this
47374         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
47375         we ever run into a host that prefers long long to long in this
47376         case, we'll need another configure-time test.  Problem reported by
47377         Jim Meyering.
47378
47379 2006-07-02  Eric Blake  <ebb9@byu.net>
47380
47381         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
47382
47383 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
47384
47385         * modules/inttypes (Depends-on): No longer depends on stdint.
47386         * modules/stdint (Description): Say more about assumptions.
47387         Say that the fast types might differ.  Say macros are used.
47388         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
47389         (Makefile.am): Revise list of substituted symbols to match
47390         new stdint.m4.
47391         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
47392         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
47393         * tests/test-stdint.c (verify_same_types)
47394         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
47395         the code conforms to C99/C89.
47396         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
47397         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
47398
47399 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
47400
47401         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
47402         but fix a bug, by requiring at least 64 bits.
47403         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
47404         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
47405         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
47406         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
47407
47408         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
47409         changes.  Make 2.59 a prerequisite.  Check and substitute for
47410         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
47411         inttypes.h.  Do not use special include files; just use the
47412         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
47413         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
47414         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
47415         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
47416         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
47417         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
47418         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
47419         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
47420         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
47421         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
47422         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
47423         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
47424         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
47425         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
47426         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
47427         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
47428         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
47429         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
47430         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
47431         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
47432         WINT_MAX.  Check for C99 conformance more strictly, by detecting
47433         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
47434         not check for things that C99 does not require, e.g., int8_t.  If
47435         a test isn't needed unless <stdint.h> isn't working, and is
47436         unlikely to be needed for any other reason, then don't do it
47437         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
47438         size_t, since we assume C89 freestanding at least.  Do not check
47439         for sig_atomic_t, wchar_t, or wint_t, since the code now does
47440         the right thing even if the types are not defined.  Instead use:
47441         (gl_STDINT_TYPE_PROPERTIES): New macro.
47442         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
47443         testing whether <sys/types.h> clashes, as Autoconf does this for
47444         us now.  All uses removed.
47445         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
47446         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
47447         (gl_CHECK_TYPE_SAME):
47448         Remove; no longer needed.
47449         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
47450         exists, since we'll return 0 anyway in that case.
47451         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
47452
47453 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
47454
47455         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
47456         possible collision with system files.
47457         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
47458         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
47459         WCHAR_MIN and WCHAR_MAX in this case.
47460         (<stddef.h>): Do not include; no longer needed.
47461         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
47462         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
47463         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
47464         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
47465         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
47466         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
47467         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
47468         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
47469         !defined(__c99))]: Include in this case too, since it's harmless
47470         now.
47471         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
47472         dangerous to do so.
47473         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
47474         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
47475         (_STDINT_MIN, _STDINT_MAX): New macros.
47476         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
47477         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
47478         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
47479         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
47480         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
47481         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
47482         macros, not typedefs; this simplifies things quite a bit.
47483         Use long int for all types narrower than int64_t.
47484         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
47485         Define in terms of long long int or int64_t or long int,
47486         not int64_t or int32_t.  This saves some compile-time testing.
47487         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
47488         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
47489         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
47490         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
47491         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
47492         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
47493         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
47494         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
47495         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
47496         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
47497         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
47498         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
47499         undef any previous version and define our own version, for
47500         simplicity and consistency with the new macros for types.
47501         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
47502         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
47503         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
47504         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
47505         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
47506         @WINT_T_SUFFIX@ to keep things simple here.
47507         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
47508         Simplify by assuming typical 8/16/32/64 host, since we're
47509         already doing that elsewhere anyway.
47510         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
47511         and assume long long int is 64 bits if available.  This
47512         speeds up 'configure'.
47513
47514 2006-07-01  Eric Blake  <ebb9@byu.net>
47515
47516         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
47517         Reported by Andreas Buening.
47518
47519 2006-07-01  Eric Blake  <ebb9@byu.net>
47520
47521         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
47522
47523 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
47524
47525         * lib/getaddrinfo.c: fixed typo
47526
47527 2006-06-29  Jim Meyering  <jim@meyering.net>
47528
47529         * modules/strftime (Maintainer): Add my name, since with the
47530         FPRINTFTIME changes strftime.c has forked from glibc.
47531
47532 2006-06-29  Eric Blake  <ebb9@byu.net>
47533
47534         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
47535
47536 2006-06-29  Eric Blake  <ebb9@byu.net>
47537
47538         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
47539
47540 2006-06-29  Eric Blake  <ebb9@byu.net>
47541
47542         * lib/stat_.h: New file.
47543
47544 2006-06-29  Eric Blake  <ebb9@byu.net>
47545
47546         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
47547         unused static function.
47548
47549 2006-06-29  Eric Blake  <ebb9@byu.net>
47550
47551         * doc/functions.texi (Function Portability): Document missing lstat
47552         on mingw.
47553
47554 2006-06-29  Eric Blake  <ebb9@byu.net>
47555
47556         * MODULES.html.sh: Add sys_stat.
47557         * modules/sys_stat: New module.
47558         * modules/mkstemp (Depends-on): Add sys_stat.
47559
47560 2006-06-29  Derek R. Price  <derek@ximbiot.com>
47561
47562         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
47563
47564 2006-06-29  Derek R. Price  <derek@ximbiot.com>
47565
47566         * m4/c-bs-a.m4: Removed.
47567
47568 2006-06-29  Derek R. Price  <derek@ximbiot.com>
47569
47570         * lib/strftime.c: Assume strftime() exists.
47571
47572 2006-06-29  Derek Price  <derek@ximbiot.com>
47573
47574         * modules/c-bs-a: Removed - \a is C89.
47575         * MODULES.html.sh: Remove c-bs-a.
47576
47577 2006-06-29  Bruno Haible  <bruno@clisp.org>
47578
47579         * modules/wcwidth (License): Change to LGPL.
47580
47581 2006-06-28  Simon Josefsson  <jas@extundo.com>
47582
47583         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
47584         on _WIN32.
47585
47586         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
47587         getnameinfo.
47588
47589 2006-06-28  Simon Josefsson  <jas@extundo.com>
47590
47591         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
47592
47593 2006-06-28  Simon Josefsson  <jas@extundo.com>
47594
47595         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
47596         functions there.  It will succeed on Windows XP, but on Windows
47597         2000 and (presumably) earlier, it will fail, and use the internal
47598         re-implementation.
47599         (use_win32_p): New function.
47600         (getaddrinfo): Use strtoul on servname, to support numeric ports.
47601         Support AI_NUMERICSERV to disable getservbyname.
47602         (getnameinfo): New function, only supports
47603         NI_NUMERICHOST|NI_NUMERICSERV for now.
47604
47605         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
47606         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
47607         getnameinfo.
47608
47609 2006-06-28  Eric Blake  <ebb9@byu.net>
47610
47611         * modules/wcwidth: New file.
47612         * modules/mbchar (Depends-on): Add wcwidth.
47613         * modules/mbswidth (Depends-on): Add wcwidth.
47614         * MODULES.html.sh: Add wcwidth.
47615
47616 2006-06-28  Eric Blake  <ebb9@byu.net>
47617
47618         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
47619         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
47620
47621 2006-06-28  Eric Blake  <ebb9@byu.net>
47622
47623         * lib/xvasprintf.h: Fix comments.
47624
47625 2006-06-28  Eric Blake  <ebb9@byu.net>
47626
47627         * lib/mbchar.h (wcwidth): Include wcwidth.h.
47628         * lib/mbswidth.c (wcwidth): Move from here...
47629         * lib/wcwidth.h: ...to this new file.
47630
47631 2006-06-28  Derek R. Price  <derek@ximbiot.com>
47632
47633         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
47634
47635         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
47636         it's obsolete.
47637         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
47638
47639 2006-06-28  Derek R. Price  <derek@ximbiot.com>
47640
47641         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
47642         Autoconf 2.60 says this stuff was obsolete.
47643
47644 2006-06-28  Bruno Haible  <bruno@clisp.org>
47645
47646         * modules/wcwidth (Files): Add m4/wchar_t.m4.
47647
47648 2006-06-28  Bruno Haible  <bruno@clisp.org>
47649
47650         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
47651         gt_TYPE_WCHAR_T.
47652
47653 2006-06-28  Bruno Haible  <bruno@clisp.org>
47654
47655         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
47656         declaration for wcwidth.
47657         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
47658
47659 2006-06-28  Bruno Haible  <bruno@clisp.org>
47660
47661         * lib/mkdtemp.c [MINGW]: Include <io.h>.
47662         (mkdir): Define using _mkdir.
47663
47664 2006-06-28  Bruno Haible  <bruno@clisp.org>
47665
47666         * lib/getaddrinfo.h: Fix POSIX URL.
47667         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
47668         _WIN32.
47669         (use_win32_p): Make static.
47670         (getaddrinfo): Reject service name if it is empty or does not consist
47671         solely of decimal digits, or if its value is > 65535.
47672         (getnameinfo): Remove useless casts.
47673
47674 2006-06-27  Simon Josefsson  <jas@extundo.com>
47675
47676         * modules/sys_select: New file, suggested by Bruno Haible, Paul
47677         Eggert and Martin Lambers.
47678
47679 2006-06-27  Simon Josefsson  <jas@extundo.com>
47680
47681         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
47682         Eggert and Martin Lambers.
47683
47684 2006-06-27  Bruno Haible  <bruno@clisp.org>
47685
47686         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
47687         result to 0, not to empty.
47688         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
47689
47690 2006-06-27  Bruno Haible  <bruno@clisp.org>
47691
47692         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
47693
47694 2006-06-26  Simon Josefsson  <jas@extundo.com>
47695
47696         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
47697         present.
47698
47699 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
47700
47701         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
47702         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
47703         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
47704
47705 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
47706
47707         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
47708
47709 2006-06-26  Bruno Haible  <bruno@clisp.org>
47710
47711         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
47712
47713 2006-06-26  Bruno Haible  <bruno@clisp.org>
47714
47715         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
47716
47717 2006-06-26  Bruno Haible  <bruno@clisp.org>
47718
47719         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
47720         SGI C compiler in pre-C99 mode.
47721         Suggested by Mark D. Baushke and Larry Jones.
47722
47723 2006-06-26  Bruno Haible  <bruno@clisp.org>
47724
47725         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
47726         WCHAR_MAX.
47727         Reported by Mark D. Baushke and Larry Jones.
47728
47729 2006-06-26  Bruno Haible  <bruno@clisp.org>
47730
47731         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
47732         in pre-C99 mode.
47733         Suggested by Mark D. Baushke and Larry Jones.
47734
47735 2006-06-23  Simon Josefsson  <jas@extundo.com>
47736             Bruno Haible  <bruno@clisp.org>
47737
47738         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
47739         Emit mostlyclean-local rule.
47740         (func_emit_tests_Makefile_am): Likewise.
47741         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
47742
47743 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
47744
47745         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
47746
47747 2006-06-23  Bruno Haible  <bruno@clisp.org>
47748
47749         * tests/test-stdint.c: Update to match ISO C 99 Technical
47750         Corrigendum 1.
47751
47752 2006-06-23  Bruno Haible  <bruno@clisp.org>
47753
47754         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
47755
47756 2006-06-23  Bruno Haible  <bruno@clisp.org>
47757
47758         * lib/stdint_.h: Treat IRIX like OpenBSD.
47759
47760 2006-06-23  Bruno Haible  <bruno@clisp.org>
47761
47762         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
47763         ISO C 99 Technical Corrigendum 1.
47764
47765 2006-06-22  Simon Josefsson  <jas@extundo.com>
47766
47767         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
47768         MinGW.
47769
47770 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
47771
47772         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
47773         needed.  Some compiler complained about some of them.  Problem reported
47774         by Larry Jones in
47775         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
47776
47777 2006-06-21  Simon Josefsson  <jas@extundo.com>
47778
47779         * tests/test-getaddrinfo.c: New file.
47780
47781         * modules/getaddrinfo-tests: New file.
47782
47783         * MODULES.html.sh: Add inet_pton.
47784
47785         * modules/inet_pton: New file.
47786
47787 2006-06-21  Simon Josefsson  <jas@extundo.com>
47788
47789         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
47790         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
47791         of using the (limited) gnulib implementation on Windows XP.
47792
47793         * m4/inet_pton.m4: New file.
47794
47795 2006-06-21  Simon Josefsson  <jas@extundo.com>
47796
47797         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
47798         variable.
47799
47800         * lib/socket_.h: Don't define WINVER.
47801
47802         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
47803         slightly modified to work in gnulib.
47804
47805 2006-06-21  Simon Josefsson  <jas@extundo.com>
47806
47807         * doc/gnulib.texi (Windows sockets): Add.
47808
47809 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
47810
47811         * lib/read-file.c (fread_file): Start with buffer allocation of
47812         0 bytes rather than 1 byte; this simplifies the code.
47813         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
47814         code to free buffer and save/restore errno.
47815         (internal_read_file): Remove unused local.
47816
47817 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
47818
47819         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
47820         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
47821         Problem reported by Denis Excoffier in
47822         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
47823
47824 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
47825
47826         * modules/sys_socket, modules/socklen: Include sys/types since
47827         FreeBSD 4.x's sys/socket.h needs it.
47828
47829 2006-06-19  Simon Josefsson  <jas@extundo.com>
47830
47831         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
47832
47833 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
47834
47835         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
47836
47837 2006-06-19  Bruno Haible  <bruno@clisp.org>
47838
47839         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
47840         and FULL_PATH_INTTYPES_H in angle brackets.
47841         Reported by Mark D. Baushke <mdb@gnu.org>.
47842
47843 2006-06-17  Eric Blake  <ebb9@byu.net>
47844
47845         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
47846         errno.
47847
47848 2006-06-17  Bruno Haible  <bruno@clisp.org>
47849
47850         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
47851         <sys/inttypes.h>.
47852
47853 2006-06-17  Bruno Haible  <bruno@clisp.org>
47854
47855         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
47856         whether errno is declared. Assume <errno.h> declares errno.
47857
47858 2006-06-17  Bruno Haible  <bruno@clisp.org>
47859
47860         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
47861
47862 2006-06-17  Bruno Haible  <bruno@clisp.org>
47863
47864         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
47865         problem on Solaris 2.5.1.
47866
47867 2006-06-16  Eric Blake  <ebb9@byu.net>
47868
47869         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
47870         * lib/unicodeio.c [!defined errno]: Likewise.
47871         * lib/strtol.c [!defined errno]: Likewise.
47872         * lib/strtod.c [!defined errno]: Likewise.
47873
47874 2006-06-15  Eric Blake  <ebb9@byu.net>
47875
47876         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
47877
47878 2006-06-15  Eric Blake  <ebb9@byu.net>
47879
47880         * config/srclist.txt (ssize_t.m4): Lose sync.
47881
47882 2006-06-15  Bruno Haible  <bruno@clisp.org>
47883
47884         * modules/stdint (Files): Include m4/full-header-path.m4,
47885         m4/size_max.m4, m4/wchar_t.m4.
47886         (Makefile.am): Many more substitutions.
47887         * modules/stdint-tests: New file.
47888         * tests/test-stdint.c: New file.
47889
47890 2006-06-15  Bruno Haible  <bruno@clisp.org>
47891
47892         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
47893         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
47894         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
47895         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
47896         gl_CHECK_TYPE_SAME): New macros.
47897
47898 2006-06-15  Bruno Haible  <bruno@clisp.org>
47899
47900         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
47901
47902 2006-06-15  Bruno Haible  <bruno@clisp.org>
47903
47904         * lib/stdint_.h: Rewritten to be fully auto-configured.
47905         Fixes bug on HP-UX/IA64.
47906
47907 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
47908
47909         * lib/getdate.y (__attribute__): Don't define if already defined.
47910         Problem reported by Larry Jones.
47911         * lib/utimens.c (__attribute__): Likewise.
47912
47913 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
47914
47915         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
47916         reported by Andreas Schwab.
47917
47918 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47919             Bruno Haible  <bruno@clisp.org>
47920
47921         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
47922         check for the declaration of strnlen and a run test that exposes the
47923         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
47924         rpl_strndup.
47925
47926 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47927             Bruno Haible  <bruno@clisp.org>
47928
47929         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
47930
47931 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47932
47933         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
47934         compile test, for Tru64 4.0D.
47935
47936 2006-05-28  Karl Berry  <karl@gnu.org>
47937
47938         * config/srclist.txt (printf-args.c): lose sync.
47939
47940 2006-05-26  Martin Lambers  <marlam@marlam.de>
47941
47942         * lib/getpass.c: Updates the test for the native W32 API, and adds
47943         missing includes, thus fixing compilation warnings.
47944
47945 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
47946
47947         * lib/exclude.c (exclude_fnmatch): New function.
47948         (excluded_file_name): Call exclude_fnmatch.
47949         * lib/exclude.h (excluded_file_name): New prototype
47950
47951 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
47952
47953         * lib/tempname.c (small_open, large_open): New macros.
47954         (__open, __open64) [!_LIBC]: Remove.
47955         (__gen_tempname): Use small_open and large_open instead of __open
47956         and __open64.  This fixes a portability bug on HP-UX 11.11i
47957         reported by Simon Wing-Tang in
47958         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
47959
47960 2006-05-24  Bruno Haible  <bruno@clisp.org>
47961
47962         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
47963         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
47964         Reported by Thorsten Maerz <torte@netztorte.de> via
47965         Aaron Stone <aaron@serendipity.cx>.
47966
47967 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
47968
47969         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
47970         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
47971         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
47972         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
47973         not really conditional on the cache.
47974         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
47975
47976 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
47977
47978         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
47979         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
47980         (my_usleep): Don't mishandle maximum value.
47981
47982 2006-05-19  Jim Meyering  <jim@meyering.net>
47983
47984         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
47985
47986 2006-05-17  Bruno Haible  <bruno@clisp.org>
47987
47988         Cygwin portability.
47989         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
47990
47991 2006-05-17  Bruno Haible  <bruno@clisp.org>
47992
47993         * lib/stdint_.h: Fix recognition of Cygwin.
47994
47995 2006-05-15  Bruno Haible  <bruno@clisp.org>
47996
47997         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
47998         on libtool patch by Ralf Wildenhues.
47999
48000 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
48001
48002         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
48003         test for C99 conformance; (bool) 0.5 is an integer constant
48004         expression, but (bool) -0.5 is not.  Problem reported by Fedor
48005         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
48006
48007 2006-05-11  Simon Josefsson  <jas@extundo.com>
48008
48009         * m4/xvasprintf.m4: Fix obvious typo.
48010
48011 2006-05-11  Jim Meyering  <jim@meyering.net>
48012
48013         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
48014         James Lemley.
48015
48016 2006-05-10  Simon Josefsson  <jas@extundo.com>
48017
48018         * lib/md4.c: Typo fix, update copyright years.
48019         (K1, K2): Don't use L because it turn computations into 64-bit on
48020         64-bit platforms.
48021
48022 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
48023
48024         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
48025         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
48026         unwanted sign propagation, e.g., on hosts with 64-bit int.
48027         There still are some problems with reeelly weird theoretical hosts
48028         (e.g., 33-bit int) but it's not worth worrying about now.
48029         * lib/sha1.c (rol): Likewise.
48030         (K1, K2, K3, K4): Remove unnecessary L suffix.
48031
48032 2006-05-10  Bruno Haible  <bruno@clisp.org>
48033
48034         * lib/des.c: Cast to avoid warnings.
48035
48036 2006-05-09  Bruno Haible  <bruno@clisp.org>
48037
48038         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
48039         (Depends-on): Depend also on xsize, stdarg.
48040         (configure.ac): Add gl_XVASPRINTF.
48041
48042 2006-05-09  Bruno Haible  <bruno@clisp.org>
48043
48044         * m4/xvasprintf.m4: New file.
48045
48046 2006-05-09  Bruno Haible  <bruno@clisp.org>
48047
48048         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
48049         (EOVERFLOW): Define fallback value.
48050         (xstrcat): New function.
48051         (xvasprintf): Recognize the special case of a string concatenation.
48052
48053 2006-05-08  Eric Blake  <ebb9@byu.net>
48054
48055         * gnulib-tool (func_version): Base copyright year on CVS date.
48056         (func_emit_copyright_notice): New function.
48057         (func_emit_lib_Makefile_am): Use it.
48058         (func_emit_tests_Makefile_am): Likewise.
48059         (func_import): Likewise.
48060
48061 2006-05-08  Bruno Haible  <bruno@clisp.org>
48062
48063         * modules/stdarg: New file.
48064         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
48065
48066 2006-05-08  Bruno Haible  <bruno@clisp.org>
48067
48068         * m4/stdarg.m4: New file, from GNU gettext.
48069
48070 2006-05-08  Bruno Haible  <bruno@clisp.org>
48071
48072         * config/srclist.txt (build-aux/config.rpath): different from latest
48073         release.
48074
48075 2006-05-08  Bruno Haible  <bruno@clisp.org>
48076
48077         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
48078
48079 2006-05-05  Jim Meyering  <jim@meyering.net>
48080
48081         * m4/warning.m4: New file, derived from bison's file by the same name.
48082
48083 2006-05-03  Bruno Haible  <bruno@clisp.org>
48084
48085         * lib/stdint_.h: Shorter URL.
48086         * lib/inttypes.h: Likewise.
48087
48088 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
48089
48090         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
48091
48092 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
48093
48094         * lib/verify.h: Document the internals better.  Most of this change
48095         was written by Bruno Haible.
48096
48097 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
48098
48099         * doc/verify.texi: New file, partly based on a proposal by
48100         Bruno Haible.
48101
48102 2006-05-02  Bruno Haible  <bruno@clisp.org>
48103
48104         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
48105         test from here...
48106         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
48107
48108 2006-04-29  Bruno Haible  <bruno@clisp.org>
48109
48110         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
48111         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
48112
48113 2006-04-29  Bruno Haible  <bruno@clisp.org>
48114
48115         * gnulib-tool: Make --update option actually work.
48116
48117 2006-04-29  Bruno Haible  <bruno@clisp.org>
48118
48119         * doc/gcd.texi: New file.
48120         * doc/gnulib.texi: Include it.
48121
48122 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
48123
48124         * lib/getdate.y (get_date): When adding relative date, start with the
48125         initial time, not with the result of the first mktime call.
48126
48127 2006-04-25  Bruno Haible  <bruno@clisp.org>
48128
48129         * gnulib-tool (func_import): Output the include directives in three
48130         blocks, sorted separately.
48131         Reported by Ben Pfaff <blp@cs.stanford.edu>.
48132
48133 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
48134
48135         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
48136         to define main with arguments, for C++.  Reported by Eric Blake.
48137         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
48138         Prefer 'int main ()' to 'int main (void)', for C++.
48139         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
48140         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
48141         for 'main', for C99 and C++.
48142
48143 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
48144
48145         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
48146         Don't assume that exit status -1 is valid.
48147         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
48148         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
48149         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
48150         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
48151         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
48152         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
48153         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
48154         functions can be used without declaring them, or that you can
48155         exit with status -1.
48156         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
48157
48158 2006-04-24  Karl Berry  <karl@gnu.org>
48159
48160         * config/srclist.txt (longdouble.m4): sync lost.
48161
48162 2006-04-24  Eric Blake  <ebb9@byu.net>
48163
48164         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
48165
48166 2006-04-24  Bruno Haible  <bruno@clisp.org>
48167
48168         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
48169         poll() implementation in AIX.
48170         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48171
48172 2006-04-24  Bruno Haible  <bruno@clisp.org>
48173
48174         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
48175         assigned exactly once.
48176
48177 2006-04-23  Claudio Fontana  <claudio@gnu.org>
48178             Bruno Haible  <bruno@clisp.org>
48179
48180         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
48181         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
48182         for AM_CPPFLAGS.
48183
48184 2006-04-23  Bruno Haible  <bruno@clisp.org>
48185
48186         * modules/copy-file: Depend on unistd.
48187         * modules/execute: Likewise.
48188         * modules/fatal-signal: Likewise.
48189         * modules/findprog: Likewise.
48190         * modules/mkdtemp : Likewise.
48191         * modules/pipe: Likewise.
48192         * modules/wait-process: Likewise.
48193
48194 2006-04-23  Bruno Haible  <bruno@clisp.org>
48195
48196         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
48197         condition was already detected.
48198         Reported by Ben Pfaff <blp@cs.stanford.edu>.
48199
48200 2006-04-23  Bruno Haible  <bruno@clisp.org>
48201
48202         * lib/copy-file.c: Include <unistd.h> unconditionally.
48203         * lib/execute.c: Likewise.
48204         * lib/fatal-signal.c: Likewise.
48205         * lib/findprog.c: Likewise.
48206         * lib/mkdtemp.c: Likewise.
48207         * lib/pipe.h: Likewise.
48208         * lib/pipe.c: Likewise.
48209         * lib/wait-process.h: Likewise.
48210
48211 2006-04-23  Bruno Haible  <bruno@clisp.org>
48212
48213         * gnulib-tool (func_usage): Fix --import description. Document
48214         --update.
48215         (func_import): Create temporary file in a temporary directory, if
48216         --dry-run is specified. Silence errors from 'grep' when there are no
48217         m4 files in $m4dir.
48218         (func_create_testdir): Silence errors from 'grep' when there are no
48219         m4 files in $m4dir.
48220         Reported by Karl Berry <karl@freefriends.org>.
48221
48222 2006-04-20  Bruno Haible  <bruno@clisp.org>
48223
48224         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
48225         one argument, so that the code will be portable to Autoconf 2.60.
48226         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
48227         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
48228         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
48229
48230 2006-04-19  Derek Price  <derek@ximbiot.com>
48231             Eric Blake  <ebb9@byu.net>
48232
48233         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
48234         rather than "/full/path.h".  Update comment to match.  Shorten &
48235         generalize m4_translit call via AS_TR_CPP.
48236
48237 2006-04-19  Derek Price  <derek@ximbiot.com>
48238             Eric Blake  <ebb9@byu.net>
48239
48240         * lib/inttypes.h: Correct grammar in comment.
48241
48242 2006-04-18  Derek Price  <derek@ximbiot.com>
48243             Paul Eggert  <eggert@cs.ucla.edu>
48244
48245         * modules/inttypes: New file.
48246         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
48247
48248 2006-04-18  Derek Price  <derek@ximbiot.com>
48249             Paul Eggert  <eggert@cs.ucla.edu>
48250
48251         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
48252         New files.
48253
48254 2006-04-18  Derek Price  <derek@ximbiot.com>
48255             Paul Eggert  <eggert@cs.ucla.edu>
48256
48257         * lib/inttypes.h: New file.
48258         * lib/strtoimax.c: Assume <inttypes.h>.
48259
48260 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
48261
48262         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
48263         isn't mounted.  Problem reported by Kir Kolyshkin.
48264
48265 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
48266
48267         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
48268         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
48269         Derek R. Price.
48270         * lib/regex.h (RE_DUP_MAX): Update comment to match current
48271         implementation.
48272
48273 2006-04-12  Eric Blake  <ebb9@byu.net>
48274
48275         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
48276         is now done automatically by the corresponding Autoconf macro.
48277
48278 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
48279
48280         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
48281         time_r.h.
48282
48283 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
48284
48285         Merge regex changes from libc, removing some of our
48286         POSIX-conformance changes that were rejected and redoing them in a
48287         less-intrusive way.
48288
48289         * lib/regcomp.c (re_compile_internal, init_dfa):
48290         Length arg is now size_t, not Idx.  All uses changed.
48291         (peek_token): Forward decl now says internal_function.
48292         (__re_error_msgid, __re_error_msgid_idx):
48293         Now static rather than extern with attribute_hidden.
48294         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
48295         For some reason libc prefers K&R style defns for external functions.
48296         (regerror) [!defined _LIBC]: Likewise.
48297         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
48298         (seek_collating_symbol_entry, lookup_collation_sequence_value):
48299         (build_range_exp, build_collating_symbol):
48300         Use K&R-style defn.
48301         (re_compile_fastmap): Use '\0' to memset, not 0.
48302         (utf8_sb_map): Make the calculations more obvious.
48303         (init_dfa, parse_bracket_exp, build_charclass_op):
48304         Call calloc and cast result, as glibc does.
48305         (init_word_char, fetch_token, peek_token, peek_token_bracket):
48306         (build_range_exp, build_collating_symbol):
48307         Now internal functions.
48308
48309         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
48310
48311         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
48312         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
48313         Don't depend on VMS; depend on __VMS instead, for POSIX
48314         namespace cleanness.
48315         (regoff_t): Define to ssize_t, not long int.
48316
48317         Remove the REG_ macros named below.  Instead, make the old names
48318         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
48319         __USE_GNU_REGEX.
48320         (REG_BACKSLASH_ESCAPE_IN_LISTS):
48321         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
48322         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
48323         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
48324         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
48325         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
48326         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
48327         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
48328         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
48329         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
48330         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
48331         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
48332         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
48333         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
48334         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
48335         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
48336         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
48337         (REG_NREGS):
48338         Remove.  All uses replaced by the old RE_* names.
48339         (RE_BACKSLASH_ESCAPE_IN_LISTS):
48340         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
48341         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
48342         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
48343         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
48344         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
48345         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
48346         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
48347         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
48348         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
48349         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
48350         Don't bother having these macros be independent of each others'
48351         values, since they no longer exist in the POSIX name space.
48352
48353         Rename the following member names back to their old names,
48354         unless !__USE_GNU_REGEX.  All uses changed back.
48355         (buffer): Renamed from re_buffer.
48356         (allocated): Renamed from re_allocated.
48357         (used): Renamed from re_used.
48358         (syntax): Renamed from re_syntax.
48359         (fastmap): Renamed from re_fastmap.
48360         (translate): Renamed from re_translate.
48361         (can_be_null): Renamed from re_can_be_null.
48362         (regs_allocated): Renamed from re_regs_allocated.
48363         (fastmap_accurate): Renamed from re_fastmap_accurate.
48364         (no_sub): Renamed from re_no_sub.
48365         (not_bol): Renamed from re_not_bol.
48366         (not_eol): Renamed from re_not_eol.
48367         (newline_anchor): Renamed from re_newline_anchor.
48368         (num_regs): Renamed from rm_num_regs.
48369         (start): Renamed from rm_start.
48370         (end): Renamed from rm_end.
48371
48372         (free_state): Move up a bit.
48373
48374         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
48375         #define to be empty.
48376         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
48377         when that is what is intended.
48378         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
48379         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
48380         (MAX): New macro.
48381         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
48382         All uses changed back to re_malloc, etc.  It's now the caller's
48383         responsibility to check for overflow; all callers changed.
48384         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
48385         (re_x2nrealloc): Remove.
48386         (free_state): Remove decl.
48387
48388         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
48389         (re_set_registers, re_exec):
48390         Use K&R-style defn.
48391
48392         2006-01-31  Roland McGrath  <roland@redhat.com>
48393
48394         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
48395         Reported by Mike Frysinger <vapier@gentoo.org>.
48396
48397         2006-01-15  Andreas Jaeger  <aj@suse.de>
48398
48399         [BZ #1950]
48400         * lib/regex_internal.c (re_string_reconstruct): Adjust for
48401         build_wcs_upper_buffer change.
48402         (build_wcs_upper_buffer): Change return type.
48403
48404         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
48405
48406         * lib/regex_internal.h: Include <stdint.h> if available.
48407
48408         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
48409
48410         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
48411
48412         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
48413
48414         * lib/regcomp.c: Adjust for changed secondary hash function.
48415
48416         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
48417
48418         * lib/regex.h: Pretty printing.
48419         Clean up namespace a bit.
48420
48421         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
48422
48423         * lib/regexec.c (update_cur_sifted_state, check_arrival,
48424         check_arrival_add_next_nodes): Avoid using uninitialized variable.
48425
48426         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
48427                     Ulrich Drepper  <drepper@redhat.com>
48428
48429         [BZ #1302]
48430         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
48431         changed.
48432         (bitset_word_t): Renamed from bitset_word.  All uses changed.
48433
48434         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
48435
48436         [BZ #281]
48437         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
48438         * lib/regcomp.c: Remove unnecessary uses of
48439         unsigned RE_TRANSLATE_TYPE.
48440         * lib/regex_internal.h: Likewise.
48441         * lib/regex_internal.c: Likewise.
48442         * lib/regexec.c: Likewise.
48443         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
48444
48445         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
48446
48447         * lib/regexec.c (find_recover_state): Remove unnecessary
48448         initialization.
48449         (transit_state_bkref): Make DFA a const pointer.
48450         (get_subexp): Likewise.
48451         (check_arrival): Likewise.
48452         (update_cur_sifted_state): Likewise.
48453         (re_search_internal): Likewise.
48454         (prune_impossible_nodes): Likewise.
48455         (acquire_init_state_context): Likewise.
48456         (proceed_next_node): Likewise.
48457         (set_regs): Likewise.
48458         (free_fail_stack_return): Likewise.
48459         (check_arrival_expand_ecl): Mark DFA parameter as const.
48460         (check_arrival_expand_ecl_sub): Likewise.
48461         (check_subexp_limits): Likewise.
48462         (sub_epsilon_src_nodes):  Likewise.
48463         (add_epsilon_src_nodes):  Likewise.
48464         (merge_state_array): Likewise.
48465         (update_regs): Likewise.
48466         (build_trtable): Likewise.
48467         (sift_states_backward): Mark MCTX parameter as const.
48468         (build_sifted_states): Likewise.
48469         (update_cur_sifted_state): Likewise.
48470         (sift_states_mkref): Likewise.
48471         (check_arrival_expand_ecl): Mark eclosure as const.
48472         (check_dst_limits_calc_pos_1): Likewise.
48473         * lib/regex_internal.h (re_match_context_t): Make dfa a const
48474         pointer.
48475
48476         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
48477
48478         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
48479         (transit_state_sb): Likewise.
48480         (transit_state_mb): Likewise.
48481         (sift_states_iter_mb): Likewise.
48482         (check_arrival_add_next_nodes): Likewise.
48483         (check_node_accept_bytes): Change first parameter to pointer-to-const.
48484         [_LIBC] (re_search_2_stub): Use mempcpy.
48485
48486         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
48487         mbrtowc for very simple UTF-8 case.
48488
48489         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
48490         a pointer-to-const.
48491         (re_acquire_state_context): Likewise.
48492         * lib/regex_internal.h: Adjust prototypes.
48493
48494         * lib/regex.c: Prevent using C++ compilers.
48495
48496         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
48497         (re_acquire_state_context): Likewise.
48498
48499 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
48500
48501         * modules/regex (Depends-on): Add ssize_t.
48502
48503 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
48504
48505         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
48506         translation table.
48507
48508 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
48509
48510         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
48511
48512 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
48513             Bruno Haible  <bruno@clisp.org>
48514
48515         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
48516         <sys/types.h> and <inttypes.h>.
48517
48518 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48519
48520         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
48521         `__error_t_defined', so argp.h will not typedef the former.
48522
48523 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
48524
48525         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
48526         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
48527         glibc names.  Even if glibc is changed to conform to POSIX, the
48528         traditional names will be available anyway, since regex depends on
48529         the extensions module.  Also, fix a longstanding typo in the
48530         implementation of Spencer ERE test #75 from grep 2.3.  Problems
48531         reported by Emanuele Giaquinta.  Also, change sense of cached
48532         variable, so that the message makes sense.
48533
48534 2006-03-24  Simon Josefsson  <jas@extundo.com>
48535
48536         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
48537         including some doc fixes.
48538         (base64_encode_alloc): Fix +1 bug on allocation failures.
48539
48540 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48541
48542         * lib/base64.c (base64_encode): Do not read past end of array with
48543         unsanitized input on systems with CHAR_BIT > 8.
48544
48545 2006-03-24  Eric Blake  <ebb9@byu.net>
48546
48547         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
48548
48549 2006-03-22  Karl Berry  <karl@gnu.org>
48550
48551         * config/srclist.txt (*setenv.[ch]): get from coreutils.
48552         * config/srclistvars.sh (COREUTILS): new var.
48553
48554 2006-03-17  Jim Meyering  <jim@meyering.net>
48555
48556         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
48557         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
48558
48559 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
48560
48561         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
48562         no longer needs it.  Instead, check that regoff_t is as least
48563         as wide as ptrdiff_t.
48564
48565         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
48566         so that our regex.h stays compatible with the installed regex.
48567         This is helpful for installers who configure --without-included-regex.
48568         Problem reported by Emanuele Giaquinta.
48569
48570 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
48571
48572         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
48573         Typedef to long int, not to off_, as POSIX will likely change
48574         in that direction.
48575
48576 2006-03-15  Eric Blake  <ebb9@byu.net>
48577
48578         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
48579
48580 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
48581
48582         * lib/argp-help.c (validate_uparams): Fix typo
48583         * lib/argp-parse.c (argp_default_options): Consistently begin help
48584         messages with a lowercase letter.
48585
48586 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
48587
48588         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
48589         overrun buffers and shouldn't be used (much as gets shouldn't be
48590         used).
48591         * lib/time_r.c (asctime_r, ctime_r): Likewise.
48592
48593 2006-03-08  Simon Josefsson  <jas@extundo.com>
48594
48595         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
48596         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48597
48598 2006-03-08  Simon Josefsson  <jas@extundo.com>
48599
48600         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
48601         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48602
48603 2006-03-08  Simon Josefsson  <jas@extundo.com>
48604
48605         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
48606         signal that configure disabled the device.
48607
48608 2006-03-08  Simon Josefsson  <jas@extundo.com>
48609
48610         * build-aux/maint.mk: Fix refresh-po, to handle no translated
48611         languages.
48612
48613 2006-03-07  Simon Josefsson  <jas@extundo.com>
48614
48615         * modules/getopt (Depends-on): Add unistd.
48616
48617         * modules/unistd: New file.
48618
48619 2006-03-07  Simon Josefsson  <jas@extundo.com>
48620
48621         * modules/gc-random: New file.
48622
48623 2006-03-07  Simon Josefsson  <jas@extundo.com>
48624
48625         * m4/unistd_h.m4: New file.
48626
48627 2006-03-07  Simon Josefsson  <jas@extundo.com>
48628
48629         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
48630         test to be side-effect free by storing the result in the cache
48631         variable gl_cv_lib_readline, and moving the assignment of
48632         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
48633         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
48634
48635 2006-03-07  Simon Josefsson  <jas@extundo.com>
48636
48637         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
48638         error on missing devices (the functions will return an error).
48639
48640         * m4/gc.m4: Move random stuff to gc-random.m4
48641
48642 2006-03-07  Simon Josefsson  <jas@extundo.com>
48643
48644         * lib/unistd_.h: New file.
48645
48646 2006-03-07  Simon Josefsson  <jas@extundo.com>
48647
48648         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
48649
48650 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48651
48652         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
48653         Problem reported by Juan Manuel Guerrero.
48654
48655 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48656
48657         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
48658         the unistd module.
48659         * lib/getlogin_r.c: Likewise.
48660         * lib/getlogin_r.h: Likewise.
48661         * lib/glob.c: Likewise.
48662         * lib/pagealign_alloc.c: Likewise.
48663         * lib/unistd_.h: Remove; no longer needed.
48664
48665 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
48666
48667         * MODULES.html.sh (Support for systems lacking POSIX:2001):
48668         Add unistd.
48669         * modules/c-stack (Depends-on): Add unistd.
48670         * modules/getlogin_r: Likewise.
48671         * modules/glob: Likewise.
48672         * modules/pagealign_alloc: Likewise.
48673         * modules/unistd (Files): Remove lib/unistd_.h.
48674         (EXTRA_DIST): Remove.
48675         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
48676         need unistd_.h.
48677         (MOSTLYCLEANFILES): Remove unistd.h-t.
48678
48679 2006-03-03  Simon Josefsson  <jas@extundo.com>
48680
48681         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
48682
48683 2006-03-03  Simon Josefsson  <jas@extundo.com>
48684
48685         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
48686         libidn and bison.
48687
48688 2006-03-03  Simon Josefsson  <jas@extundo.com>
48689
48690         * build-aux/maint.mk: Add indent target.
48691
48692 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
48693
48694         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
48695         our replacement poll.h in any case, to avoid a differing
48696         declaration from a system header.  Seen on AIX.
48697
48698 2006-03-01  Simon Josefsson  <jas@extundo.com>
48699
48700         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
48701         <kasal@ucw.cz>.
48702
48703 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
48704
48705         * modules/gettime (Depends-on): Add extensions module.
48706         * modules/nanosleep (Depends-on): Likewise.
48707         * modules/settime (Depends-on): Likewise.
48708
48709 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
48710
48711         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
48712         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
48713         pedantically.
48714         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
48715         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
48716
48717         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
48718         not "==".  Reported by Ralf Wildenhues.
48719
48720 2006-03-01  Karl Berry  <karl@gnu.org>
48721
48722         * doc/Copyright/request-*: new files, synced from gnuorg.
48723
48724 2006-03-01  Karl Berry  <karl@gnu.org>
48725
48726         * config/srclist.txt (Copyright/*): new entries.
48727
48728 2006-02-28  Simon Josefsson  <jas@extundo.com>
48729
48730         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
48731
48732 2006-02-27  Simon Josefsson  <jas@extundo.com>
48733
48734         * lib/base64.h: Indent #define's.  From Jim Meyering
48735         <jim@meyering.net>.
48736
48737 2006-02-27  Jim Meyering  <jim@meyering.net>
48738
48739         Revert the change of 2006-02-24, so these files can continue
48740         to be sync'd from gettext.
48741         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
48742         of `config.h'.
48743
48744 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
48745
48746         * modules/intprops: New file.
48747         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
48748         Add intprops.
48749         * modules/getloadavg (Files): Remove lib/intprops.h.
48750         (Depends-on): Add intprops.
48751         * modules/human: Likewise.
48752         * modules/inttostr: Likewise.
48753         * modules/openat: Likewise.
48754         * modules/sig2str: Likewise.
48755         * modules/userspec: Likewise.
48756         * modules/utimecmp: Likewise.
48757         * modules/xnanosleep: Likewise.
48758         * modules/xstrtol: Likewise.
48759
48760 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
48761
48762         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
48763         * modules/lock-tests (TESTS): Use $(EXEEXT).
48764         * modules/tls-tests: Likewise.
48765         * modules/argp-tests: Likewise.
48766         (check_PROGRAMS): New var, replacing...
48767         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
48768
48769 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48770
48771         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
48772         `config.h'.
48773
48774 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
48775
48776         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
48777
48778 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48779
48780         Sync from coreutils.
48781         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
48782         gl_CHDIR_SAFER.
48783
48784 2006-02-22  Jim Meyering  <jim@meyering.net>
48785
48786         Sync from coreutils.
48787         * m4/chdir-safer.m4: New file.
48788
48789 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
48790
48791         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
48792         AT_FDCWD exceeds INT_MAX.
48793         * lib/openat.h (AT_FDCWD): Likewise.
48794
48795 2006-02-17  Eric Blake  <address@hidden>
48796
48797         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
48798
48799 2006-02-16  Simon Josefsson  <jas@extundo.com>
48800
48801         * modules/getaddrinfo (Depends-on): Add sys_socket.
48802
48803 2006-02-15  Simon Josefsson  <jas@extundo.com>
48804
48805         * build-aux/maint.mk: Add dsyntax-check rule.
48806
48807 2006-02-15  Eric Blake  <ebb9@byu.net>
48808
48809         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
48810         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
48811         'present but cannot compile' warnings on cygwin.
48812         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
48813         use ws2tcpip.h if sys/socket.h works.
48814         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
48815         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
48816
48817 2006-02-14  Simon Josefsson  <jas@extundo.com>
48818
48819         * modules/maintainer-makefile (Files): Rename.
48820
48821         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
48822         and (the local) Makefile.cfg to maint-cfg.mk.
48823
48824         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
48825         to the latter.
48826
48827         * modules/maintainer-makefile: New module.
48828
48829         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
48830         severaly stripped to make it possible to build it up from scratch
48831         with reliable tests.
48832
48833         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
48834         fixes to permit overriding the default actions when configure and
48835         makefile are not available.
48836
48837 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
48838
48839         Sync from coreutils.
48840         * modules/lstat (Depends-on): Don't depend on xalloc.
48841         (License): Change from GPL to LGPL, since this is now simply a
48842         replacement for a libc function.
48843
48844 2006-02-14  Jim Meyering  <jim@meyering.net>
48845
48846         Sync from coreutils.
48847
48848         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
48849         failure on deficient systems, and simplify gnulib lgpl dependencies.
48850         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
48851         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
48852
48853         * lib/xalloc-die.c: Remove unused definition of N_.
48854
48855 2006-02-14  Jim Meyering  <jim@meyering.net>
48856
48857         Sync from coreutils.
48858         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
48859         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
48860         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
48861         double-quote uses of that variable, to accommodate the rare case in
48862         which getmntent is available in none of the libraries checked.  This
48863         happens at least on FreeBSD 5.0.
48864
48865 2006-02-13  Simon Josefsson  <jas@extundo.com>
48866
48867         * gnulib-tool (Usage): Fix --import, from
48868         karl@freefriends.org (Karl Berry).
48869
48870 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
48871
48872         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
48873
48874 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
48875
48876         * lib/argp-namefrob.h: Restore changes accidentally lost during the
48877         "autoupdate" on 2005-12-12.
48878
48879 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
48880
48881         * modules/closeout (Depends-on): Remove atexit.
48882
48883 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
48884
48885         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
48886         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
48887
48888 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
48889
48890         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
48891         __EXTENSIONS__ if this causes compilation to fail.  Problem
48892         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
48893         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
48894
48895 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
48896
48897         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
48898         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
48899         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
48900         All uses changed.
48901
48902 2006-01-26  Simon Josefsson  <jas@extundo.com>
48903
48904         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
48905         prototype is visible on mingw32.
48906
48907         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
48908         for mingw32.
48909
48910         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
48911         mingw32).
48912
48913 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
48914
48915         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
48916         attempt to open for write; this always fails, at least on POSIX
48917         hosts.  This reinstates the 2006-01-09 change, which was
48918         inadvertently removed.
48919
48920 2006-01-26  Bruno Haible  <bruno@clisp.org>
48921
48922         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
48923         Reported by Paul Eggert.
48924
48925 2006-01-26  Bruno Haible  <bruno@clisp.org>
48926             Paul Eggert  <eggert@cs.ucla.edu>
48927
48928         * lib/stdbool_.h (_Bool)
48929         [(! (defined __cplusplus || defined __BEOS__)
48930           && !defined __GNUC__
48931           && !(defined __HP_cc || defined __xlc__
48932                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
48933                || defined __sgi))]:
48934         #define to signed char in these cases too; this simplifies
48935         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
48936         etc., separately) and makes it more conservative.
48937
48938 2006-01-25  Simon Josefsson  <jas@extundo.com>
48939
48940         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
48941         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
48942         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
48943
48944 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
48945
48946         * lib/argp-namefrob.h: Bugfix. Remove stray #
48947
48948 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
48949
48950         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
48951         so that we test the test.
48952         Check for yet another HP-UX cc bug involving *bool |= bool.
48953
48954 2006-01-25  Karl Berry  <karl@gnu.org>
48955
48956         * config/srclist.txt (vasnprintf.c): sync lost.
48957
48958 2006-01-25  Jim Meyering  <jim@meyering.net>
48959
48960         Sync from the stable (b5) branch of coreutils:
48961
48962         * lib/fts.c (fts_children): Don't let close() clobber errno from
48963         failed fchdir().
48964
48965         * lib/fts.c (fts_stat): When following a symlink-to-directory,
48966         don't necessarily interpret stat-fails+lstat-succeeds as indicating
48967         a dangling symlink.  That can also happen at least for ELOOP.
48968         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
48969         FYI, this bug predates the inclusion of fts.c in coreutils.
48970
48971         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
48972         in their own block, so pre-c99 compilers don't object.
48973
48974         Avoid the double-free (first in fts_read, second in fts_close) that
48975         would occur when an `active' directory is made inaccessible (e.g.,
48976         via chmod a-x) during a traversal.
48977         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
48978         before returning.  Reproduce this failure by
48979         mkdir -p a/b; cd a; chmod a-x . b
48980         Reported by Stavros Passas.
48981
48982 2006-01-25  Jim Meyering  <jim@meyering.net>
48983
48984         * lib/fileblocks.c: Remove more useless parentheses.
48985         * lib/readutmp.h: Likewise.
48986
48987 2006-01-25  Bruno Haible  <bruno@clisp.org>
48988
48989         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
48990         warnings.
48991         Reported by Paul Eggert.
48992
48993 2006-01-25  Bruno Haible  <bruno@clisp.org>
48994
48995         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
48996         rid of a trap command. For Solaris sh.
48997         Reported by Mark D. Baushke <mdb@gnu.org>.
48998
48999 2006-01-24  Simon Josefsson  <jas@extundo.com>
49000
49001         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
49002         Bruno.
49003
49004 2006-01-24  Karl Berry  <karl@gnu.org>
49005
49006         * config/srclist.txt (argp-namefrob.h): sync lost.
49007
49008 2006-01-24  Jim Meyering  <jim@meyering.net>
49009
49010         * modules/openat (Files): Add lib/intprops.h.
49011         From Mark D. Baushke.
49012
49013 2006-01-24  Jim Meyering  <jim@meyering.net>
49014
49015         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
49016         Reported by Mark D. Baushke.
49017
49018 2006-01-24  Jim Meyering  <jim@meyering.net>
49019
49020         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
49021
49022 2006-01-24  Bruno Haible  <bruno@clisp.org>
49023
49024         * modules/strnlen (Maintainer): Change from glibc to all.
49025
49026 2006-01-24  Bruno Haible  <bruno@clisp.org>
49027
49028         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
49029         Patch by Paul Eggert.
49030
49031 2006-01-24  Bruno Haible  <bruno@clisp.org>
49032
49033         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
49034         already has it.
49035         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
49036         2005-11-26.
49037
49038         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
49039         'signed char' to avoid problems with the built-in _Bool type.
49040         Reported by Paul Eggert on 2005-11-26.
49041
49042 2006-01-24  Bruno Haible  <bruno@clisp.org>
49043
49044         * gnulib-tool (func_import): Avoid constructing complicated sed
49045         expressions inside backquote.
49046         Report and solution by Mark D. Baushke <mdb@gnu.org>.
49047
49048 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
49049
49050         These changes imported from libc.
49051         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
49052         test and two separate function calls.
49053         * lib/strndup.c (__strndup): Add libc_hidden_def.
49054
49055 2006-01-23  Simon Josefsson  <jas@extundo.com>
49056
49057         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
49058         Remove the test_*_SOURCES variable: automake infers it by default.
49059         * modules/tls-tests: Likewise.
49060
49061 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
49062
49063         Work around porting bugs reported by Dieter in
49064         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
49065         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
49066         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
49067         Include "getopt.h" first, to check interface.
49068         (getenv): Declare only if defined HAVE_DECL_GETENV &&
49069         !HAVE_DECL_GETENV.
49070         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
49071         (__strndup): Revert to K&R-style function dfns, the glibc style.
49072         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
49073         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
49074         Include strnlen.h first, to get prototype properly.
49075         (strnlen): Renamed from __strnlen.
49076         Remove weak alias.
49077
49078 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
49079
49080         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
49081
49082 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
49083
49084         * config/srclist.txt: Adjust to reflect glibc reorganization.
49085         This affects only comments.
49086
49087 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
49088
49089          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
49090          Reported by Bruce Korb <bkorb@gnu.org>.
49091
49092 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
49093
49094         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
49095         to pacify gcc -Wswitch-default.
49096
49097 2006-01-22  Bruno Haible  <bruno@clisp.org>
49098
49099         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
49100         temporary buffer for sprintf, take into account the precision also
49101         for 'd', 'i', 'u', 'o', 'x', 'X'.
49102
49103 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
49104
49105         * modules/argp-tests: New module
49106         * tests/test-argp.c: New file
49107         * tests/test-argp-2.sh: New file
49108
49109 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
49110
49111         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
49112         (__argp_base_name): Removed
49113         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
49114         typo.
49115         (__argp_base_name): Provide macro definition or extern declaration
49116         depending on the configuration
49117
49118 2006-01-20  Simon Josefsson  <jas@extundo.com>
49119
49120         * modules/inet_ntop (Depends-on): Depend on sys_socket.
49121
49122 2006-01-20  Simon Josefsson  <jas@extundo.com>
49123
49124         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
49125
49126 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
49127
49128         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
49129         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
49130         Suggested by Bruno Haible.
49131
49132 2006-01-20  Karl Berry  <karl@gnu.org>
49133
49134         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
49135         until changes propagate, I guess.
49136
49137 2006-01-19  Simon Josefsson  <jas@extundo.com>
49138
49139         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
49140
49141 2006-01-19  Simon Josefsson  <jas@extundo.com>
49142
49143         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
49144
49145 2006-01-19  Simon Josefsson  <jas@extundo.com>
49146
49147         * gnulib-tool: Set check_PROGRAMS.
49148
49149         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
49150         modules/des-tests, modules/gc-arcfour-tests,
49151         modules/gc-arctwo-tests, modules/gc-des-tests,
49152         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
49153         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
49154         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
49155         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
49156         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
49157         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
49158         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
49159         test_*_SOURCES.
49160
49161 2006-01-18  Simon Josefsson  <jas@extundo.com>
49162
49163         * modules/socklen (Depends-on): Depend on sys_socket.
49164
49165 2006-01-18  Simon Josefsson  <jas@extundo.com>
49166
49167         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
49168         modules/des-tests, modules/gc-arcfour-tests,
49169         modules/gc-arctwo-tests, modules/gc-des-tests,
49170         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
49171         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
49172         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
49173         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
49174         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
49175         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
49176         $(EXEEXT) to automake TESTS variable, for mingw32.
49177
49178 2006-01-17  Simon Josefsson  <jas@extundo.com>
49179
49180         * modules/socklen (Include): Need sys/socket.h.
49181
49182 2006-01-17  Bruno Haible  <bruno@clisp.org>
49183
49184         * modules/ssize_t (Include): Add <sys/types.h>.
49185
49186 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
49187
49188         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
49189         it's not portable and it doesn't work with cross-compiles.
49190         Problem reported by Bruno Haible.  Fix missing-$ typo in
49191         'test "gl_cv_ignore_unused_libraries" ...' that prevented
49192         -zignore from being used with Sun's C compiler.
49193
49194 2006-01-12  Simon Josefsson  <jas@extundo.com>
49195
49196         * lib/base64.c: Fix warning, reported by Bruno Haible
49197         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
49198
49199 2006-01-12  Bruno Haible  <bruno@clisp.org>
49200
49201         * modules/ldd: New file.
49202         * build-aux/ldd.sh.in: New file.
49203         * MODULES.html.sh (Support for building libraries and executables): Add
49204         ldd.
49205
49206 2006-01-12  Bruno Haible  <bruno@clisp.org>
49207
49208         * m4/ldd.m4: New file.
49209
49210 2006-01-12  Bruno Haible  <bruno@clisp.org>
49211
49212         * gnulib-tool (func_import, func_create_testdir): Don't go into an
49213         endless loop while replacing $auxdir with build-aux.
49214
49215 2006-01-11  Simon Josefsson  <jas@extundo.com>
49216
49217         * lib/stdint_.h (SIZE_MAX): Add missing (.
49218
49219 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
49220
49221         Sync from coreutils.
49222         * lib/md5.c: Fix commentary typos.
49223         (alignof, UNALIGNED_P): No need for a GCC-specific version.
49224         * lib/md5.h (__attribute__): Remove; unused.
49225         * lib/sha1.c: Fix commentary to match md5 better.
49226         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
49227         so that we don't need to worry about alignment.  All uses changed.
49228         This merges the 2005-10-28 md5 change into sha1.
49229
49230 2006-01-11  Jim Meyering  <jim@meyering.net>
49231
49232         Sync from coreutils.
49233         * lib/md5.c (OP): Fix spacing.
49234
49235 2006-01-11  Bruno Haible  <bruno@clisp.org>
49236
49237         Ensure automatic ordering between gl_LOCK and gl_ARGP.
49238         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
49239         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
49240
49241 2006-01-11  Bruno Haible  <bruno@clisp.org>
49242
49243         Ensure automatic ordering between gl_LOCK and gl_ARGP.
49244         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
49245         the "early" section as well.
49246
49247 2006-01-11  Bruno Haible  <bruno@clisp.org>
49248
49249         Avoid "ar: no archive members specified" error on MacOS X.
49250         * gnulib-tool (func_modules_add_dummy): New function.
49251         (func_import, func_create_testdir): Invoke it.
49252
49253 2006-01-11  Bruno Haible  <bruno@clisp.org>
49254
49255         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
49256         with $auxdir in AC_CONFIG_FILES statements.
49257
49258 2006-01-11  Bruno Haible  <bruno@clisp.org>
49259
49260         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
49261         Initialize also noinst_HEADERS to empty.
49262
49263 2006-01-11  Bruno Haible  <bruno@clisp.org>
49264
49265         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
49266         variables.
49267         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
49268         autoreconf.
49269
49270 2006-01-11  Bruno Haible  <bruno@clisp.org>
49271
49272         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
49273         overridable by the user.
49274         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
49275
49276 2006-01-10  Simon Josefsson  <jas@extundo.com>
49277
49278         * modules/sys_socket: New file.
49279
49280 2006-01-10  Simon Josefsson  <jas@extundo.com>
49281
49282         * m4/sys_socket_h.m4: New file.
49283
49284 2006-01-10  Simon Josefsson  <jas@extundo.com>
49285
49286         * lib/socket_.h: New file.
49287
49288 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
49289
49290         * modules/readutmp (Maintainer): Add myself.
49291
49292 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
49293
49294         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
49295         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
49296         People who are still concerned with buggy memcmp implementations
49297         can invoke gl_FUNC_MEMCMP themselves.
49298
49299 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
49300
49301         * lib/regex_internal.h (BITSET_WORD_BITS):
49302         Work around a bug in 64-bit PGC (before version 6.1-2), where the
49303         preprocessor mishandles large unsigned values as if they were signed.
49304         Problem reported by Claudio Fontana in
49305         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
49306
49307 2006-01-10  Jim Meyering  <jim@meyering.net>
49308
49309         Avoid the double-free (first in fts_read, second in fts_close) that
49310         would occur when an `active' directory is made inaccessible (e.g.,
49311         via chmod a-x) during a traversal.
49312         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
49313         before returning.  Reproduce this failure by
49314         mkdir -p a/b; cd a; chmod a-x . b
49315         Reported by Stavros Passas.
49316
49317         Sync from coreutils.
49318         * lib/sha1.c: Tweak grammar in a comment.
49319
49320 2006-01-10  Jim Meyering  <jim@meyering.net>
49321
49322         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
49323         Patch by Joerg Sonnenberger.
49324
49325 2006-01-10  Bruno Haible  <bruno@clisp.org>
49326
49327         * modules/readutmp: Depend on module free.
49328         * modules/strtok_r: Depend on module restrict.
49329
49330 2006-01-10  Bruno Haible  <bruno@clisp.org>
49331
49332         * modules/gettext (configure.ac): Add an invocation of
49333         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
49334
49335 2006-01-10  Bruno Haible  <bruno@clisp.org>
49336
49337         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
49338         Reported by Werner Lemberg <wl@gnu.org>.
49339
49340 2006-01-10  Bruno Haible  <bruno@clisp.org>
49341
49342         * lib/localcharset.c: Update from GNU gettext.
49343
49344 2006-01-10  Bruno Haible  <bruno@clisp.org>
49345
49346         * lib/argp.h (__const): Remove macro. Use const instead.
49347         * lib/argp-fmtstream.h (__const): Likewise.
49348         * lib/glob_.h (__const): Remove macro.
49349         * lib/glob-libc.h: Use const instead of __const.
49350
49351 2006-01-10  Bruno Haible  <bruno@clisp.org>
49352
49353         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
49354         variable.
49355         Needed to avoid an automake error regarding the 'gettext' module.
49356
49357 2006-01-09  Simon Josefsson  <jas@extundo.com>
49358
49359         * modules/inet_ntop (Depends-on): Add restrict.
49360
49361 2006-01-09  Simon Josefsson  <jas@extundo.com>
49362
49363         * modules/gc-rijndael-tests (License): Put under LGPL.
49364
49365         * modules/gc-des-tests (License): Likewise.
49366
49367         * modules/gc-arcfour-tests (License): Likewise.
49368
49369         * modules/gc-arctwo-tests (License): Likewise.
49370
49371         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
49372
49373         * modules/gc-hmac-sha1-tests (Files): Likewise.
49374
49375         * modules/gc-hmac-md5-tests (License): Likewise.
49376
49377         * modules/gc-sha1-tests (License): Likewise.
49378
49379         * modules/gc-md5-tests (License): Likewise.
49380
49381         * modules/gc-md4-tests (License): Likewise.
49382
49383         * modules/gc-md2-tests (License): Likewise.
49384
49385         * modules/gc-tests (License): Likewise.
49386
49387         * modules/des-tests (License): Likewise.
49388
49389         * modules/md4-tests (License): Likewise.
49390
49391         * modules/md2-tests (License): Likewise.
49392
49393 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
49394
49395         Sync from coreutils:
49396
49397         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
49398         * modules/lib-ignore: New file.
49399         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
49400         chdir-safer.m4, lchmod.m4.
49401         * modules/openat: Add mkdirat.c, openat-priv.h.
49402
49403 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
49404
49405         Sync from coreutils.
49406         * m4/lib-ignore.m4: New file.
49407         * m4/lchmod.m4: New file.
49408
49409 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
49410
49411         Sync from coreutils.
49412         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
49413         for write access: POSIX says that must fail.
49414         * lib/fts.c (diropen): Likewise.
49415         * lib/save-cwd.c (save_cwd): Likewise.
49416         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
49417         well, for minor improvements on hosts that lack O_DIRECTORY.
49418         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
49419         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
49420         Fall back on chown if open failed with EACCES.
49421
49422         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
49423         Report an error at compile-time if only a 1-second nominal clock
49424         resolution is found.
49425
49426         * lib/lchmod.h: New file.
49427         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
49428         (make_dir_parents): Use lchown rather than chown, and
49429         lchmod rather than chmod.
49430
49431         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
49432         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
49433         "proc" reported by n0dalus.
49434
49435         * lib/mountlist.c: Include <limits.h>.
49436         (dev_from_mount_options)
49437         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
49438         New function.  It no longer assumes "dev=" has the System V meaning
49439         on Linux (since it doesn't).  It also parses "dev=" more carefully.
49440         (read_file_system_list)
49441         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
49442         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
49443         dev= in that case.
49444
49445         * lib/posixtm.h (PDS_PRE_2000): New macro.
49446         * lib/posixtm.c (year): Arg is now syntax_bits rather than
49447         allow_century.  All usages changed.  Reject dates outside the range
49448         1969-1999 if PDS_PRE_2000 is used.
49449
49450 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
49451
49452         Sync from coreutils.
49453         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
49454         (Time of day items): Mention the possibility of leap seconds.
49455         Problem reported by Dr. David Alan Gilbert.
49456
49457 2006-01-09  Jim Meyering  <jim@meyering.net>
49458
49459         Sync from coreutils.
49460
49461         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
49462
49463         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
49464
49465         * lib/modechange.c (mode_compile): Reject an invalid mode string
49466         that starts with an octal digit.  From Andreas Gruenbacher.
49467
49468         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
49469         and dup to open_safer and dup_safer, respectively.
49470         (openat_permissive): Fix typo in comment.
49471
49472         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
49473         "gettext.h"; either no longer needed or are guaranteed by openat.h.
49474         (_): Remove; no longer needed.
49475         (openat): Renamed from rpl_openat; no need for rpl_openat
49476         since openat.h renames openat for us.
49477         Replace most of the body with a call to openat_permissive,
49478         to avoid duplicate code.
49479         Port to (probably hypothetical) environments were mode_t is
49480         wider than int.
49481         (openat_permissive): Require mode arg, so that we can check
49482         types better.  Put it just after flags.  Change cwd failure
49483         indicator from pointer-to-bool to pointer-to-errno-value.
49484         All callers changed.
49485         Invoke openat_save_fail and/or openat_restore_fail if
49486         cwd_errno is null, so that openat can call us.
49487         (openat_permissive, fdopendir, fstatat, unlinkat):
49488         Simplify errno handling to avoid some duplicate code,
49489         as it's OK to set errno on success.
49490         * lib/openat.h: Revamp code so that function macros depend on
49491         __OPENAT_PREFIX only, not also on AT_FDCWD.
49492         (openat_ro): Remove.  Caller changed to use openat_permissive.
49493         (openat_permissive): Now a macro, if not a function.
49494         (openat_restore_fail, openat_save_fail): Now always functions,
49495         since mkdirat needs them even if __OPENAT_PREFIX is defined.
49496
49497         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
49498         and openat.c.
49499         * lib/mkdirat.c: Include openat-priv.h.
49500         Remove definitions of macros defined therein.
49501         * lib/openat.c: Likewise.
49502
49503         * lib/mkdirat.c (mkdirat): New file and function.
49504         * lib/openat.h (mkdirat): Declare.
49505
49506         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
49507
49508         * lib/openat.h (openat_permissive): Declare.
49509         (openat_ro): Define.
49510
49511         * lib/openat.c (EXPECTED_ERRNO): New macro.
49512         (openat_permissive): New function -- used in remove.c rewrite.
49513         (all functions): Set errno just before returning, only if there
49514         was an actual failure.
49515         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
49516
49517         Emulate openat-family functions using Linux's procfs, if possible.
49518         Idea and some code based on Ulrich Drepper's glibc changes.
49519
49520         * lib/openat.c: (BUILD_PROC_NAME): New macro.
49521         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
49522         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
49523         before falling back on save_cwd and restore_cwd.
49524         (fdopendir, fstatat, unlinkat): Likewise.
49525
49526         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
49527         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
49528
49529         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
49530         as second argument to va_arg.  Otherwise, some versions of gcc
49531         warn that `if this code is reached, the program will abort'.
49532
49533 2006-01-09  Jim Meyering  <jim@meyering.net>
49534
49535         Sync from coreutils.
49536         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
49537         Require openat-priv.h.
49538
49539 2006-01-09  Bruno Haible  <bruno@clisp.org>
49540
49541         * modules/strnlen (Include): Use strnlen.h.
49542
49543 2006-01-09  Bruno Haible  <bruno@clisp.org>
49544
49545         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
49546
49547 2006-01-09  Bruno Haible  <bruno@clisp.org>
49548
49549         * lib/sysexit_.h (EX_OK): New macro.
49550         Suggested by Martin Lambers <marlam@marlam.de>.
49551
49552 2006-01-09  Bruno Haible  <bruno@clisp.org>
49553
49554         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
49555         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
49556
49557 2006-01-09  Bruno Haible  <bruno@clisp.org>
49558
49559         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
49560         numbers.
49561
49562 2006-01-09  Bruno Haible  <bruno@clisp.org>
49563
49564         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
49565         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
49566         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
49567         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
49568
49569 2006-01-09  Bruno Haible  <bruno@clisp.org>
49570
49571         * build-aux/javacomp.sh.in: New file, moved from lib/.
49572         * modules/javacomp-script (Files): Update.
49573         (configure.ac): Add AC_CONFIG_FILES invocation.
49574         (EXTRA_DIST): Remove variable.
49575
49576         * build-aux/javaexec.sh.in: New file, moved from lib/.
49577         * modules/javaexec (Files): Update.
49578         (configure.ac): Add AC_CONFIG_FILES invocation.
49579         (EXTRA_DIST): Remove javaexec.sh.in.
49580
49581         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
49582         * modules/csharpcomp-script (Files): Update.
49583         (configure.ac): Add AC_CONFIG_FILES invocation.
49584         (EXTRA_DIST): Remove variable.
49585
49586         * build-aux/csharpexec.sh.in: New file, moved from lib/.
49587         * modules/csharpexec (Files): Update.
49588         (configure.ac): Add AC_CONFIG_FILES invocation.
49589         (EXTRA_DIST): Remove csharpexec.sh.in.
49590
49591 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
49592
49593         Sync from coreutils.
49594
49595         Add POSIX ACL support
49596         * lib/acl.h (copy_acl, set_acl): Add declarations.
49597         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
49598         systems other than Linux.
49599         (chmod_or_fchmod): New function: use fchmod when possible,
49600         and chmod otherwise.
49601         (file_has_acl): Add a POSIX ACL implementation, with a
49602         Linux-specific subcase.
49603         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
49604         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
49605         acls are unsupported.
49606         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
49607         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
49608         are unsupported.
49609
49610 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
49611
49612         Sync from coreutils.
49613         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
49614
49615 2006-01-07  Bruno Haible  <bruno@clisp.org>
49616
49617         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
49618         gl_EARLY.
49619
49620 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
49621
49622         * lib/strftime.c (tzname): Don't declare if it is already #defined.
49623         Problem reported for Mingw by Mark Junker.
49624
49625 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
49626
49627         * README: Gnulib normally doesn't generate a tarball.
49628
49629 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
49630
49631         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
49632         long int, not int, for nanosecond counts, so that people who are
49633         used to POSIX struct timespec won't be surprised.  Reported by Jim
49634         Meyering.
49635
49636 2005-12-28  Bruno Haible  <bruno@clisp.org>
49637
49638         * build-aux/config.rpath: Update from GNU gettext.
49639
49640 2005-12-16  Jim Meyering  <jim@meyering.net>
49641
49642         * modules/fprintftime: New module.
49643         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
49644
49645 2005-12-16  Jim Meyering  <jim@meyering.net>
49646
49647         * m4/fprintftime.m4: New file.
49648
49649 2005-12-16  Jim Meyering  <jim@meyering.net>
49650
49651         * lib/fprintftime.c, lib/fprintftime.h: New files.
49652
49653 2005-12-15  Simon Josefsson  <jas@extundo.com>
49654
49655         * modules/socklen (configure.ac): Fix M4 macro name, to align with
49656         new m4/socklen.m4.
49657
49658 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
49659
49660         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
49661         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
49662
49663 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
49664
49665         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
49666         * lib/argp-help.c (fill_in_uparams): Check if the constructed
49667         struct uparams is valid. Fall back to the default values if it is
49668         not.
49669
49670 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49671
49672         * modules/argp (Files): Add argp-pin.c
49673         (Depends-on): dirname
49674         (lib_SOURCES): Add argp-pin.c
49675
49676 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49677
49678         * m4/argp.m4:  Check if program_invocation_name and
49679         program_invocation_short_name are declared and define appropriate
49680         macros if they are not.
49681
49682 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49683
49684         * lib/argp-help.c (__argp_base_name): New function
49685         (__argp_short_program_name): Rewrite using __argp_base_name
49686         * lib/argp-namefrob.h: Define program_invocation_name and
49687         program_invocation_short_name if requested
49688         (__argp_base_name): Add prototype
49689         * lib/argp-parse.c (argp_def): Use gettext wrappers
49690         (argp_default_parser): Use __argp_base_name
49691         * lib/argp-pin.c: New file. Defines program_invocation_name and
49692         program_invocation_short_name on systems that lack them.
49693
49694 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
49695
49696         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
49697         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
49698         porting problem reported by Georg Schwarz in
49699         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
49700
49701 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
49702
49703         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
49704         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
49705         porting problem reported by Georg Schwarz in
49706         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
49707
49708 2005-12-05  Bruno Haible  <bruno@clisp.org>
49709
49710         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
49711         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
49712         Reported by Mark Junker <mjscod@gmx.de>.
49713
49714 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
49715
49716         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
49717         Use implementation from Albert Chin, with some
49718         comments/corrections by Stepan Kasal and myself.
49719
49720 2005-12-02  Bruno Haible  <bruno@clisp.org>
49721
49722         * gnulib-tool (func_import): Accept GPLed build tool modules when
49723         --lgpl is given.
49724         * modules/csharpcomp-script: New file.
49725         * modules/csharpcomp: Depend on it.
49726         * modules/javacomp-script: New file.
49727         * modules/javacomp: Depend on it.
49728         Suggested by Simon Josefsson.
49729
49730 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
49731
49732         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
49733         statement, to work around an HP-UX 10.20 compiler bug reported by
49734         Peter O'Gorman.
49735
49736 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
49737
49738         * modules/savedir (Depends-on): Add openat.
49739
49740 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
49741
49742         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
49743         (uintmax_t) [defined uintmax_t]: Do not declare.
49744         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
49745         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
49746         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
49747         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
49748         sake of portability to weird hosts that C allows (though we don't
49749         know of any practical examples).
49750
49751         * lib/savedir.h (fdsavedir): New decl.
49752         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
49753         contains most of the former guts of savedir.
49754         (savedir): Use savedirstream.
49755         Include "openat.h".
49756
49757 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
49758
49759         * modules/obstack (Files): Add m4/ulonglong.m4.
49760         Problem reported by Davide Angelocola.
49761
49762 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
49763
49764         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
49765         coreutils no longer futzes with rounding modes.
49766
49767 2005-11-14  Jim Meyering  <jim@meyering.net>
49768
49769         * lib/mkstemp-safer.c: Include <config.h>, required for possible
49770         replacement of mkstemp.
49771
49772 2005-11-10  Simon Josefsson  <jas@extundo.com>
49773
49774         * lib/readline.c: Remove EOL.
49775
49776 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49777
49778         * modules/gethrxtime (Depends-on): Add gettime.
49779
49780 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49781
49782         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
49783         or gettimeofday; no longer needed.
49784
49785 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
49786
49787         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
49788         time business.
49789         (gethrxtime) [! (HAVE_NANOUPTIME
49790         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
49791         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
49792         our own approximation.
49793
49794 2005-11-08  Eric Blake  <ebb9@byu.net>
49795
49796         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
49797
49798 2005-11-08  Eric Blake  <ebb9@byu.net>
49799
49800         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
49801
49802 2005-11-04  Bruno Haible  <bruno@clisp.org>
49803
49804         * gnulib-tool: Implement --update mode.
49805
49806 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49807
49808         Fix porting problem reported by Theodoros V. Kalamatianos.
49809         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
49810         Don't assume that futimes failing means we must fail.
49811
49812 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
49813
49814         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
49815         variables to suggest the intended function of the PATH_MAX check.
49816
49817 2005-10-30  Kean Johnston  <jkj@sco.com>
49818
49819         Trivial changes to support SCO systems.
49820         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
49821         as PATH_MAX.
49822         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
49823         where __ptr is null when no I/O is pending.
49824
49825 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
49826
49827         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
49828         leave errno alone.  Problem reported by Dmitry V. Levin.
49829
49830 2005-10-28  Simon Josefsson  <jas@extundo.com>
49831
49832         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
49833         Test more.
49834
49835         * tests/test-gc-md2.c, tests/test-md2.c: New files.
49836
49837         * modules/md2, modules/md2-tests: New files.
49838
49839 2005-10-28  Simon Josefsson  <jas@extundo.com>
49840
49841         * m4/inet_ntop.m4: More tests.
49842
49843         * m4/gc-md2.m4, md2.m4: New file.
49844
49845 2005-10-28  Simon Josefsson  <jas@extundo.com>
49846
49847         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
49848         "restrict" keywords, as per POSIX.  Protect the function
49849         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
49850         Don't use K&R prototypes.  Check the sprintf return values.
49851         Re-define EAFNOSUPPORT if not present.  Indent.
49852
49853         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
49854         suggested by Bruno Haible <bruno@clisp.org>.
49855
49856         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
49857
49858         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
49859
49860         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
49861         libgcrypt).
49862
49863         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
49864
49865         * lib/md2.h, lib/md2.c: New files.
49866
49867 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
49868
49869         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
49870         errno alone.  Problem reported by Frederic Jolliton.
49871
49872 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
49873
49874         * modules/verify (License): Change from GPL to LGPL.  This is a
49875         tiny module and there are apparently near-equivalents that are
49876         under the BSD license.
49877
49878 2005-10-24  Simon Josefsson  <jas@extundo.com>
49879
49880         * modules/sha1: Relicense to LGPL.
49881
49882 2005-10-24  Simon Josefsson  <jas@extundo.com>
49883
49884         * lib/md4.h: Shrink buffer size, now that we changed the type.
49885
49886 2005-10-23  Simon Josefsson  <jas@extundo.com>
49887
49888         * gnulib-tool (func_import): Fix --tests-base.
49889
49890 2005-10-22  Simon Josefsson  <jas@extundo.com>
49891
49892         * modules/arcfour (Depends-on): Need stdint.
49893
49894 2005-10-22  Simon Josefsson  <jas@extundo.com>
49895
49896         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
49897         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
49898
49899 2005-10-22  Simon Josefsson  <jas@extundo.com>
49900
49901         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
49902         suggested by Bruno Haible <bruno@clisp.org>.
49903
49904 2005-10-22  Simon Josefsson  <jas@extundo.com>
49905
49906         * lib/crc.h: Include stddef.h, for size_t.
49907
49908 2005-10-22  Simon Josefsson  <jas@extundo.com>
49909
49910         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
49911         arcfour_context struct (simplify test vector testing in GNU
49912         Shishi).
49913
49914 2005-10-21  Simon Josefsson  <jas@extundo.com>
49915
49916         * modules/des, modules/des-tests: New files.
49917
49918         * modules/gc-des, modules/gc-des-tests: New files.
49919
49920         * tests/test-des.c, tests/test-gc-des.c: New file.
49921
49922 2005-10-21  Simon Josefsson  <jas@extundo.com>
49923
49924         * modules/arctwo, modules/arctwo-tests: New files.
49925
49926         * tests/test-arctwo.c: New file.
49927
49928         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
49929
49930         * tests/test-gc-arctwo.c: New file.
49931
49932 2005-10-21  Simon Josefsson  <jas@extundo.com>
49933
49934         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
49935         Bruno Haible <bruno@clisp.org>.
49936
49937         * m4/gc-des.m4: New file.
49938
49939 2005-10-21  Simon Josefsson  <jas@extundo.com>
49940
49941         * m4/arctwo.m4: New file.
49942
49943         * m4/gc-arctwo.m4: New file.
49944
49945 2005-10-21  Simon Josefsson  <jas@extundo.com>
49946
49947         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
49948         block.
49949
49950 2005-10-21  Simon Josefsson  <jas@extundo.com>
49951
49952         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
49953         <bruno@clisp.org>.
49954
49955         * lib/hmac-sha1.c (hmac_sha1): Likewise.
49956
49957         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
49958         Bruno Haible <bruno@clisp.org>.
49959
49960         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
49961         <bruno@clisp.org>.
49962
49963 2005-10-21  Simon Josefsson  <jas@extundo.com>
49964
49965         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
49966
49967 2005-10-21  Simon Josefsson  <jas@extundo.com>
49968
49969         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
49970
49971 2005-10-21  Simon Josefsson  <jas@extundo.com>
49972
49973         * lib/des.h, lib/des.c: New files.
49974
49975         * lib/gc-gnulib.c: Support DES.c
49976
49977 2005-10-21  Simon Josefsson  <jas@extundo.com>
49978
49979         * lib/arctwo.h, lib/arctwo.c: New files.
49980
49981         * lib/gc-gnulib.c: Support ARCTWO.
49982
49983 2005-10-21  Simon Josefsson  <jas@extundo.com>
49984
49985         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
49986         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
49987
49988 2005-10-21  Simon Josefsson  <jas@extundo.com>
49989
49990         * gnulib-tool (func_import, func_create_testdir): Define automake
49991         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
49992         Makefile.am snippet),
49993         suggested by Bruno Haible <bruno@clisp.org>.
49994
49995         * modules/gc (Makefile.am): Use it.
49996
49997 2005-10-21  Bruno Haible  <bruno@clisp.org>
49998
49999         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
50000         patch.
50001
50002 2005-10-19  Simon Josefsson  <jas@extundo.com>
50003
50004         * tests/test-gc-rijndael.c: New file.
50005
50006         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
50007
50008 2005-10-19  Simon Josefsson  <jas@extundo.com>
50009
50010         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
50011         interface too.
50012
50013 2005-10-19  Simon Josefsson  <jas@extundo.com>
50014
50015         * tests/test-gc-arcfour.c: New file.
50016
50017         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
50018
50019 2005-10-19  Simon Josefsson  <jas@extundo.com>
50020
50021         * modules/gc-md4, modules/gc-md4-tests: New file.
50022
50023         * tests/test-gc-md4.c: New file.
50024
50025 2005-10-19  Simon Josefsson  <jas@extundo.com>
50026
50027         * m4/gc-md4.m4: New file.
50028
50029 2005-10-19  Simon Josefsson  <jas@extundo.com>
50030
50031         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
50032         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
50033         <kasal@ucw.cz>.
50034
50035 2005-10-19  Simon Josefsson  <jas@extundo.com>
50036
50037         * m4/gc-arcfour.m4: New file.
50038
50039         * m4/gc-rijndael.m4: New file.
50040
50041 2005-10-19  Simon Josefsson  <jas@extundo.com>
50042
50043         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
50044
50045 2005-10-19  Simon Josefsson  <jas@extundo.com>
50046
50047         * lib/gc-gnulib.c: Support ARCFOUR.
50048
50049 2005-10-19  Simon Josefsson  <jas@extundo.com>
50050
50051         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
50052         support.
50053
50054         * lib/gc.h: Add ECB enum type.
50055
50056         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
50057
50058 2005-10-18  Simon Josefsson  <jas@extundo.com>
50059
50060         * tests/test-md5.c: New file.
50061
50062         * modules/md5-tests: New file.
50063
50064 2005-10-18  Simon Josefsson  <jas@extundo.com>
50065
50066         * tests/test-md4.c: New file.
50067
50068         * modules/md4, modules/md4-tests: New files.
50069
50070 2005-10-18  Simon Josefsson  <jas@extundo.com>
50071
50072         * m4/md4.m4: New file.
50073
50074 2005-10-18  Simon Josefsson  <jas@extundo.com>
50075
50076         * lib/md4.h, lib/md4.c: New files, based on md5.?.
50077
50078 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
50079
50080         * gnulib-tool (func_create_testdir): Omit the second check whether
50081         BUILT_SOURCES in nonempty.
50082
50083 2005-10-17  Simon Josefsson  <jas@extundo.com>
50084
50085         * tests/test-rijndael.c: New file.
50086
50087 2005-10-17  Simon Josefsson  <jas@extundo.com>
50088
50089         * modules/sha1: Depend on stdint instead of md5.
50090
50091         * modules/md5: Depend on stdint, remove uint32_t.
50092
50093 2005-10-17  Simon Josefsson  <jas@extundo.com>
50094
50095         * modules/gc-sha1-tests: New file.
50096
50097         * tests/test-gc-sha1.c: New file.
50098
50099 2005-10-17  Simon Josefsson  <jas@extundo.com>
50100
50101         * m4/md5.m4: Remove call to uint32_t.m4.
50102
50103 2005-10-17  Simon Josefsson  <jas@extundo.com>
50104
50105         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
50106
50107         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
50108         md5.h.
50109
50110         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
50111
50112         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
50113
50114 2005-10-17  Simon Josefsson  <jas@extundo.com>
50115
50116         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
50117
50118 2005-10-17  Simon Josefsson  <jas@extundo.com>
50119
50120         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
50121
50122 2005-10-17  Simon Josefsson  <jas@extundo.com>
50123
50124         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
50125
50126         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
50127
50128 2005-10-17  Bruno Haible  <bruno@clisp.org>
50129
50130         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
50131         that it can also be used in a test.
50132
50133 2005-10-16  Bruno Haible  <bruno@clisp.org>
50134
50135         * gnulib-tool (func_emit_tests_Makefile_am): Also define
50136         TESTS_ENVIRONMENT, so that individual tests can augment it.
50137
50138         * gnulib-tool (func_create_testdir): Use an intermediate target for
50139         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
50140         macros, like $(ALLOCA_H), which cannot be passed through the command
50141         line.
50142
50143 2005-10-15  Simon Josefsson  <jas@extundo.com>
50144
50145         * modules/rijndael-tests: New file.
50146
50147         * modules/rijndael: New file.
50148
50149 2005-10-15  Simon Josefsson  <jas@extundo.com>
50150
50151         * m4/rijndael.m4: New file.
50152
50153 2005-10-15  Simon Josefsson  <jas@extundo.com>
50154
50155         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
50156
50157         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
50158
50159 2005-10-14  Simon Josefsson  <jas@extundo.com>
50160
50161         * tests/test-arcfour.c: New file.
50162
50163         * modules/arcfour, modules/arcfour-tests: New files.
50164
50165 2005-10-14  Simon Josefsson  <jas@extundo.com>
50166
50167         * m4/arcfour.m4: New file.
50168
50169 2005-10-14  Simon Josefsson  <jas@extundo.com>
50170
50171         * lib/arcfour.h, lib/arcfour.c: New files.
50172
50173 2005-10-14  Roland McGrath  <roland@redhat.com>
50174
50175         Import from libc.  [BZ #1331]
50176         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
50177         macro argument.
50178         Reported by Matej Vela <vela@debian.org>.
50179
50180 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
50181
50182         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
50183         include <wchar.h>; no longer needed.
50184
50185 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
50186
50187         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
50188
50189 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
50190         and  Ulrich Drepper  <drepper@redhat.com>
50191
50192         Import from libc.
50193         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
50194         instead of inline stream orientation test and two separate
50195         function calls.  Pay no attention to USE_IN_LIBIO.
50196
50197 2005-10-13  Simon Josefsson  <jas@extundo.com>
50198
50199         * modules/gc-hmac-md5-tests: New file.
50200
50201         * tests/test-gc-hmac-sha1.c: New file.
50202
50203         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
50204
50205         * modules/gc-hmac-md5-tests: New file.
50206
50207         * tests/test-gc-md5.c: New file.
50208
50209         * modules/gc-md5-tests: New file.
50210
50211 2005-10-13  Simon Josefsson  <jas@extundo.com>
50212
50213         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
50214         Move memory allocation outside of loop.
50215
50216 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
50217
50218         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
50219         intermediate directory is in a read-only file system.  Problem
50220         reported by Eric Blake.
50221
50222 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
50223
50224         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
50225
50226 2005-10-12  Simon Josefsson  <jas@extundo.com>
50227
50228         * tests/test-hmac-sha1.c: New file.
50229
50230         * modules/hmac-sha1-tests: New file.
50231
50232         * modules/hmac-sha1: New file.
50233
50234 2005-10-12  Simon Josefsson  <jas@extundo.com>
50235
50236         * modules/gc-sha1: New file.
50237
50238 2005-10-12  Simon Josefsson  <jas@extundo.com>
50239
50240         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
50241
50242         * tests/test-gc-pbkdf2-sha1.c: New file.
50243
50244 2005-10-12  Simon Josefsson  <jas@extundo.com>
50245
50246         * modules/gc-md5, modules/gc-hmac-md5: New files.
50247
50248         * modules/gc (Files): Remove md5, memxor and hmac files.
50249
50250 2005-10-12  Simon Josefsson  <jas@extundo.com>
50251
50252         * m4/gc-pbkdf2-sha1.m4: New file.
50253
50254         * m4/gc-hmac-sha1.m4: New file.
50255
50256         * m4/gc-sha1: New file.
50257
50258         * m4/hmac-sha1.m4: New file.
50259
50260 2005-10-12  Simon Josefsson  <jas@extundo.com>
50261
50262         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
50263
50264         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
50265
50266 2005-10-12  Simon Josefsson  <jas@extundo.com>
50267
50268         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
50269         suggested by Bruno Haible <bruno@clisp.org>.
50270
50271 2005-10-12  Simon Josefsson  <jas@extundo.com>
50272
50273         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
50274
50275 2005-10-12  Simon Josefsson  <jas@extundo.com>
50276
50277         * lib/gc-pbkdf2-sha1.c: New file.
50278
50279         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
50280
50281 2005-10-12  Simon Josefsson  <jas@extundo.com>
50282
50283         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
50284
50285         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
50286
50287 2005-10-12  Simon Josefsson  <jas@extundo.com>
50288
50289         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
50290         GC_USE_HMAC_MD5, respectively.
50291
50292         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
50293         (gc_md5): Fix typo.
50294
50295         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
50296
50297         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
50298
50299         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
50300
50301 2005-10-12  Bruno Haible  <bruno@clisp.org>
50302
50303         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
50304         Reported by Stepan Kasal <kasal@ucw.cz>.
50305
50306 2005-10-11  Simon Josefsson  <jas@extundo.com>
50307
50308         * tests/test-crc.c: New file.
50309
50310         * modules/crc, modules/crc-tests: New files.
50311
50312 2005-10-11  Simon Josefsson  <jas@extundo.com>
50313
50314         * m4/crc.m4: New file.
50315
50316 2005-10-11  Simon Josefsson  <jas@extundo.com>
50317
50318         * lib/gc.h: Add gc_hash and gc_hash_buffer.
50319
50320         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
50321
50322         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
50323
50324 2005-10-11  Simon Josefsson  <jas@extundo.com>
50325
50326         * lib/crc.h, lib/crc.c: New files.
50327
50328         * lib/gc.h (gc_hash_buffer): Add doc.
50329
50330 2005-10-11  Bruno Haible  <bruno@clisp.org>
50331
50332         * modules/c-strcasestr: New file.
50333         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
50334
50335 2005-10-11  Bruno Haible  <bruno@clisp.org>
50336
50337         * modules/c-strcase: New file.
50338         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
50339
50340 2005-10-11  Bruno Haible  <bruno@clisp.org>
50341
50342         * lib/strcasecmp.c: Include limits.h.
50343         (strcasecmp): Avoid integer overflow on exotic platforms.
50344         * lib/strncasecmp.c: Include limits.h.
50345         (strncasecmp): Avoid integer overflow on exotic platforms.
50346         Reported by Paul Eggert.
50347
50348 2005-10-11  Bruno Haible  <bruno@clisp.org>
50349
50350         * lib/c-strcasestr.h: New file, from GNU gettext.
50351         * lib/c-strcasestr.c: New file, from GNU gettext.
50352
50353 2005-10-11  Bruno Haible  <bruno@clisp.org>
50354
50355         * lib/c-strcase.h: New file, from GNU gettext.
50356         * lib/c-strcasecmp.c: New file, from GNU gettext.
50357         * lib/c-strncasecmp.c: New file, from GNU gettext.
50358
50359 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
50360
50361         * modules/mempcpy (License): GPL -> LGPL.
50362         * modules/strchrnul (License): Likewise.
50363         * modules/sysexits (License): Likewise.
50364
50365 2005-10-08  Simon Josefsson  <jas@extundo.com>
50366
50367         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
50368
50369 2005-10-07  Simon Josefsson  <jas@extundo.com>
50370
50371         * m4/memxor.m4: Remove gl_C_RESTRICT call.
50372
50373 2005-10-06  Simon Josefsson  <jas@extundo.com>
50374
50375         * tests/test-hmac-md5.c: New file.
50376
50377         * modules/hmac-md5-tests: New file.
50378
50379         * modules/hmac-md5: New file.
50380
50381 2005-10-06  Simon Josefsson  <jas@extundo.com>
50382
50383         * m4/hmac-md5.m4: New file.
50384
50385         * m4/memxor.m4: Require gl_C_RESTRICT.
50386
50387 2005-10-06  Simon Josefsson  <jas@extundo.com>
50388
50389         * lib/memxor.c (memxor): Avoid casts and warnings.
50390
50391 2005-10-06  Simon Josefsson  <jas@extundo.com>
50392
50393         * lib/hmac-md5.c: New file.
50394
50395         * lib/hmac.h: New file.
50396
50397 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
50398
50399         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
50400         promotes to int, not unsigned int, to catch the AIX 5.3
50401         compiler bug.
50402
50403 2005-10-05  Simon Josefsson  <jas@extundo.com>
50404
50405         * modules/memxor: New file.
50406
50407         * modules/iconv (Files): Move config.rpath to havelib, it is used
50408         there.
50409
50410         * modules/havelib (Files): Add config.rpath.
50411
50412 2005-10-05  Simon Josefsson  <jas@extundo.com>
50413
50414         * m4/memxor.m4: New file.
50415
50416 2005-10-05  Simon Josefsson  <jas@extundo.com>
50417
50418         * lib/memxor.c (memxor): Fix compiler error.
50419
50420         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
50421         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
50422
50423         * lib/memxor.h, lib/memxor.c: New files.
50424
50425         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
50426         we assume all systems have it, suggested by Jim Meyering
50427         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
50428         any systems lack sys/socket.h; mingw32 is known to lack it, but we
50429         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
50430         same reasons.
50431
50432 2005-10-05  Simon Josefsson  <jas@extundo.com>
50433
50434         * config/srclist.txt: Add glibc bug 1423 for md5.h.
50435
50436 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
50437
50438         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
50439         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
50440         needed, since the source code now assumes these .h files.
50441
50442 2005-10-05  Derek Price  <derek@ximbiot.com>
50443
50444         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
50445
50446 2005-10-05  Bruno Haible  <bruno@clisp.org>
50447
50448         * modules/stdint (License): Change to LGPL.
50449
50450 2005-10-04  Simon Josefsson  <jas@extundo.com>
50451
50452         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
50453         D. Baushke" <mdb@gnu.org>.
50454
50455 2005-10-04  Bruno Haible  <bruno@clisp.org>
50456
50457         * lib/verify.h (verify_true): Provide alternative definition for C++.
50458
50459 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
50460
50461         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
50462         (SSIZE_MAX): New macro, if not already defined.
50463         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
50464         than 2 GiB.
50465
50466 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
50467
50468         Sync from coreutils.
50469         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
50470         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
50471         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
50472         ULLONG_MAX doesn't work with 2.7.2.1.
50473
50474 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
50475
50476         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
50477         From Ben Pfaff.
50478
50479         * modules/exclude (Depends-on): Depend on verify.
50480         * modules/strtoimax (Depends-on): Likewise.
50481         * modules/utimecmp (Depends-on): Likewise.
50482
50483 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
50484
50485         * lib/exclude.c: Include verify.h.
50486         (verify): Remove.  All callers changed to use verify.h's version.
50487         * lib/strtoimax.c: Likewise.
50488         * lib/utimecmp.c: Likewis.e
50489
50490         Sync from coreutils.
50491         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
50492         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
50493         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
50494         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
50495         bother returning ENOSYS if settimeofday or stime fails; just let
50496         them return whatever errno they want to return.
50497         * lib/utimens.c: Include unistd.h, for dup2.
50498         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
50499         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
50500
50501 2005-10-02  Jim Meyering  <jim@meyering.net>
50502
50503         Sync from coreutils.
50504         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
50505         from glibc-2.2.5 that fails for read-only files.
50506
50507 2005-10-02  Jim Meyering  <jim@meyering.net>
50508
50509         Sync from coreutils.
50510         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
50511         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
50512         `#if HAVE_CONFIG_H'.
50513         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
50514         Remove AT_FDCWD test.
50515         Do not consume the fd unless successful.
50516         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
50517         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
50518         block, so that we don't even try to compile it if settimeofday is
50519         available.  This works around a compilation failure on OSF1 V5.1,
50520         due to stime requiring a `long int*' while tv_sec is `int'.
50521
50522 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
50523
50524         Sync from coreutils.
50525         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
50526         against `yes', rather than just testing for nonempty.
50527
50528 2005-10-01  Simon Josefsson  <jas@extundo.com>
50529
50530         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
50531         and Darwin.
50532
50533         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
50534         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
50535         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
50536         freeaddrinfo and gai_strerror are declared by the POSIX headers.
50537         Check if struct addrinfo is declared.
50538
50539 2005-10-01  Simon Josefsson  <jas@extundo.com>
50540
50541         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
50542         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
50543         AI_* and EAI_* definitions.  Protect function declarations.
50544
50545 2005-10-01  Jim Meyering  <jim@meyering.net>
50546
50547         Sync from coreutils.
50548
50549         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
50550         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
50551         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
50552         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
50553         in the inet and nsl libraries.  Required on Solaris 5.7.
50554
50555 2005-10-01  Jim Meyering  <jim@meyering.net>
50556
50557         Sync from coreutils.
50558         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
50559         in the inet and nsl libraries.  Required on Solaris 5.7.
50560
50561 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
50562
50563         * lib/getdelim.c (getdelim): Remove unused variables.
50564
50565 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
50566
50567         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
50568         so that the code works even with ancient cpp.  Portability problem
50569         with GCC 2.7.2.1 reported by Thomas M.Ott.
50570
50571 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
50572
50573         * modules/regex (Depends-on): Add strcase.
50574
50575         * modules/gethostname (Licence): Change from GPL to LGPL, since
50576         gethostname.c is a trivial implementation of a standard library
50577         function.
50578         * modules/poll (License): Change from GPL to LGPL, since it's
50579         derived from LGPL code.
50580
50581 2005-09-27  Jim Meyering  <jim@meyering.net>
50582
50583         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
50584         HAVE_CONFIG_H.
50585
50586         * lib/intprops.h (signed_type_or_expr__): Define.
50587         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
50588         for unsigned types.
50589
50590 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
50591
50592         * lib/verify.h (verify_expr): Remove, replacing with:
50593         (verify_true): New macro that returns true instead of void.
50594         (verify_type__): Remove.
50595         (verify): Use verify_true rather than verify_type__.
50596
50597 2005-09-26  Bruno Haible  <bruno@clisp.org>
50598
50599         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
50600         is necessary.
50601         (lib_SOURCES): Remove mbchar.c.
50602         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
50603         (Files): Add m4/mbrtowc.m4.
50604         * modules/mbiter: Likewise.
50605         * modules/mbuiter: Likewise.
50606
50607 2005-09-26  Bruno Haible  <bruno@clisp.org>
50608
50609         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
50610         compile mbchar.c if they are not both present.
50611         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
50612         * m4/mbiter.m4 (gl_MBITER): Likewise.
50613         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
50614         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
50615         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
50616
50617 2005-09-25  Jim Meyering  <jim@meyering.net>
50618
50619         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
50620         also uses socklen_t.
50621
50622 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
50623
50624         * lib/utimens.c (ENOSYS): Define if not already defined.
50625         (futimens): Support having a null PATH if the file descriptor
50626         is nonnegative.
50627
50628         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
50629         Remove.
50630         (__attribute): Define to empty unless GCC 3.1 or later.
50631         This works around a core dump on OpenBSD 3.4, which has GCC
50632         2.95.3, which dumps core when given __attribute__(()).  It also
50633         simplifies other tests, since we really don't want to bother with
50634         worrying about which ancient version of GCC supported what.
50635         Original problem reported by Yoann Vandoorselaere, with part of
50636         the fix suggested by Derek Price.
50637
50638 2005-09-24  Jim Meyering  <jim@meyering.net>
50639
50640         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
50641         so we can once again use a positive bitfield width of 1 -- now we
50642         don't have to explain why we were using a bitfield width of 2.
50643
50644 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
50645
50646         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
50647         and similarly for the other external symbols.  Problem reported
50648         by James Gallager.
50649
50650         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
50651         bug reported by Jim Meyering.
50652
50653         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
50654         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
50655         not needed, since socklen is a prerequisite module.
50656
50657 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
50658
50659         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
50660         Problem reported by Eric Blake.
50661         (getaddrinfo): Initialize se so that it's not garbage.
50662         Redo internal storage allocation so that it doesn't make unportable
50663         assumptions about alignment.
50664         Fix a memory leak.
50665
50666         * lib/utimens.c (futimens): Use futimesat if available.
50667         Prefer it to futimes since it doesn't have the futimes bug.
50668
50669         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
50670         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
50671         Instead, declare a function that returns a pointer to an array,
50672         and use verify_type__ to declare the size of the array.
50673         Problem and germ of a solution reported by Bruno Haible.
50674         (verify_type__): Use 2, not 1, for bitfield size, to avoid
50675         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
50676
50677 2005-09-23  Jim Meyering  <jim@meyering.net>
50678
50679         Sync from coreutils.
50680         Correct build failure (socklen_t not defined) on at least
50681         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
50682         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
50683
50684 2005-09-23  Jim Meyering  <jim@meyering.net>
50685
50686         * modules/getaddrinfo (Depends-on): Add socklen.
50687
50688 2005-09-23  Bruno Haible  <bruno@clisp.org>
50689
50690         * tests/test-verify.c: New file.
50691
50692 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50693
50694         Sync from coreutils.
50695
50696         * modules/argmatch (Depends-on): Add verify.
50697         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
50698         unistd-safer.
50699         * modules/save-cwd (Depends-on): Likewise.
50700
50701         * modules/openat (Files): Add lib/openat-die.c.
50702         (Depends-on): Remove error, exitfail.
50703         Add dirname.
50704
50705         * modules/verify: New file.
50706         * MODULES.html.sh (Diagnostics <assert.h>): New section,
50707         with "verify" module.
50708
50709 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50710
50711         Sync from coreutils.
50712
50713         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
50714         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
50715         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
50716         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
50717         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
50718         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
50719         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
50720         Don't bother checking for string.h, stdlib.h, unistd.h.
50721         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
50722         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
50723         module's job.
50724         * m4/jm-macros.m4 (gl_MACROS): Likewise.
50725         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
50726
50727         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
50728         (gl_GETDATE): Use it.
50729
50730         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
50731
50732 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50733
50734         Sync from coreutils.
50735
50736         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
50737         stat-time.h.
50738         * lib/argmatch.h: Include verify.h
50739         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
50740         (ARGMATCH_ASSERT): Remove; unused.
50741         * lib/canonicalize.c: Assume STDC_HEADERS.
50742         * lib/exclude.c: Include "strcase.h".
50743         * lib/regex_internal.h [!defined _LIBC]: Likewise.
50744         * lib/getusershell.c: Include stdio--.h rather than stdio.h
50745         and stdio-safer.h.
50746         (getusershell): Call fopen, not fopen_safer.
50747         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
50748         Do not include unistd-safer.h.
50749         (save_cwd): Don't call fd_safer; no longer needed
50750         now that we include fcntl--.h.
50751
50752         * lib/getdate.y (relative_time): New type.
50753         (RELATIVE_TIME_0): New constant.
50754         (parser_control): Use relative_time instead of doing it ourselves.
50755         (%union): Add new relative_time rel member.
50756         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
50757         Now typeless.
50758         (relunit, relunit_snumber): Now of type rel.
50759         (zone, rel, relunit, get_date): Adjust to above changes.
50760
50761         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
50762         Do not include unistd-safer.h.
50763         (getloadavg): Don't call fd_safer; no longer needed
50764         now that we include fcntl--.h.
50765
50766         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
50767         (make_dir_parents): Treat ENOSYS like EEXIST.
50768
50769         Improve quality of diagnostics on restore_cwd failure.
50770         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
50771         (make_dir_parents): Last arg is now int * (for errno), not bool *.
50772         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
50773         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
50774         each time through the loop.  Do not diagnose restore_cwd failure;
50775         that is the caller's job (and perhaps the caller does not care).
50776
50777         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
50778         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
50779         If the file already exists but is not a directory, don't bother
50780         to try to make its parents.
50781         Close potential file descriptor leak if we can't chdir("/") (!).
50782         Don't always return true if chdir($PWD) fails; return true only
50783         if the requested action was done successfully (except for the
50784         chdir($PWD)).
50785         Don't log final directory unless we actually made it.
50786         Refactor to avoid duplicate code to fix up permissions.
50787         Don't attempt to fix up parent permissions if chdir($PWD) fails.
50788
50789         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
50790         to make it a bit faster and (I hope) clearer.
50791         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
50792         Fix bug in formats like %2N.
50793
50794         * lib/verify.h: New file.
50795
50796 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
50797
50798         Sync from coreutils.
50799         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
50800
50801 2005-09-22  Jim Meyering  <jim@meyering.net>
50802
50803         Sync from coreutils.
50804
50805         * m4/lstat.m4 (gl_FUNC_LSTAT):
50806         Use AC_LIBSOURCES to require lstat.c and lstat.h.
50807         Remove obsolete comment.
50808         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
50809         * m4/xstrtod.m4: Likewise.
50810
50811         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
50812
50813 2005-09-22  Jim Meyering  <jim@meyering.net>
50814
50815         Sync from coreutils.
50816
50817         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
50818
50819         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
50820         the .tm_year member, since otherwise gcc-4.0 would now warn about
50821         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
50822
50823         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
50824         order to avoid an unsuppressible warning from gcc on 64-bit systems.
50825
50826         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
50827         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
50828         when run in a time zone for which daylight savings time is in effect
50829         for the starting date.
50830
50831         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
50832         stop us from restricting permissions of just-created absolute-named
50833         directories.
50834         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
50835         to restore initial working directory.
50836         * lib/mkdir-p.c (make_dir_parents): New parameter:
50837         different_working_dir, to tell caller if/when we change the working
50838         directory and are unable to return to the initial one.
50839         * lib/mkdir-p.h (make_dir_parents): Update prototype.
50840         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
50841         `return false'.  This fixes a bug introduced on 2004-07-30.
50842
50843         * lib/openat.c (fdopendir): Be sure to close the supplied
50844         file descriptor before returning.  This makes our replacement
50845         implementation a little closer to Solaris's, where fdopendir
50846         ties the file descriptor to the returned DIR* pointer.
50847         * lib/openat.c (unlinkat): New function.
50848         * lib/openat.h (unlinkat): Add prototype.
50849         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
50850         (openat_restore_fail): Rename from openat_restore_die.
50851         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
50852
50853         Provide an alternative to exiting immediately upon save_cwd or
50854         restore_cwd failure.  Now, an application can arrange e.g.,
50855         to perform a longjump in that case.
50856         * lib/openat.c: Include dirname.h.
50857         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
50858         (rpl_openat, fdopendir, fstatat): Call openat_save_die
50859         and openat_restore_die rather than calling error directly.
50860         Don't include "error.h" or "exitfail.h"; they're no longer needed.
50861
50862         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
50863         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
50864         define.
50865
50866         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
50867         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
50868                             int utc, int nanoseconds);
50869         Background:
50870         date should not have to allocate a megabyte of virtual memory to
50871         handle a format argument like +%1048575T.  When implemented with
50872         strftime, it must allocate such a buffer, use strftime to fill it
50873         in, print it, then free it.
50874         With fprintftime, it simply prints everything and exits.
50875         With no need for memory allocation, that's one fewer way to fail.
50876         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
50877         optional field width, not before, so we accept %9:z, not %:9z.
50878         (my_strftime): Be sure to use L_('x') for literals.
50879
50880         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
50881         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
50882         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
50883         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
50884         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
50885         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
50886         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
50887         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
50888         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
50889         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
50890         * lib/xgethostname.c, lib/xreadlink.c:
50891         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
50892
50893         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
50894         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
50895         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
50896         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
50897         and don't include <sys/file.h>).
50898
50899 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
50900
50901         Sync from coreutils.
50902
50903         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
50904         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
50905         [!LDAV_DONE]: Avoid unused variable warning.
50906
50907 2005-09-21  Bruno Haible  <bruno@clisp.org>
50908
50909         * lib/unicodeio.h (unicode_to_mb): New declaration.
50910
50911 2005-09-20  Derek Price  <derek@ximbiot.com>
50912
50913         * lib/getaddrinfo.c: Don't include <netdb.h> included from
50914         getaddrinfo.h.
50915
50916 2005-09-20  Bruno Haible  <bruno@clisp.org>
50917
50918         * gnulib-tool: Remove trailing slashes from the values specified for
50919         --source-base, --m4-base, --tests-base, --aux-dir.
50920         Suggested by Simon Josefsson <jas@extundo.com>.
50921
50922 2005-09-20  Bruno Haible  <bruno@clisp.org>
50923
50924         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
50925         func_modules_to_filelist, func_import, func_create_testdir): Make all
50926         sorting results locale-independent, so that gnulib-cache.m4 doesn't
50927         change when gnulib-tool is invoked in a different locale.
50928
50929 2005-09-19  Simon Josefsson  <jas@extundo.com>
50930
50931         * m4/socklen.m4: Fix typo.
50932
50933 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
50934
50935         Use a consistent style for including <config.h>.
50936         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
50937         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
50938         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
50939         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
50940         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
50941         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
50942         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
50943         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
50944         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
50945         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
50946         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
50947         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
50948         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
50949         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
50950         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
50951         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
50952         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
50953         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
50954         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
50955         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
50956         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
50957         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
50958         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
50959         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
50960         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
50961         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
50962         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
50963         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
50964         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
50965         lib/xstrtoumax.c, lib/yesno.c:
50966         Standardize inclusion of config.h.
50967         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
50968         lib/inttostr.h:  Removed inclusion of config.h from header files.
50969         * lib/inttostr.c:  Adjusted in-tree users.
50970         * lib/timespec.h: Remove superfluous warning to include config.h.
50971         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
50972         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
50973         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
50974         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
50975         config.h with HAVE_CONFIG_H.
50976
50977 2005-09-19  Jim Meyering  <jim@meyering.net>
50978
50979         * modules/pathmax (License): Change to LGPL.
50980
50981 2005-09-19  Derek Price  <derek@ximbiot.com>
50982
50983         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
50984
50985 2005-09-19  Bruno Haible  <bruno@clisp.org>
50986
50987         * gnulib-tool (import): Provide default for --tests-base.
50988
50989 2005-09-19  Bruno Haible  <bruno@clisp.org>
50990
50991         * doc/quote.texi: New file, extracted from gnulib.texi.
50992         * doc/ctime.texi: New file, extracted from gnulib.texi.
50993         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
50994         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
50995         * doc/gnulib.texi: Include them.
50996
50997 2005-09-18  Bruno Haible  <bruno@clisp.org>
50998
50999         Portability fix.
51000         * gnulib-tool (func_readlink): New function.
51001         (func_ln_if_changed): Use it.
51002
51003 2005-09-18  Bruno Haible  <bruno@clisp.org>
51004
51005         * gnulib-tool: Support --with-tests also with --import.
51006         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
51007         (func_import): Use variables $testsbase and $inctests. Emit a
51008         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
51009         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
51010         SUBDIRS += $testsdir.
51011         (func_create_testdir): Update.
51012
51013 2005-09-18  Bruno Haible  <bruno@clisp.org>
51014
51015         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
51016         instead of $dry_run.
51017         (func_cp_if_changed, func_mv_if_changed): Remove functions.
51018         (func_ln_if_changed): Don't handle dry-run here.
51019         (func_import): In dry-run mode, detect more precisely which actions
51020         would be performed, and don't use "...ing" verbs.
51021
51022 2005-09-18  Bruno Haible  <bruno@clisp.org>
51023
51024         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
51025         (func_import): Use join on two temporary files instead of three nested
51026         loops, in order to determine which files are new or old.
51027
51028 2005-09-18  Bruno Haible  <bruno@clisp.org>
51029
51030         * gnulib-tool (func_import): Comment out code that spits out the
51031         new files with --dry-run.
51032
51033 2005-09-18  Bruno Haible  <bruno@clisp.org>
51034
51035         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
51036
51037 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
51038
51039         * lib/stat-time.h: New file.
51040         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
51041         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
51042         in a different way.
51043         (timespec_cmp): New function.
51044         * lib/utimecmp.c: Include stat-time.h.
51045         (SYSCALL_RESOLUTION): Depend on whether various struct stat
51046         members exist, not on the obsolescent ST_MTIM_NSEC.
51047         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
51048
51049 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
51050
51051         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
51052
51053 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
51054
51055         * MODULES.html.sh (File system functions): Add stat-time.
51056         * modules/stat-time: New file.
51057         * modules/timespec (Files): Remove m4/st_mtim.m4; this
51058         is now done in a different way, by the stat-time module.
51059         * modules/utimecmp (Depends-on): Add stat-time.
51060
51061 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
51062
51063         * m4/st_mtim.m4: Remove.  Superseded by...
51064         * m4/stat-time.m4: New file.
51065         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
51066         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
51067
51068 2005-09-15  Derek Price  <derek@ximbiot.com>
51069
51070         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
51071
51072 2005-09-15  Derek Price  <derek@ximbiot.com>
51073
51074         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
51075         * lib/regex_internal.c: Ditto, using this...
51076         (__GNUC_PREREQ): ...new macro.
51077         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
51078         using...
51079         (__GNUC_PREREQ): ...this new macro.
51080
51081         * lib/strstr.h: Include string.h. Define strstr as a macro here.
51082
51083 2005-09-15  Derek Price  <derek@ximbiot.com>
51084             Paul Eggert  <eggert@cs.ucla.edu>
51085
51086         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
51087         changes, consolidating in...
51088         * lib/regex_internal.h: ...this file.
51089
51090 2005-09-13  Jim Meyering  <jim@meyering.net>
51091
51092         * lib/canon-host.c: Filter through gnu indent and reword comments
51093         slightly.
51094         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
51095
51096 2005-09-13  Derek Price  <derek@ximbiot.com>
51097
51098         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
51099         failure.
51100         Reported by Jim Meyering  <jim@meyering.net>.
51101
51102 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
51103
51104         * lib/base64.c: Typo.
51105         (base64_encode): Put b64str in initialized data section.
51106
51107 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
51108
51109         Merge glibc and coreutils changes into gnulib, plus a few
51110         extra fixes.
51111         * lib/md5.c: Use #error rather than a string.
51112         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
51113         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
51114         (__attribute__): Define to empty for non recent-GCC.
51115         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
51116         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
51117         Renamed from their non-__ counterparts, with new macros replacing
51118         them if not _LIBC.  Add __THROW attribute.
51119         (rol): Remove.
51120         (struct md5_ctx): Align buffer if using GCC.
51121         * lib/sha1.h (struct sha1_ctx): Likewise.
51122         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
51123         The old name was backwards.
51124         (NOTSWAP): Remove; not used.
51125         (rol): New macro, moved here from md5.h.
51126         (sha1_process_block): Remove a FIXME that doesn't make sense.
51127
51128 2005-09-12  Derek Price  <derek@ximbiot.com>
51129
51130         Return usable errors from canon-host.
51131         * lib/canon-host.h: New file.
51132         * lib/canon-host.c (canon_host): Wrap...
51133         (canon_host_r): ...this new function, which now relies exclusively on
51134         getaddrinfo.
51135         (ch_strerror): New function.
51136         (last_cherror): New global.
51137         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
51138         interface.
51139         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
51140         void *.
51141         (freeaddrinfo): Free ai->ai_canonname when set.
51142
51143 2005-09-12  Derek Price  <derek@ximbiot.com>
51144
51145         Make canon-host require getaddrinfo.
51146         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
51147         AC_LIBSOURCE canon-host.h.  Call...
51148         (gl_PREREQ_CANON_HOST): ...this new function, which requires
51149         gl_GETADDRINFO.
51150         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
51151
51152 2005-09-12  Derek Price  <derek@ximbiot.com>
51153
51154         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
51155         LGPL.
51156         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
51157
51158 2005-09-12  Derek Price  <derek@ximbiot.com>
51159
51160         * lib/gai_strerror.c: Include config.h when available.  Include
51161         getaddrinfo.h before other headers to test interface.
51162         Reported by Larry Jones <lawrence.jones@ugs.com>.
51163
51164 2005-09-12  Derek Price  <derek@ximbiot.com>
51165             Paul Eggert  <eggert@cs.ucla.edu>
51166
51167         * modules/glob (Files): Add glob-libc.h.
51168
51169 2005-09-12  Derek Price  <derek@ximbiot.com>
51170             Paul Eggert  <eggert@cs.ucla.edu>
51171
51172         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
51173         glob_.h, glob-libc.h.
51174         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
51175
51176 2005-09-12  Derek Price  <derek@ximbiot.com>
51177             Paul Eggert  <eggert@cs.ucla.edu>
51178
51179         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
51180         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
51181         protecting things that should be done only in gnulib contexts.
51182         * lib/glob_.h: New file, containing only the glob things needed for
51183         gnulib.
51184         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
51185         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
51186         (glob, globfree, glob_pattern_p): Now defined simply in terms of
51187         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
51188         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
51189         and to respect the namespace rules better.
51190
51191 2005-09-08  Simon Josefsson  <jas@extundo.com>
51192
51193         * modules/socklen: New file.
51194
51195 2005-09-08  Simon Josefsson  <jas@extundo.com>
51196
51197         * m4/socklen.m4: New file.
51198
51199 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
51200
51201         * modules/utimens (Files): Add m4/utimbuf.m4, since
51202         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
51203         Reported by Sergey Poznyakoff.
51204
51205 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
51206
51207         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
51208         definitions, since that's the preferred style in glibc.
51209         Fix a minor spacing issue, and update copyright notice to match
51210         glibc's.
51211
51212 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
51213
51214         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
51215
51216 2005-09-06  Simon Josefsson  <jas@extundo.com>
51217
51218         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
51219         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
51220
51221 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
51222
51223         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
51224         warning.
51225
51226 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
51227
51228         * config/srclist.txt: Add glibc bug 1302.
51229
51230 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
51231
51232         Change bitset word type from unsigned int to unsigned long int,
51233         as this has better performance on typical 64-bit hosts.
51234         Port bitset code to hosts with unusual word sizes.
51235         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
51236         (build_collating_symbol):
51237         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
51238         argument is a bitset.  This is merely a style issue, but it makes
51239         it clearer that an entire array is expected.
51240         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
51241         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
51242         Port to the case where bitset_word is not the same as unsigned int.
51243         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
51244         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
51245         Likewise.
51246         * lib/regexec.c (check_dst_limits_calc_pos_1,
51247         check_subexp_matching_top):
51248         (build_trtable, group_nodes_into_DFAstates):
51249         Likewise.
51250         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
51251         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
51252         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
51253         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
51254         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
51255         * lib/regcomp.c (optimize_subexps, lower_subexp):
51256         Work even if bitset_word has holes in its bitwise representation.
51257         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
51258         * lib/regexec.c (check_dst_limits_calc_pos_1,
51259         check_subexp_matching_top):
51260         Likewise.
51261         * lib/regex_internal.c (re_string_reconstruct):
51262         Don't assume UCHAR_MAX == 255.
51263         * lib/regex_internal.h (bitset_set_all): Likewise.
51264         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
51265         All uses changed.
51266         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
51267         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
51268         All uses changed.
51269         (BITSET_WORD_MAX): New macro.
51270         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
51271         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
51272         (bitset_empty, bitset_copy):
51273         Prefer sizeof (bitset) to multiplying it out ourselves.
51274         (bitset_not_merge): Remove; unused.
51275         (bitset_contain): Return bool, not unsigned int with one bit on.
51276         All callers changed.
51277         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
51278         alignment than re_node_set; do this by defining a new internal
51279         type struct dests_alloc and using it to allocate memory.
51280
51281 2005-09-05  Bruno Haible  <bruno@clisp.org>
51282
51283         * gnulib-tool (func_import): Fix comparison in handling of symbolic
51284         links.
51285
51286 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
51287
51288         * modules/size_max (Makefile.am): Add size_max.h
51289
51290 2005-09-04  Derek Price  <derek@ximbiot.com>
51291
51292         * gnulib-tool (func_import): Fix reversed $symbolic logic.
51293
51294 2005-09-03  Simon Josefsson  <jas@extundo.com>
51295
51296         * gnulib-tool: Fix typo.
51297
51298 2005-09-03  Simon Josefsson  <jas@extundo.com>
51299
51300         * config/srclist.txt: Add glibc bug 1293.
51301
51302 2005-09-03  Derek Price  <derek@ximbiot.com>
51303
51304         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
51305         From Larry Jones <lawrence.jones@ugs.com>.
51306
51307 2005-09-02  Simon Josefsson  <jas@extundo.com>
51308
51309         * modules/socklen: New file.
51310
51311 2005-09-02  Simon Josefsson  <jas@extundo.com>
51312
51313         * modules/havelib: New module.
51314
51315         * modules/gettext, modules/iconv, modules/lock, modules/readline:
51316         Use havelib.
51317
51318 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
51319
51320         Check for arithmetic overflow when calculating sizes, to prevent
51321         some buffer-overflow issues.  These patches are conservative, in the
51322         sense that when I couldn't determine whether an overflow was possible,
51323         I inserted a run-time check.
51324         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
51325         macros.
51326         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
51327         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
51328         (re_xnrealloc, re_x2nrealloc): New inline functions.
51329         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
51330         parse_bracket_exp):
51331         (build_equiv_class, build_charclass): Check for arithmetic overflow
51332         in size expression calculations.
51333         * lib/regex_internal.c (re_string_realloc_buffers):
51334         (build_wcs_upper_buffer, re_node_set_add_intersect):
51335         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
51336         (re_dfa_add_node, register_state): Likewise.
51337         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
51338         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
51339         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
51340         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
51341
51342 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
51343
51344         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
51345         m4/ulonglong.m4.  Problem reported by Martin Lambers.
51346
51347 2005-09-02  Bruno Haible  <bruno@clisp.org>
51348
51349         Support for lib vs. lib64 distinction on biarch platforms.
51350         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
51351         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
51352         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
51353
51354 2005-09-02  Bruno Haible  <bruno@clisp.org>
51355
51356         * gnulib-tool (import): In the other first-use case, provide defaults
51357         as well.
51358
51359 2005-09-02  Bruno Haible  <bruno@clisp.org>
51360
51361         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
51362         patches not yet found in the latest gettext release.
51363
51364 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
51365
51366         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
51367         to avoid a collision with bits/local_lim.h in glibc.
51368         All uses changed.  Problem reported by Dmitry V. Levin in
51369         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
51370
51371         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
51372         bugs in int versus size_t comparisons.
51373         (re_string_context_at): Fix bug where the code assumed that
51374         Idx is signed.
51375
51376         Use bool where appropriate.
51377         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
51378         All callers changed.
51379         (calc_eclosure_iter): Likewise, for ROOT arg.
51380         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
51381         (build_charclass_op): Likewise, for NON_MATCH arg.
51382         * lib/regex_internal.c (re_string_allocate, re_string_construct):
51383         (re_string_construct_common): Likewise, for ICASE arg.
51384         * lib/regexec.c (re_search_2_stub, re_search_stub):
51385         Likewise, for RET_LEN arg.
51386         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
51387         (set_regs): Likewise, for FL_BACKTRACK arg.
51388         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
51389         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
51390         (calc_eclosure_iter, parse_bracket_exp):
51391         Use bool for internal variables that are booleans.
51392         * lib/regexec.c (re_search_internal, check_matching,
51393         proceed_next_node):
51394         (set_regs, build_sifted_states, sift_states_bkref):
51395         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
51396         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
51397         (find_collation_sequence_value):
51398         Likewise.
51399         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
51400         (re_node_set_compare):
51401         Return bool, not int. All callers changed.
51402         * lib/regexec.c (check_halt_node_context, check_dst_limits):
51403         (build_trtable, check_node_accept): Likewise.
51404         * lib/regex_internal.h: Include stdbool.h.
51405
51406         Fix bugs uncovered when converting to bool.
51407         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
51408         failure instead of charging ahead blindly.
51409         * lib/regex_internal.c (register_state): Likewise.
51410         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
51411         for freeing internal storage.
51412         (group_nodes_into_DFA_states): Use unsigned int, not int, for
51413         bitset pieces used as boolean, to avoid undefined behavior
51414         on hosts that do int overflow checking.
51415
51416 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
51417
51418         * config/srclist.txt: Add glibc bugs 1285-1287.
51419
51420 2005-09-01  Jim Meyering  <jim@meyering.net>
51421
51422         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
51423         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
51424         Require gl_STAT_MACROS, too.
51425
51426 2005-09-01  Bruno Haible  <bruno@clisp.org>
51427
51428         * gnulib-tool (import): In the first-use case, provide defaults.
51429
51430 2005-09-01  Bruno Haible  <bruno@clisp.org>
51431
51432         * gnulib-tool (func_import): Remove the .tmp files.
51433
51434 2005-09-01  Bruno Haible  <bruno@clisp.org>
51435
51436         * gnulib-tool (func_import): Fix handling of symbolic links.
51437
51438 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
51439
51440         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
51441         old glibc regex code mishandles strings longer than 2**31 bytes.
51442         This patch fixes this when the regex code is used in gnulib
51443         (i.e., outside glibc).
51444
51445         This patch should not affect the use of the regex code inside
51446         glibc.  No doubt this problem also needs to be handled for glibc
51447         as well, but the result will be an incompatible change to the
51448         glibc ABI, and the old ABI will have to be supported too.  That
51449         can be the the subject for another patch.
51450
51451         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
51452         governing whether the rest of this patch is active.  By default,
51453         the macro is disabled and the patch has no effect.
51454         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
51455         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
51456         (struct re_pattern_buffer, re_search, re_search_2, re_match):
51457         (re_match_2, re_set_registers): Use the new types.
51458         * lib/regex_internal.h (Idx, re_hashval_t): New types.
51459         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
51460         New macros.
51461         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
51462         (re_string_context_at, bin_tree_t, re_dfastate_t):
51463         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
51464         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
51465         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
51466         (re_string_char_size_at, re_string_wchar_at):
51467         (re_string_elem_size_at):
51468         Use the new types and macros to port to 64-bit hosts.
51469         Use unsigned types for internal values, so that the code
51470         mostly works even for arrays larger than SSIZE_MAX.
51471         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
51472         (search_duplicated_node, calc_eclosure_iter, fetch_number):
51473         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
51474         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
51475         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
51476         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
51477         (calc_inveclosure, parse_dup_op, build_range_exp):
51478         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
51479         (fetch_number, create_token_tree, mark_opt_subexp):
51480         Likewise.
51481         * lib/regex_internal.c (re_string_construct_common,
51482         create_ci_newstate):
51483         (create_cd_newstate, re_string_allocate, re_string_construct):
51484         (re_string_realloc_buffers, build_wcs_upper_buffer):
51485         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
51486         (re_string_reconstruct, re_string_peek_byte_case):
51487         (re_string_fetch_byte_case, re_string_context_at):
51488         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
51489         (re_node_set_init_copy, re_node_set_add_intersect):
51490         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
51491         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
51492         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
51493         (re_acquire_state, re_acquire_state_context, register_state):
51494         Likewise.
51495         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
51496         search_cur_bkref_entry):
51497         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
51498         (re_search_internal, re_search_2_stub, re_search_stub)
51499         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
51500         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
51501         (update_cur_sifted_state, check_dst_limits):
51502         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
51503         (check_subexp_limits, sift_states_bkref, merge_state_array):
51504         (check_subexp_matching_top, get_subexp, get_subexp_sub):
51505         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
51506         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
51507         (expand_bkref_cache, check_node_accept_bytes):
51508         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
51509         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
51510         (acquire_init_state_context, check_halt_node_context):
51511         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
51512         (sift_states_backward, clean_state_log_if_needed):
51513         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
51514         (find_recover_state, transit_state_sb, transit_state_mb):
51515         (transit_state_bkref, build_trtable, match_ctx_clean):
51516         Likewise.
51517         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
51518         to work around an assumption that REG_MISSING is negative.
51519
51520         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
51521         (seek_collating_symbol_entry) [defined _LIBC]:
51522         (lookup_collation_sequence_value) [defined _LIBC]:
51523         (build_range_exp, build_collating_symbol) [defined _LIBC]:
51524         Use prototypes rather than old-style function definitions.
51525         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
51526         (transit_state_sb) [0]:
51527         (find_collation_sequence_value) [defined _LIBC]: Likewise.
51528
51529         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
51530         rm_eo.
51531
51532         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
51533         (optimize_subexps, lower_subexp):
51534         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
51535         since the signed shift might overflow.  Use 1u<<31 instead.
51536         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
51537         Likewise.
51538         * lib/regexec.c (check_dst_limits_calc_pos_1,
51539         check_subexp_matching_top): Likewise.
51540
51541         * lib/regcomp.c (optimize_subexps, lower_subexp):
51542         Use CHAR_BIT rather than 8, for clarity.
51543         * lib/regexec.c (check_dst_limits_calc_pos_1):
51544         (check_subexp_matching_top): Likewise.
51545         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
51546         have to worry about portability issues when shifting it left.
51547         Remove no-longer-needed test for table_size > 0.
51548         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
51549         in a word, as the resulting behavior is undefined.
51550         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
51551         in one case, a <= should have been an <, and in another case the
51552         whole test was missing.
51553         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
51554         the standard name CHAR_BIT.
51555         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
51556         this is not true on one's complement and signed-magnitude hosts.
51557
51558         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
51559         next_last_offset.
51560         (struct re_dfa_t): Remove unused member states_alloc.
51561         * lib/regcomp.c (init_dfa): Don't initialize unused members.
51562
51563 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
51564
51565         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
51566         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
51567         and large-file glibc and in 32-bit large-file Solaris.
51568
51569 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
51570
51571         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
51572         lengths fit in regoff_t; this isn't true if regoff_t is the same
51573         width as size_t.
51574         * lib/regex.c (re_search_internal): 5th arg is LAST_START
51575         (= START + RANGE) instead of RANGE.  This avoids overflow
51576         problems when regoff_t is the same width as size_t.
51577         All callers changed.
51578         (re_search_2_stub): Check for overflow when adding the
51579         sizes of the two strings.
51580         (re_search_stub): Check for overflow when adding START
51581         to RANGE; if it occurs, substitute the extreme value.
51582
51583 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
51584
51585         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
51586
51587 2005-08-31  Jim Meyering  <jim@meyering.net>
51588
51589         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
51590         a pointer-to-const.
51591         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
51592         (register_state): Likewise.
51593         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
51594         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
51595         (group_nodes_into_DFAstates): Likewise.
51596
51597 2005-08-31  Jim Meyering  <jim@meyering.net>
51598
51599         * check-module: Add a FIXME comment.
51600
51601 2005-08-31  Eric Blake  <ebb9@byu.net>
51602
51603         * modules/unistd-safer (Files): Add unistd--.h.
51604         * modules/stdio-safer (Files): Add stdio--.h.
51605
51606 2005-08-31  Derek Price  <derek@ximbiot.com>
51607
51608         * lib/getdelim.c (getdelim): Return EOF on EOF.
51609         Reported by Larry Jones <lawrence.jones@ugs.com>.
51610
51611 2005-08-31  Bruno Haible  <bruno@clisp.org>
51612
51613         Avoid unnecessary diffs in the generated lib/Makefile.am.
51614         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
51615         the generated files.
51616         (func_import): Don't set cmd.
51617
51618 2005-08-31  Bruno Haible  <bruno@clisp.org>
51619
51620         * lib/strstr.c: Include <stddef.h>, for NULL.
51621         * lib/strcasestr.c: Likewise.
51622         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
51623
51624 2005-08-31  Bruno Haible  <bruno@clisp.org>
51625
51626         * gnulib-tool: New option --macro-prefix.
51627         (func_import): Use macro_prefix.
51628         (import): Handle option --macro-prefix.
51629
51630 2005-08-31  Bruno Haible  <bruno@clisp.org>
51631
51632         * gnulib-tool (import): Rename most ac_* variables to cached_*.
51633         Also use new variables cached_lgpl, cached_libtool.
51634
51635 2005-08-31  Bruno Haible  <bruno@clisp.org>
51636
51637         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
51638         always instantiating them.
51639
51640 2005-08-31  Bruno Haible  <bruno@clisp.org>
51641
51642         * gnulib-tool (func_import): Read the previous cached settings
51643         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
51644         earlier added by gnulib but are now dropped. Warn when a gnulib file
51645         overwrites a non-gnulib file.
51646
51647 2005-08-31  Bruno Haible  <bruno@clisp.org>
51648
51649         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
51650         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
51651         projects that don't keep autogenerated files in CVS. Put into
51652         actioncmd only the specified modules, not the transitive closure.
51653
51654 2005-08-31  Bruno Haible  <bruno@clisp.org>
51655
51656         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
51657         Create directories that shall be filled.
51658         (import): Don't look for gl_* macros in configure.ac. Recurse across
51659         all directories containing a gnulib-cache.m4 files, if meaningful.
51660
51661 2005-08-31  Bruno Haible  <bruno@clisp.org>
51662
51663         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
51664         (import): Set seen_libtool when we see gl_LIBTOOL.
51665
51666 2005-08-31  Bruno Haible  <bruno@clisp.org>
51667
51668         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
51669         declaration macro definitions from generated gnulib.m4.
51670
51671 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
51672
51673         * lib/iconvme.h: Add prototype for iconv_alloc.
51674
51675 2005-08-29  Simon Josefsson  <jas@extundo.com>
51676
51677         * lib/iconvme.c: Fix errno.
51678
51679 2005-08-29  Bruno Haible  <bruno@clisp.org>
51680
51681         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
51682         that it works when the directory contains spaces.
51683
51684 2005-08-29  Bruno Haible  <bruno@clisp.org>
51685
51686         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
51687
51688 2005-08-29  Bruno Haible  <bruno@clisp.org>
51689
51690         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
51691         Emit more advice.
51692
51693 2005-08-29  Bruno Haible  <bruno@clisp.org>
51694         and Stepan Kasal  <kasal@ucw.cz>
51695
51696         * check-module: If more parameters are given, check each of them
51697         separately; add more exceptions, as noted by Jim Meyering.
51698         (check_module): New procedure.
51699         (%exempt_header): Now contains all exceptions.
51700
51701 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
51702
51703         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
51704
51705 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
51706
51707         * lib/iconvme.c: Split iconv_string into iconv_alloc.
51708
51709 2005-08-28  Bruno Haible  <bruno@clisp.org>
51710
51711         * m4/gnulib-tool.m4: New file.
51712
51713 2005-08-27  Jim Meyering  <jim@meyering.net>
51714
51715         * modules/unistd-safer (Files): Add pipe-safer.c.
51716         * modules/fcntl-safer (Files): Add creat-safer.c.
51717
51718 2005-08-27  Jim Meyering  <jim@meyering.net>
51719
51720         * m4/stdlib-safer.m4: New file.  From coreutils.
51721         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
51722         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
51723         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
51724         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
51725         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
51726
51727 2005-08-27  Jim Meyering  <jim@meyering.net>
51728
51729         * lib/fopen-safer.c: Merge minor changes from coreutils.
51730         * lib/dup-safer.c: Likewise.
51731         * lib/fd-safer.c: Likewise.
51732
51733         Merge from coreutils.
51734         * lib/stdio--.h: New file.
51735         * lib/stdlib--.h: New file.
51736         * lib/mkstemp-safer.c: New file.
51737
51738         GNU tar needs these.
51739         * lib/pipe-safer.c: New file.
51740         * lib/creat-safer.c: New file.
51741         * lib/fcntl--.h (creat): Define to creat_safer.
51742         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
51743         * lib/unistd--.h (pipe): Define to pipe_safer.
51744         * lib/unistd-safer.h: Declare pipe_safer.
51745
51746 2005-08-26  Simon Josefsson  <jas@extundo.com>
51747
51748         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
51749         Haible <bruno@clisp.org>.
51750
51751 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
51752
51753         * lib/regex_internal.h: Remove all references to
51754         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
51755         or better.
51756         (bitset_not, bitset_merge, bitset_not_merge):
51757         (bitset_mask, re_string_allocate, re_string_construct):
51758         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
51759         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
51760         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
51761         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
51762         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
51763         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
51764         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
51765         (re_acquire_state_context):
51766         Remove unnecessary forward decls.
51767         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
51768         Put __attribute at function definition,
51769         now that the function decl has been removed.
51770         * lib/regex_internal.c (re_string_peek_byte_case):
51771         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
51772         Likewise.
51773
51774 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
51775
51776         * m4/regex.m4: Add AC_PREREQ(2.50).
51777         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
51778
51779 2005-08-25  Simon Josefsson  <jas@extundo.com>
51780
51781         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
51782         __fsetlocking.
51783
51784 2005-08-25  Simon Josefsson  <jas@extundo.com>
51785
51786         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
51787         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
51788         GLIBC specific code.
51789
51790 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51791
51792         Make regex safe for g++.  This fixes one real bug (an "err"
51793         that should have been "*err").  g++ problem reported by
51794         Sam Steingold.
51795         * lib/regex_internal.h (re_calloc): New macro, consistent with
51796         re_malloc etc.  All callers of calloc changed to use re_calloc.
51797         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
51798         not int.  All callers changed.
51799         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
51800         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
51801         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
51802         (find_recover_state): Change "err" to "*err"; this fixes what
51803         appears to be a real bug.
51804         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
51805         versus int.
51806
51807 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51808
51809         * modules/regex (Depends-on): Add malloc, since the code
51810         assumes that !malloc(0) means failure.
51811
51812 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51813
51814         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
51815
51816         alloca modernization/simplification for regex.
51817         * lib/regex.c: Remove portability cruft for alloca.  This no longer
51818         needs to be at the start of the file, and can be moved into
51819         regex_internal.h and simplified.
51820         * lib/regex_internal.h: Include <alloca.h>.
51821         (__libc_use_alloca) [!defined _LIBC]: New macro.
51822         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
51823         now works outside glibc.
51824
51825 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
51826
51827         * config/srclist.txt: Add glibc bugs 1241, 1245.
51828
51829 2005-08-25  Jim Meyering  <jim@meyering.net>
51830
51831         * lib/open-safer.c: Include <config.h>.
51832         Otherwise, we'd lose LARGEFILE support in any file using
51833         e.g. "fcntl--.h"
51834
51835 2005-08-25  Bruno Haible  <bruno@clisp.org>
51836
51837         * m4/minmax.m4: Require autoconf 2.52.
51838         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
51839         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
51840         alternatives of translit over the alphabet.
51841         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
51842
51843 2005-08-24  Simon Josefsson  <jas@extundo.com>
51844
51845         * tests/test-getpass.c: New file.
51846
51847 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
51848
51849         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
51850         for GNU regex features.
51851
51852 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
51853
51854         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
51855         * lib/regex.h (regerror): Likewise.
51856
51857         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
51858         requires this.  (The code never needed it.)
51859
51860         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
51861         All uses of recently-renamed identifiers changed to use the new,
51862         POSIX-compliant names.  The code will build and run just fine
51863         without these changes, but it's better to eat our own dog food
51864         and use the standard-conforming names.
51865
51866         * lib/regex.h: Fix a multitude of POSIX name space violations.
51867         These changes have an effect only for programs that define
51868         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
51869         do not change anything for programs compiled in the normal way.
51870         Also, there is no effect on the ABI.
51871
51872         (_REGEX_SOURCE): New macro.
51873         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
51874         defined and _GNU_SOURCE is not; this fixes a name space violation.
51875
51876         Rename the following macros to obey POSIX requirements.
51877         The old names are still visible as macros if _REGEX_SOURCE is defined.
51878         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
51879         RE_BACKSLASH_ESCAPE_IN_LISTS.
51880         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
51881         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
51882         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
51883         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
51884         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
51885         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
51886         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
51887         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
51888         (REG_INTERVALS): renamed from RE_INTERVALS.
51889         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
51890         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
51891         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
51892         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
51893         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
51894         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
51895         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
51896         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
51897         RE_UNMATCHED_RIGHT_PAREN_ORD.
51898         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
51899         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
51900         (REG_DEBUG): renamed from RE_DEBUG.
51901         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
51902         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
51903         unusual, since we can't clash with the POSIX REG_ICASE.
51904         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
51905         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
51906         (REG_NO_SUB): renamed from RE_NO_SUB.
51907         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
51908         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
51909         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
51910         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
51911         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
51912         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
51913         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
51914         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
51915         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
51916         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
51917         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
51918         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
51919         RE_SYNTAX_POSIX_MINIMAL_BASIC.
51920         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
51921         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
51922         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
51923         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
51924         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
51925         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
51926         (REG_FIXED): Renamed from REGS_FIXED.
51927         (REG_NREGS): Renamed from RE_NREGS.
51928
51929         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
51930         of other REG_* macros, since POSIX says the user is allowed to
51931         #undef these macros selectively.
51932
51933         (reg_errcode_t): Update comment stating what other tables need
51934         to be consistent.
51935
51936         Rename the following enum values to obey POSIX requirements.
51937         The old names are still visible as macros.
51938         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
51939         is not defined, since GNU is supposed to be a superset of POSIX as
51940         much as possible, and since we want reg_errcode_t to be a signed
51941         type for implementation consistency.
51942         (_REG_NOERROR): Renamed from REG_NOERROR.
51943         (_REG_NOMATCH): Renamed from REG_NOMATCH.
51944         (_REG_BADPAT): Renamed from REG_BADPAT.
51945         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
51946         (_REG_ECTYPE): Renamed from REG_ECTYPE.
51947         (_REG_EESCAPE): Renamed from REG_EESCAPE.
51948         (_REG_ESUBREG): Renamed from REG_ESUBREG.
51949         (_REG_EBRACK): Renamed from REG_EBRACK.
51950         (_REG_EPAREN): Renamed from REG_EPAREN.
51951         (_REG_EBRACE): Renamed from REG_EBRACE.
51952         (_REG_BADBR): Renamed from REG_BADBR.
51953         (_REG_ERANGE): Renamed from REG_ERANGE.
51954         (_REG_ESPACE): Renamed from REG_ESPACE.
51955         (_REG_BADRPT): Renamed from REG_BADRPT.
51956         (_REG_EEND): Renamed from REG_EEND.
51957         (_REG_ESIZE): Renamed from REG_ESIZE.
51958         (_REG_ERPAREN): Renamed from REG_ERPAREN.
51959         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
51960         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
51961         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
51962         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
51963
51964         (_REG_RE_NAME, _REG_RM_NAME): New macros.
51965         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
51966         changed.  But support the old name if the new one is not defined
51967         and if _REGEX_SOURCE.
51968
51969         Change the following member names in struct re_pattern_buffer.
51970         The old names are still supported if !_REGEX_SOURCE.
51971         The new names are always supported, regardless of _REGEX_SOURCE.
51972         (re_buffer): Renamed from buffer.
51973         (re_allocated): Renamed from allocated.
51974         (re_used): Renamed from used.
51975         (re_syntax): Renamed from syntax.
51976         (re_fastmap): Renamed from fastmap.
51977         (re_translate): Renamed from translate.
51978         (re_can_be_null): Renamed from can_be_null.
51979         (re_regs_allocated): Renamed from regs_allocated.
51980         (re_fastmap_accurate): Renamed from fastmap_accurate.
51981         (re_no_sub): Renamed from no_sub.
51982         (re_not_bol): Renamed from not_bol.
51983         (re_not_eol): Renamed from not_eol.
51984         (re_newline_anchor): Renamed from newline_anchor.
51985
51986         Change the following member names in struct re_registers.
51987         The old names are still supported if !_REGEX_SOURCE.
51988         The new names are always supported, regardless of _REGEX_SOURCE.
51989         (rm_num_regs): Renamed from num_regs.
51990         (rm_start): Renamed from start.
51991         (rm_end): Renamed from end.
51992
51993         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
51994         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
51995         Prepend __ to parameter names.
51996
51997         Undo yesterday's changes.
51998
51999 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
52000
52001         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
52002         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
52003         lib/regex.c.
52004
52005 2005-08-24  Jim Meyering  <jim@meyering.net>
52006
52007         Sync from coreutils.
52008         * m4/fcntl-safer.m4: New file.
52009
52010         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
52011         and object files for this module.
52012
52013 2005-08-24  Jim Meyering  <jim@meyering.net>
52014
52015         Sync from coreutils.
52016         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
52017
52018 2005-08-24  Jim Meyering  <jim@meyering.net>
52019
52020         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
52021         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
52022
52023 2005-08-24  Jim Meyering  <jim@meyering.net>
52024
52025         * modules/fcntl-safer: New module.
52026         * modules/fts (Depends-on): Add fcntl-safer.
52027         * MODULES.html.sh (File descriptor based Input/Output):
52028         Add fcntl-safer.
52029
52030 2005-08-24  Bruno Haible  <bruno@clisp.org>
52031
52032         Support for unit test modules.
52033         * modules/README: Mention tests modules.
52034         * modules/TEMPLATE-TESTS: New file.
52035         * gnulib-tool: New options --extract-tests-module, --with-tests and
52036         --tests-base (unused for the moment).
52037         (testsbase, inctests): New variables.
52038         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
52039         (func_verify_module): Exclude TEMPLATE-TESTS.
52040         (func_verify_nontests_module, func_verify_tests_module): New functions.
52041         (func_get_dependencies): Add implicit dependency for tests modules.
52042         (func_get_tests_module): New function.
52043         (func_modules_transitive_closure): When --with-tests was specified,
52044         include the unit tests as well, unless explicitly avoided.
52045         (func_emit_lib_Makefile_am): Ignore the tests modules here.
52046         (func_emit_tests_Makefile_am): New function.
52047         (func_create_testdir): When --with-tests was specified, emit a
52048         tests/ directory.
52049         * MODULES.html.sh (Future developments): Update.
52050
52051 2005-08-24  Bruno Haible  <bruno@clisp.org>
52052
52053         * modules/tls-tests: New file.
52054         * tests/test-tls.c: New file, from GNU gettext.
52055
52056 2005-08-24  Bruno Haible  <bruno@clisp.org>
52057
52058         * modules/lock-tests: New file.
52059         * tests/test-lock.c: New file, from GNU gettext.
52060
52061 2005-08-24  Bruno Haible  <bruno@clisp.org>
52062
52063         * lib/lock.h: Add multiple inclusion guard.
52064         * lib/tls.h: Add multiple inclusion guard.
52065
52066 2005-08-24  Bruno Haible  <bruno@clisp.org>
52067
52068         * gnulib-tool: Add support for the --aux-dir option to
52069         --create-testdir, --create-megatestdir, --test, --megatest.
52070         (func_create_testdir, func_create_megatestdir): Optionally emit a
52071         AC_CONFIG_AUX_DIR directive.
52072         (create-testdir, create-megatestdir, test, megatest): Provide a
52073         default value for $auxdir.
52074
52075 2005-08-24  Bruno Haible  <bruno@clisp.org>
52076
52077         * gnulib-tool (import): Use compound statement instead of subshell
52078         where possible.
52079
52080 2005-08-24  Bruno Haible  <bruno@clisp.org>
52081
52082         * gnulib-tool (import): Change --aux-dir default to "build-aux".
52083
52084 2005-08-24  Bruno Haible  <bruno@clisp.org>
52085
52086         * gnulib-tool (func_version): Update.
52087
52088 2005-08-24  Bruno Haible  <bruno@clisp.org>
52089
52090         * gnulib-tool (func_import, func_create_testdir,
52091         func_create_megatestdir): Quote all autoconf macro arguments.
52092
52093 2005-08-24  Bruno Haible  <bruno@clisp.org>
52094
52095         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
52096         option --force, because --force causes the aclocal.m4 of each
52097         subdirectory to be newer than the corresponding config.h.in.
52098
52099 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
52100
52101         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
52102         All contents moved to gl_REGEX.
52103         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
52104         assume that it does.
52105
52106 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
52107
52108         * lib/regex.h (REG_NOSYS)
52109         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
52110         Define, since POSIX requires it as of 2001.
52111         (_REG_ENOSYS)
52112         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
52113         New private symbol, used to keep the enum signed in all cases.
52114         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
52115         Youngman in
52116         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
52117
52118         * lib/regex_internal.c (re_string_skip_chars, register_state):
52119         (calc_state_hash):
52120         Remove forward decls; no longer needed now that we use prototypes.
52121         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
52122         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
52123         (clean_state_log_if_needed): Likewise.
52124
52125 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
52126
52127         * config/srclist.txt: Add glibc bugs 1231-1233.
52128
52129 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
52130
52131         Fix problems reported by Sam Steingold in
52132         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
52133         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
52134         assumed that reg_errcode_t is a signed type, which is not
52135         necessarily true if _XOPEN_SOURCE is not defined.
52136         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
52137         since some compilers warn about it otherwise.
52138
52139 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
52140
52141         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
52142         (init_word_char, create_initial_state, duplicate_node_closure):
52143         (fetch_token, peek_token_bracket, build_range_exp):
52144         (build_collating_symbol): Remove forward decls; no longer needed
52145         now that we use prototypes.
52146
52147         * lib/regcomp.c:
52148         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
52149         (re_compile_fastmap_iter, regcomp, regerror, regfree):
52150         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
52151         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
52152         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
52153         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
52154         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
52155         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
52156         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
52157         (build_range_exp, build_collating_symbol, parse_bracket_exp):
52158         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
52159         (build_charclass, build_charclass_op, fetch_number, create_tree):
52160         (create_token_tree, mark_opt_subexp, duplicate_tree):
52161         Use prototypes rather than old-style definitions.
52162
52163         * lib/regex_internal.c:
52164         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
52165         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
52166         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
52167         (re_string_reconstruct, re_string_peek_byte_case):
52168         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
52169         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
52170         (re_node_set_init_copy, re_node_set_add_intersect):
52171         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
52172         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
52173         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
52174         (re_acquire_state, re_acquire_state_context, register_state):
52175         (create_ci_newstate, create_cd_newstate, free_state):
52176         Likewise.
52177         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
52178         re_search_2):
52179         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
52180         (re_search_internal, prune_impossible_nodes):
52181         (acquire_init_state_context, check_matching, static):
52182         (check_halt_node_context, check_halt_state_context, proceed_next_node):
52183         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
52184         (update_regs, sift_states_backward, build_sifted_states):
52185         (clean_state_log_if_needed, merge_state_array):
52186         (update_cur_sifted_state, add_epsilon_src_nodes):
52187         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
52188         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
52189         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
52190         (find_recover_state, check_subexp_matching_top, transit_state_mb):
52191         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
52192         (check_arrival, check_arrival_add_next_nodes):
52193         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
52194         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
52195         (check_node_accept_bytes, check_node_accept, extend_buffers):
52196         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
52197         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
52198         (sift_ctx_init):
52199         Likewise.
52200
52201         * lib/regex_internal.h:
52202         (re_string_allocate, re_string_construct, re_string_reconstruct):
52203         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
52204         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
52205         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
52206         (re_string_context_at, re_string_peek_byte_case):
52207         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
52208         is defined, since we now use prototypes always.
52209
52210         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
52211         C89 or better.  All uses removed.
52212
52213 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
52214
52215         * config/srclist.txt: Add glibc bugs 1220-1227.
52216
52217 2005-08-20  Jim Meyering  <jim@meyering.net>
52218
52219         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
52220         of unused local, dfa.
52221
52222 2005-08-20  Bruno Haible  <bruno@clisp.org>
52223
52224         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
52225
52226 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
52227
52228         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
52229         (re_node_set_insert_last, re_dfa_add_node):
52230         Rename local variables to avoid GCC shadowing warnings.
52231
52232 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
52233
52234         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
52235         [defined lint]: Suppress bogus uninitialized-variable warnings.
52236
52237         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
52238         and let the caller return REG_ESPACE if out of space.  This
52239         removes an uninitialied-variable warning with GCC 4.0.1, and also
52240         avoids taking the address of a local variable.  All callers
52241         changed.
52242
52243 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
52244
52245         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
52246         $LIBCSRC/posix/regexec.c.
52247         Add glibc bug 1217 for regcomp.c.
52248
52249 2005-08-19  Jim Meyering  <jim@meyering.net>
52250
52251         * lib/regexec.c (proceed_next_node): Redo local variables to
52252         avoid GCC shadowing warnings.
52253
52254 2005-08-18  Bruno Haible  <bruno@clisp.org>
52255
52256         * lib/strstr.c (strstr): Fix return value in multibyte case.
52257         * lib/strcasestr.c (strcasestr): Likewise.
52258
52259 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
52260
52261         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
52262
52263 2005-08-17  Jim Meyering  <jim@meyering.net>
52264
52265         Make the %s format (seconds since the epoch) work for a negative
52266         number and when used with a zero-padded field width, e.g. %015s.
52267
52268         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
52269         label so that it precedes the code to set `digits'.  Otherwise,
52270         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
52271         print `00-22'.  Now, it prints `-0022', as it should.
52272
52273 2005-08-17  Bruno Haible  <bruno@clisp.org>
52274
52275         * modules/strstr (Files): Add m4/mbrtowc.m4.
52276         (Depends-on): Add mbuiter.
52277
52278 2005-08-17  Bruno Haible  <bruno@clisp.org>
52279
52280         * modules/strcasestr: New file.
52281         * MODULES.html.sh (String handling, based on ANSI C 89): Add
52282         strcasestr.
52283
52284 2005-08-17  Bruno Haible  <bruno@clisp.org>
52285
52286         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
52287
52288 2005-08-17  Bruno Haible  <bruno@clisp.org>
52289
52290         * modules/mbuiter: New file.
52291         * MODULES.html.sh (Extended multibyte and wide character utilities):
52292         Add mbuiter.
52293
52294 2005-08-17  Bruno Haible  <bruno@clisp.org>
52295
52296         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
52297         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
52298
52299 2005-08-17  Bruno Haible  <bruno@clisp.org>
52300
52301         * m4/strcasestr.m4: New file.
52302
52303 2005-08-17  Bruno Haible  <bruno@clisp.org>
52304
52305         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
52306         * lib/strstr.c: Completely rewritten, with multibyte locale support.
52307
52308 2005-08-17  Bruno Haible  <bruno@clisp.org>
52309
52310         * lib/strcasestr.h: New file.
52311         * lib/strcasestr.c: New file.
52312
52313 2005-08-17  Bruno Haible  <bruno@clisp.org>
52314
52315         * lib/strcasecmp.c: Use mbuiter.h.
52316
52317 2005-08-17  Bruno Haible  <bruno@clisp.org>
52318
52319         * lib/mbuiter.h: New file.
52320
52321 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
52322
52323         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
52324         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
52325         and gl_GETOPT are both invoked via different paths (as happens
52326         with GNU tar CVS because it uses both argp and getopt), the former
52327         wins.
52328
52329 2005-08-16  Bruno Haible  <bruno@clisp.org>
52330
52331         * modules/tls: New file.
52332         * MODULES.html.sh (Multithreading): Add tls.
52333
52334 2005-08-16  Bruno Haible  <bruno@clisp.org>
52335
52336         * modules/strnlen1: New file.
52337         * MODULES.html.sh (String handling): Add strnlen1.
52338
52339 2005-08-16  Bruno Haible  <bruno@clisp.org>
52340
52341         * modules/strcase (Files): Add m4/mbrtowc.m4.
52342         (Depends-on): Add strnlen1, mbchar.
52343
52344 2005-08-16  Bruno Haible  <bruno@clisp.org>
52345
52346         * modules/mbiter: New file.
52347         * MODULES.html.sh (Extended multibyte and wide character utilities):
52348         Add mbiter.
52349
52350 2005-08-16  Bruno Haible  <bruno@clisp.org>
52351
52352         * modules/mbfile: New file.
52353         * MODULES.html.sh (Extended multibyte and wide character utilities):
52354         Add mbfile.
52355
52356 2005-08-16  Bruno Haible  <bruno@clisp.org>
52357
52358         * modules/mbchar: New file.
52359         * MODULES.html.sh (Extended multibyte and wide character utilities):
52360         New section.
52361
52362 2005-08-16  Bruno Haible  <bruno@clisp.org>
52363
52364         * m4/tls.m4: New file, from GNU gettext.
52365
52366 2005-08-16  Bruno Haible  <bruno@clisp.org>
52367
52368         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
52369         always.
52370         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
52371
52372 2005-08-16  Bruno Haible  <bruno@clisp.org>
52373
52374         * m4/mbiter.m4: New file.
52375
52376 2005-08-16  Bruno Haible  <bruno@clisp.org>
52377
52378         * m4/mbfile.m4: New file.
52379
52380 2005-08-16  Bruno Haible  <bruno@clisp.org>
52381
52382         * m4/mbchar.m4: New file.
52383
52384 2005-08-16  Bruno Haible  <bruno@clisp.org>
52385
52386         * lib/tls.h: New file, from GNU gettext.
52387         * lib/tls.c: New file, from GNU gettext.
52388
52389 2005-08-16  Bruno Haible  <bruno@clisp.org>
52390
52391         * lib/strnlen1.h: New file.
52392         * lib/strnlen1.c: New file.
52393
52394 2005-08-16  Bruno Haible  <bruno@clisp.org>
52395
52396         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
52397         (mbi_init): Update.
52398         (mbi_avail, mbi_advance): Let the iteration end before the terminating
52399         NUL byte, not after it.
52400
52401 2005-08-16  Bruno Haible  <bruno@clisp.org>
52402
52403         * lib/strcase.h (strcasecmp): Add note in comments.
52404         * lib/strncasecmp.c: Use code from strcasecmp.c.
52405         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
52406         (strcasecmp): Work correctly in multibyte locales.
52407
52408 2005-08-16  Bruno Haible  <bruno@clisp.org>
52409
52410         * lib/mbiter.h: New file.
52411
52412 2005-08-16  Bruno Haible  <bruno@clisp.org>
52413
52414         * lib/mbfile.h: New file.
52415
52416 2005-08-16  Bruno Haible  <bruno@clisp.org>
52417
52418         * lib/mbchar.h: New file.
52419         * lib/mbchar.c: New file.
52420
52421 2005-08-16  Bruno Haible  <bruno@clisp.org>
52422
52423         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
52424         the valid ones. Makes the comparison operations transitive:
52425         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
52426         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
52427
52428 2005-08-15  Simon Josefsson  <jas@extundo.com>
52429
52430         * modules/ssize_t (License): Change to 'unlimited'.
52431
52432         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
52433
52434 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
52435
52436         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
52437         Add comments for each pending glibc patch.
52438
52439 2005-08-15  Bruno Haible  <bruno@clisp.org>
52440
52441         * lib/regex.h (__restrict_arr): Don't define to __restrict if
52442         __cplusplus is defined.
52443
52444 2005-08-14  Jim Meyering  <jim@meyering.net>
52445
52446         Sync from coreutils.
52447
52448         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
52449         Use the hash-table-based cycle-detection code not just when
52450         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
52451         Reported by James Youngman in
52452         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
52453         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
52454         FTS_TIGHT_CYCLE_CHECK.
52455         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
52456         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
52457         once again.
52458         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
52459         * lib/fts.c (fd_safer): Remove decl.
52460         Include fcntl--.h rather than unistd-safer.h
52461         (fts_safe_changedir): Don't call fd_safer; no longer needed
52462         now that we include fcntl--.h.
52463
52464 2005-08-12  Simon Josefsson  <jas@extundo.com>
52465
52466         * modules/getndelim2: Use ssize_t module.
52467         * modules/getnline: Likewise.
52468         * modules/safe-read: Likewise.
52469         * modules/xreadlink: Likewise.
52470
52471         * modules/ssize_t: New file.
52472
52473 2005-08-12  Simon Josefsson  <jas@extundo.com>
52474
52475         * m4/readline.m4: Look for termcap, curses or ncurses if required.
52476
52477 2005-08-12  Simon Josefsson  <jas@extundo.com>
52478
52479         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
52480         ssize_t.
52481
52482 2005-08-12  Simon Josefsson  <jas@extundo.com>
52483
52484         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
52485         readline, getdelim and check_version.
52486         (Support for systems lacking ISO C 99: Sizes of integer types):
52487         Add size_max.
52488
52489 2005-08-12  Bruno Haible  <bruno@clisp.org>
52490
52491         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
52492
52493 2005-08-11  Simon Josefsson  <jas@extundo.com>
52494
52495         * modules/readline: New file.
52496
52497         * modules/strnlen (Files): Add strnlen.h.
52498
52499 2005-08-11  Simon Josefsson  <jas@extundo.com>
52500
52501         * m4/readline.m4: New file.
52502
52503 2005-08-11  Simon Josefsson  <jas@extundo.com>
52504
52505         * lib/readline.h, readline.c: New file.
52506
52507 2005-08-11  Simon Josefsson  <jas@extundo.com>
52508
52509         * doc/gnulib.texi (Initial import, Finishing touches): Mention
52510         gl_AVOID.
52511
52512 2005-08-11  Bruno Haible  <bruno@clisp.org>
52513
52514         * lib/strnlen.h (strnlen): Change parameter name to match comment.
52515
52516 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
52517
52518         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
52519
52520 2005-08-10  Simon Josefsson  <jas@extundo.com>
52521
52522         * tests/test-iconvme.c: New file.
52523
52524 2005-08-10  Simon Josefsson  <jas@extundo.com>
52525
52526         * m4/strnlen.m4: New file.
52527
52528         * m4/strndup.m4: Don't check for strnlen declaration, done in
52529         strnlen.m4.
52530
52531 2005-08-10  Simon Josefsson  <jas@extundo.com>
52532
52533         * lib/strndup.c: Use strnlen.h.
52534
52535         * lib/strnlen.h: New file.
52536
52537 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
52538
52539         * README: Typos.
52540
52541 2005-08-02  Simon Josefsson  <jas@extundo.com>
52542
52543         * modules/readline: New file.
52544
52545 2005-08-02  Simon Josefsson  <jas@extundo.com>
52546
52547         * modules/getdelim: New file.
52548
52549         * modules/getline: Rewrite, don't use getndelim2.
52550
52551 2005-08-02  Simon Josefsson  <jas@extundo.com>
52552
52553         * m4/getline.m4: Separate out getdelim stuff into separate module.
52554
52555         * m4/getdelim.m4: New file.
52556
52557 2005-08-02  Simon Josefsson  <jas@extundo.com>
52558
52559         * lib/getline.h, getline.c: Rewrite.
52560
52561         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
52562
52563 2005-07-31  Bruno Haible  <bruno@clisp.org>
52564
52565         * lib/lock.h (gl_lock_initializer): New macro.
52566         (gl_lock_define_initialized): Use it.
52567         (gl_rwlock_initializer): New macro.
52568         (gl_rwlock_define_initialized): Use it.
52569         (gl_recursive_lock_initializer): New macro.
52570         (gl_recursive_lock_define_initialized): Use it.
52571
52572 2005-07-30  Karl Berry  <karl@gnu.org>
52573
52574         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
52575         Report from Ben Pfaff, regarding getopt.
52576
52577 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
52578
52579         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
52580         normal way.
52581         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
52582         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
52583         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
52584         (gl_GETOPT): Use the new macros.  Most of the implementation
52585         is moved to the new macros.  This is for programs like Emacs
52586         that don't want all the functionality of gl_GETOPT.
52587
52588 2005-07-26  Bruno Haible  <bruno@clisp.org>
52589
52590         * m4/lock.m4: Update from GNU gettext.
52591
52592 2005-07-26  Bruno Haible  <bruno@clisp.org>
52593
52594         * lib/lock.h: Update from GNU gettext.
52595         * lib/lock.c: Update from GNU gettext.
52596
52597 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
52598
52599         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
52600         obsolescent AC_TRY_RUN.  Include the default includes files, for
52601         'exit'.
52602
52603 2005-07-24  Bruno Haible  <bruno@clisp.org>
52604
52605         * modules/visibility: New file.
52606         * MODULES.html.sh (Misc): Add visibility.
52607
52608 2005-07-24  Bruno Haible  <bruno@clisp.org>
52609
52610         * m4/visibility.m4: New file.
52611
52612 2005-07-24  Bruno Haible  <bruno@clisp.org>
52613
52614         * doc/visibility.texi: New file.
52615
52616 2005-07-22  Bruno Haible  <bruno@clisp.org>
52617
52618         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
52619         $(ALLOCA_H), redundant through BUILT_SOURCES.
52620         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
52621         redundant through BUILT_SOURCES.
52622         * modules/byteswap (Makefile.am): Remove explicit dependency on
52623         $(BYTESWAP_H), redundant through BUILT_SOURCES.
52624         * modules/fnmatch (Makefile.am): Remove explicit dependency on
52625         $(FNMATCH_H), redundant through BUILT_SOURCES.
52626         * modules/getopt (Makefile.am): Remove explicit dependency on
52627         $(GETOPT_H), redundant through BUILT_SOURCES.
52628         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
52629         redundant through BUILT_SOURCES.
52630         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
52631         redundant through BUILT_SOURCES.
52632         * modules/stdbool (Makefile.am): Remove explicit dependency on
52633         $(STDBOOL_H), redundant through BUILT_SOURCES.
52634         * modules/stdint (Makefile.am): Remove explicit dependency on
52635         $(STDINT_H), redundant through BUILT_SOURCES.
52636         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
52637         Remove explicit dependency on $(SYSEXITS_H).
52638         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
52639
52640 2005-07-18  Simon Josefsson  <jas@extundo.com>
52641
52642         * lib/check-version.c (check_version): Accept identical versions too.
52643
52644 2005-07-18  Bruno Haible  <bruno@clisp.org>
52645
52646         * modules/lock: New file.
52647         * MODULES.html.sh (Multithreading): New section.
52648
52649 2005-07-18  Bruno Haible  <bruno@clisp.org>
52650
52651         * m4/lock.m4: New file, from GNU gettext.
52652
52653 2005-07-18  Bruno Haible  <bruno@clisp.org>
52654
52655         * lib/lock.h: New file, from GNU gettext.
52656         * lib/lock.c: New file, from GNU gettext.
52657
52658 2005-07-18  Bruno Haible  <bruno@clisp.org>
52659
52660         * lib/lock.h (gl_once_t): New type.
52661         (gl_once_define, gl_once): New macros.
52662         * lib/lock.c (fresh_once): New variable.
52663         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
52664         functions.
52665
52666 2005-07-16  Simon Josefsson  <jas@extundo.com>
52667
52668         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
52669         workaround, suggested by Bruno.
52670
52671 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
52672
52673         * modules/xalloc (Depends-on): Add xalloc-die.
52674         * modules/xvasprintf (Depends-on): Add xalloc-die.
52675
52676 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
52677
52678         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
52679         with a minor change.
52680
52681 2005-07-15  Bruno Haible  <bruno@clisp.org>
52682
52683         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
52684         When using lib/poll.c, define poll as rpl_poll.
52685
52686 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
52687
52688         * modules/argp (Depends-on): Remove unlocked-io.
52689
52690 2005-07-14  Derek Price  <derek@ximbiot.com>
52691
52692         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
52693         for glob symlink bug.
52694
52695 2005-07-14  Bruno Haible  <bruno@clisp.org>
52696
52697         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
52698         Instead, test for *_unlocked function declarations directly.
52699
52700 2005-07-11  Simon Josefsson  <jas@extundo.com>
52701
52702         * modules/size_max: New file.
52703
52704         * modules/xsize: Depend on size_max module for size_max.m4.
52705
52706 2005-07-11  Simon Josefsson  <jas@extundo.com>
52707
52708         * lib/size_max.h: New file.
52709
52710 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
52711
52712         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
52713         copyright symbol and the year.
52714         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
52715         (version_etc_va): Use parameterized copyright notice.
52716         Reword to conform to the current GNU coding standards.
52717
52718 2005-07-11  Karl Berry  <karl@gnu.org>
52719
52720         * doc/gnulib.texi (Quoting): new node.
52721         (Initial import): more info, from Patrice.
52722
52723 2005-07-11  Bruno Haible  <bruno@clisp.org>
52724
52725         * gnulib-tool (func_usage): Document option --avoid.
52726         (Command line options): Handle --avoid.
52727         (func_acceptable): New function.
52728         (func_modules_transitive_closure): Use it.
52729
52730 2005-07-11  Bruno Haible  <bruno@clisp.org>
52731
52732         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
52733         Reported by Jim Meyering.
52734
52735 2005-07-10  Bruno Haible  <bruno@clisp.org>
52736
52737         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
52738         Needed when size_t is smaller than 'unsigned int'.
52739         Reported by Paul Eggert.
52740
52741 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
52742
52743         * modules/argp (Depends-on): Add unlocked-io
52744
52745 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
52746
52747         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
52748         block of defines.
52749
52750 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
52751
52752         * config/srclist.txt: Comment out regcomp.c, since we have a porting
52753         fix now.
52754
52755 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
52756         and Paul Eggert  <eggert@cs.ucla.edu>
52757
52758         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
52759         in wint_t, not wchar_t.  Remove now-unnecessary cast.
52760
52761 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52762
52763         * modules/regex (Files): Add lib/regex_internal.c,
52764         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
52765         (Depends-on): Add extensions.
52766         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
52767
52768 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52769
52770         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
52771         pathconf.
52772         * m4/same.m4 (gl_SAME): Likewise.
52773         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
52774
52775         * m4/regex.m4: Adjust to new libc regex implementation.
52776         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
52777         all the .c and .h parts of (the new) regex.
52778         Quote the m4 stuff better.
52779         Check for RE_ICASE bug of old gnulib.
52780         Check for REG_STARTEND of recent libc.
52781         Rename local variables from jm_* to gl_*.
52782         Quote operand of "test -f".
52783         Say "recent enough" version of libc, not "version 2".
52784         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
52785         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
52786         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
52787         Remove check for btowc, isascii.
52788         Require AM_LANGINFO_CODESET.
52789
52790 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52791
52792         * lib/regex.c, regex.h: Sync from libc.
52793         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
52794         * lib/regexec.c:
52795         New files, synced from libc, except that regex_internal.h
52796         currently has a small porting fix.
52797
52798 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
52799
52800         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
52801         regex_internal.c, regexec.c.
52802         Add regex_internal.h too, but as a comment, since the libc version
52803         is currently broken in gnulib mode.
52804
52805 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
52806
52807         Support programs like Emacs that use gnulib but not gettext.
52808         * MODULES.html.sh (Internationalization functions): Add gettext-h.
52809         * modules/gettext-h: New file.
52810         * modules/gettext (Files): Remove lib/gettext.h.
52811         (Depends-on): Add gettext-h.
52812         (Makefile.am): Remove lib_SOURCES.
52813         * modules/argmatch, modules/c-stack, modules/closeout:
52814         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
52815         * modules/execute, modules/file-type, modules/getaddrinfo:
52816         * modules/getopt, modules/human, modules/javacomp:
52817         * modules/javaexec, modules/mkdir-p, modules/obstack:
52818         * modules/openat, modules/pagealign_alloc, modules/pipe:
52819         * modules/quotearg, modules/regex, modules/rpmatch:
52820         * modules/unicodeio, modules/userspec, modules/version-etc:
52821         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
52822         * modules/xsetenv:
52823         Depend on gettext-h, not gettext.
52824
52825 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
52826
52827         * gnulib-tool (func_import): Add support for 'public domain' license.
52828         * modules/alloca, modules/atexit, modules/memmove:
52829         Now public domain, not GPL.
52830         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
52831         * modules/realloc, modules/strerror, modules/strtod:
52832         Now LGPL, not GPL.
52833
52834 2005-07-05  Bruno Haible  <bruno@clisp.org>
52835
52836         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
52837         autoconf CVS. Needed for mingw.
52838
52839 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52840
52841         Remove the dependency of the strftime module on the tzset module.
52842         * modules/strftime (Depends-on): Remove dependency on tzset.
52843
52844 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52845
52846         Remove the dependency of the strftime module on the tzset module.
52847         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
52848         gl_FUNC_TZSET_CLOBBER.
52849
52850 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
52851
52852         Remove the dependency of the strftime module on the tzset module.
52853         * lib/strftime.c (my_strftime)
52854         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
52855         Copy the input structure, to work around some of the bug with
52856         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
52857         Solaris releases, you should also use the tzset module, but we won't
52858         require it as a dependency any more since we don't want LGPLed code
52859         to depend on GPLed code.
52860
52861 2005-07-02  Jim Meyering  <jim@meyering.net>
52862
52863         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
52864         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
52865         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
52866         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
52867
52868 2005-07-02  Jim Meyering  <jim@meyering.net>
52869
52870         * lib/backupfile.c (backup_args): Change a `0' to NULL.
52871
52872 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
52873
52874         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
52875         declares only 'struct timespec;' (!).
52876
52877 2005-07-01  Jim Meyering  <jim@meyering.net>
52878
52879         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
52880         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
52881         * lib/save-cwd.c, tempname.c:
52882         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
52883         and don't include <sys/file.h>).
52884
52885 2005-06-29  Jim Meyering  <jim@meyering.net>
52886
52887         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
52888         type name.  Use the variable name instead.
52889         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
52890         Likewise.
52891
52892 2005-06-28  Simon Josefsson  <jas@extundo.com>
52893
52894         * modules/check-version (Files): Add check-version.m4.
52895
52896 2005-06-28  Simon Josefsson  <jas@extundo.com>
52897
52898         * m4/check-version.m4: New file, suggested by Jim Meyering
52899         <jim@meyering.net>.
52900
52901 2005-06-28  Simon Josefsson  <jas@extundo.com>
52902
52903         * lib/check-version.h, lib/check-version.c: New files.
52904
52905 2005-06-28  Simon Josefsson  <jas@extundo.com>
52906
52907         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
52908         collision with global variable.  Better indentation.  Don't
52909         increment buffer pointer beyond buffer end.  Based on comments
52910         from Paul Eggert <eggert@cs.ucla.edu>.
52911
52912         * lib/base64.h: Indent.
52913
52914 2005-06-28  Simon Josefsson  <jas@extundo.com>
52915
52916         * doc/gnulib.texi (Library version handling): New section.
52917
52918 2005-06-28  Jim Meyering  <jim@meyering.net>
52919
52920         * check-module (find_included_lib_files): Hard-code another
52921         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
52922         but modules/fts-lgpl (correctly) does not list those files.
52923
52924         * modules/canonicalize (Files): Add lib/pathmax.h.
52925
52926 2005-06-25  Simon Josefsson  <jas@extundo.com>
52927
52928         * modules/check-version: New file.
52929
52930 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
52931
52932         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
52933         initializer of struct addrinfo, as an indication that we don't
52934         care how many members the structure has.
52935
52936 2005-06-24  Derek Price  <derek@ximbiot.com>
52937         and Bruno Haible  <bruno@clisp.org>
52938
52939         Remove stat module & update lstat.
52940         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
52941         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
52942         * m4/stat.m4: Remove this file.
52943
52944 2005-06-24  Derek Price  <derek@ximbiot.com>
52945         and Bruno Haible  <bruno@clisp.org>
52946
52947         Remove stat module & update lstat.
52948         * lib/stat.c: Remove this file...
52949         (slash_aware_lstat): ...moving this content and its support...
52950         * lib/lstat.c (rpl_lstat): ...into here.
52951         * lib/lstat.h: New file.
52952
52953 2005-06-24  Derek Price  <derek@ximbiot.com>
52954         and Bruno Haible  <bruno@clisp.org>
52955
52956         Remove stat module & update lstat.
52957         * config/srclist.txt (libc sources): Remove stat.
52958
52959 2005-06-24  Derek Price  <derek@ximbiot.com>
52960         and Bruno Haible  <bruno@clisp.org>
52961
52962         Remove stat module & update lstat.
52963         * MODULES.html.sh (stat): Remove.
52964         * MODULES.html: Regenerated.
52965         * modules/lstat (Description): Correct function name.
52966         (Files): Add "lstat.h".
52967         (Depends-on): Remove stat, add xalloc, stat-macros.
52968         * modules/stat: Remove this file.
52969         (Include): Add "lstat.h", remove <sys/stat.h>.
52970
52971 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
52972
52973         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
52974         (ranged_convert): Don't save conversion in a temporary struct.
52975         This causes a warning with GCC 4.0.0, and anyway in the typical
52976         case it's not worth the extra 100 bytes or so of code.
52977         (ranged_convert, __mktime_internal): When calling a function via a
52978         pointer P, use P () rather than (*P) (), as we now assume C89 or
52979         better.
52980
52981 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
52982
52983         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
52984         "who -r" failed to give output.  Problem reported by Tim Waugh.
52985
52986         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
52987         (xcalloc): Use it to avoid needless tests.
52988         Problem reported by Jim Meyering.
52989
52990 2005-06-20  Derek Price  <derek@ximbiot.com>
52991
52992         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
52993         unnecessary for Autoconfs > 2.59c.
52994
52995 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
52996
52997         * lib/argp.h (__option_is_short): Check upper limit of
52998         __key. Isprint() requires its argument to have the value
52999         of an unsigned char or EOF.
53000
53001 2005-06-16  Jim Meyering  <jim@meyering.net>
53002
53003         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
53004         when either N or S is zero.
53005
53006 2005-06-16  Derek Price  <derek@ximbiot.com>
53007
53008         * m4/bison.m4: Declare YACC & YFLAGS precious.
53009
53010 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
53011
53012         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
53013         multibyte string or pattern, fall back on unibyte matching.
53014         Problem reported by James Youngman.
53015
53016 2005-06-08  Bruno Haible  <bruno@clisp.org>
53017
53018         * modules/csharpcomp: New file.
53019         * MODULES.html.sh (C#): Add csharpcomp.
53020
53021 2005-06-08  Bruno Haible  <bruno@clisp.org>
53022
53023         * m4/csharpcomp.m4: New file, from GNU gettext.
53024
53025 2005-06-08  Bruno Haible  <bruno@clisp.org>
53026
53027         * lib/csharpcomp.h: New file, from GNU gettext.
53028         * lib/csharpcomp.c: New file, from GNU gettext.
53029         * lib/csharpcomp.sh.in: New file, from GNU gettext.
53030
53031 2005-06-08  Bruno Haible  <bruno@clisp.org>
53032
53033         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
53034         warning on mingw.
53035
53036 2005-06-07  Derek Price  <derek@ximbiot.com>
53037
53038         Sync from CVS.
53039         * lib/glob_.h: Indent nested #ifdef.
53040
53041 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
53042
53043         Sync from coreutils.
53044         Use "file name" when talking about file names, instead of "filename"
53045         or "path", as per the GNU coding standards.
53046         * lib/mkdir-p.c: Renamed from makepath.c.
53047         (make_dir_parents): Renamed from make_path.  All callers changed.
53048         * lib/mkdir-p.h: Likewise.  All includers changed.
53049         * lib/filenamecat.c: Renamed from path-concat.c.
53050         (file_name_concat): Renamed from path_concat.  All callers changed.
53051         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
53052         * lib/filenamecat.h: Likewise.  All includers changed.
53053         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
53054         in comments or local variable names.
53055         * lib/basename.c: Likewise.
53056         * lib/canonicalize.c, canonicalize.h: Likewise.
53057         * lib/dirname.c, dirname.h: Likewise.
53058         * lib/euidaccess.c: Likewise.
53059         * lib/exclude.c: Likewise
53060         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
53061         * lib/fsusage.c, fsuage.h: Likewise.
53062         * lib/fts.c, fts_.h: Likewise.
53063         * lib/getcwd.c: Likewise.
53064         * lib/getloadavg.c: Likewise.
53065         * lib/mkstemp.c: Likewise.
53066         * lib/mountlist.c, mountlist.h: Likewise.
53067         * lib/openat.c, openat.h: Likewise.
53068         * lib/readlink-stub.c: Likewise.
53069         * lib/readutmp.c, readutmp.h: Likewise.
53070         * lib/rename.c: Likewise.
53071         * lib/rmdir.c: Likewise.
53072         * lib/same.c: Likewise.
53073         * lib/savedir.c: Likewise.
53074         * lib/stripslash.c: Likewise.
53075         * lib/tempname.c: Likewise.
53076         * lib/xreadlink.c: Likewise.
53077         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
53078         All uses changed.
53079         * lib/exclude.h: Likewise.
53080
53081         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
53082         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
53083         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
53084         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
53085         * lib/pathmax.h: Include <limits.h> unconditionally, since other
53086         files have been getting away with it for years (MORE/BSD 4.3
53087         is extinct now).
53088         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
53089         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
53090
53091         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
53092         Define to 256, not 255, as per modern POSIX.
53093
53094 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
53095
53096         Sync from coreutils.
53097         Use "file name" when talking about file names, instead of "filename"
53098         or "path", as per the GNU coding standards.
53099         * MODULES.html.sh: mkdir-p renamed from makepath.
53100         filenamecat renamed from path-concat.
53101         * modules/filenamecat: Renamed from modules/path-concat.
53102         (Files): filenamecat.h and filenamecat.c renamed from
53103         path-concat.h and path-concat.c.
53104         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
53105         (Include): filenamecat.h, not path-concat.h.
53106         * modules/mkdir-p: Renamed from modules/makepath.
53107         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
53108         makepath.c.
53109         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
53110         (Include): mkdir-p.h, not makepath.h.
53111
53112 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
53113
53114         Sync from coreutils.
53115         * m4/mkdir-p.m4: Renamed from makepath.m4.
53116         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
53117         Rename files from makepath.c to mkdir-p.c, and from
53118         makepath.h to mkdir-p.h.
53119         * m4/filenamecat.m4: Renamed from path-concat.m4.
53120         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
53121         Rename files from path-concat.c to filenamecat.c,
53122         and from path-concat.h to filenamecat.h.
53123         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
53124         "file name" in local variables or comments.
53125         * m4/rename.m4: Likewise.
53126
53127 2005-06-01  Bruno Haible  <bruno@clisp.org>
53128
53129         * modules/csharpexec: New file.
53130         * MODULES.html.sh (C#): New section.
53131
53132 2005-06-01  Bruno Haible  <bruno@clisp.org>
53133
53134         * m4/csharp.m4: New file, from GNU gettext.
53135         * m4/csharpexec.m4: New file, from GNU gettext.
53136
53137 2005-06-01  Bruno Haible  <bruno@clisp.org>
53138
53139         * lib/csharpexec.h: New file, from GNU gettext.
53140         * lib/csharpexec.c: New file, from GNU gettext.
53141         * lib/csharpexec.sh.in: New file, from GNU gettext.
53142
53143 2005-05-31  Derek Price  <derek@ximbiot.com>
53144             Paul Eggert  <eggert@cs.ucla.edu>
53145
53146         Sync from cvs.
53147         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
53148
53149 2005-05-31  Derek Price  <derek@ximbiot.com>
53150             Paul Eggert  <eggert@cs.ucla.edu>
53151
53152         Sync from cvs.
53153         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
53154
53155 2005-05-29  Derek Price  <derek@ximbiot.com>
53156
53157         * config/srclist.txt (glob_.h, glob.c): Add these files.
53158
53159 2005-05-29  Derek Price  <derek@ximbiot.com>
53160
53161         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
53162         * modules/glob: New file.
53163         * modules/getlogin_r: Add link to POSIX spec in description.
53164
53165 2005-05-29  Derek Price  <derek@ximbiot.com>
53166             Paul Eggert  <eggert@cs.ucla.edu>
53167
53168         * m4/glob.m4: New file.
53169
53170 2005-05-29  Derek Price  <derek@ximbiot.com>
53171             Paul Eggert  <eggert@cs.ucla.edu>
53172
53173         * lib/glob_.h, lib/glob.c: New files.
53174
53175 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
53176
53177         * modules/fts (Files): Remove m4/inttypes-pri.m4.
53178         * modules/fts-lgpl (Depends-on): Remove gettext.
53179
53180 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
53181
53182         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
53183         and don't require gt_INTTYPES_PRI.
53184
53185 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
53186
53187         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
53188
53189         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
53190         the configuration hassle isn't worth it.
53191         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
53192         (LONGEST_MODIFIER, PRIuMAX): Remove.
53193
53194 2005-05-27  Bruno Haible  <bruno@clisp.org>
53195
53196         * lib/getlogin_r.h: Remove second include of <stddef.h>.
53197
53198 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
53199
53200         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
53201         _POSIX_PTHREAD_SEMANTICS for Solaris.
53202
53203 2005-05-25  Derek Price  <derek@ximbiot.com>
53204
53205         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
53206
53207 2005-05-25  Derek Price  <derek@ximbiot.com>
53208             Paul Eggert  <eggert@cs.ucla.edu>
53209
53210         * modules/getlogin_r, m4/getlogin_r.m4: New files.
53211         * lib/getlogin_r.c, getlogin_r.h: New files.
53212
53213 2005-05-25  Bruno Haible  <bruno@clisp.org>
53214             Derek Price  <derek@ximbiot.com>
53215
53216         * lib/getlogin_r.h: Simplify API documentation.
53217
53218 2005-05-23  Derek Price  <derek@ximbiot.com>
53219
53220         * modules/minmax (Files): Add m4/minmax.m4.
53221         (configure.ac): Add gl_MINMAX.
53222
53223 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
53224
53225         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
53226         so that unistd-safer.h (GPL'ed code) need not be included.
53227
53228 2005-05-22  Bruno Haible  <bruno@clisp.org>
53229
53230         * m4/minmax.m4: New file.
53231         Based on a patch by Derek Price <derek@ximbiot.com>.
53232
53233 2005-05-22  Bruno Haible  <bruno@clisp.org>
53234
53235         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
53236         (INT64_MIN): Fix definition.
53237         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
53238
53239         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
53240         NEED_SIGNED_INT_TYPES.
53241
53242         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
53243         HAVE_SYSTEM_INTTYPES.
53244
53245 2005-05-22  Bruno Haible  <bruno@clisp.org>
53246
53247         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
53248         Also include <sys/param.h> if it defines MIN, MAX.
53249         Based on a patch by Derek Price <derek@ximbiot.com>.
53250
53251 2005-05-21  Jim Meyering  <jim@meyering.net>
53252
53253         * modules/fts (Files): Add m4/inttypes-pri.m4.
53254         (Depends-on): Add lstat and remove gettext.  Alphabetize.
53255
53256 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
53257
53258         New fts module.
53259         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
53260         (setup_dir, free_dir): New functions.
53261         (enter_dir, leave_dir): Define trivial
53262         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
53263         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
53264         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
53265         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
53266         Move to fts-cycle.c.
53267         (fts_open): Use setup_dir.
53268         (fts_close): Use free_dir.
53269         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
53270         This adds a label and some gotos, but the alternatives were messier.
53271         Check for memory allocation failure when entering a dir.
53272         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
53273         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
53274         (FTS): New member fts_cycle, that is a union that contains the
53275         old active_dir_ht and cycle_state.  All uses changed to mention
53276         fts_cycle.ht and fts_cycle.state.
53277         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
53278         fts.c, with the following changes:
53279         (setup_dir, free_dir): New functions.
53280         (enter_dir): Now returns bool.  Return true if successful, false
53281         if memory exhausted.  All callers changed.
53282         Do not bother partly cleaning up on
53283         memory allocation failure; that is free_dir's job.
53284         However, free ad if hash_insert fails, to avoid memory leak.
53285         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
53286         fts->fts_options to see which union member to use.
53287
53288 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
53289
53290         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
53291         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
53292
53293 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
53294
53295         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
53296
53297 2005-05-20  Jim Meyering  <jim@meyering.net>
53298
53299         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
53300         Now a macro, to pacify GCC.
53301
53302 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
53303
53304         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
53305         of -1.
53306
53307 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
53308
53309         * lib/chown.c (rpl_chown): Return -1 on failure.
53310
53311 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
53312
53313         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
53314         Don't check for stddef.h.
53315         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
53316         don't use its results.
53317         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
53318         since we include them unconditionally.  Don't require
53319         AM_STDBOOL_H, since stdbool is a prerequisite.
53320         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
53321         since we assume C89 or better.
53322         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
53323         as we don't use their results.
53324         Don't check for fchdir, memmove, memset, strrchr, as we use
53325         them unconditionally.
53326         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
53327         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
53328
53329 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
53330
53331         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
53332         Include <stddef.h> unconditionally, since we assume C89 now.
53333         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
53334         * lib/fts.c: Include fts_.h first, to check interface.
53335         Do not include intprops.h; no longer needed.
53336         Include cycle-check.h and hash.h, since fts_.h no longer does.
53337         Remove unnecessary casts of closedir to void.
53338         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
53339         decide whether to decrement nlinks.
53340         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
53341         (FTS): Use struct hash_table * instead of Hash_table, so that
53342         we no longer need to include hash.h here.
53343
53344 2005-05-18  Jim Meyering  <jim@meyering.net>
53345
53346         * modules/dirfd (License): Change to LGPL.  Most of the code
53347         is already in the public domain.
53348
53349 2005-05-18  Jim Meyering  <jim@meyering.net>
53350
53351         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
53352         Reported by Yoann Vandoorselaere.
53353
53354 2005-05-17  Jim Meyering  <jim@meyering.net>
53355
53356         * m4/fts.m4: New file, from coreutils.
53357
53358 2005-05-17  Jim Meyering  <jim@meyering.net>
53359
53360         * lib/fts.c, lib/fts_.h: New files, from coreutils.
53361
53362 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
53363
53364         Sync from coreutils.
53365         * m4/unlinkdir.m4: New file.
53366
53367 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
53368
53369         Sync from coreutils.
53370         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
53371         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
53372         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
53373         White space changes only.
53374         * lib/makepath.c (make_path): Port to hosts where leading "//" is
53375         special.
53376         * lib/yesno.c: Include getline.h, not ctype.h.
53377         (yesno): Don't remove leading white space; POSIX doesn't allow it.
53378         Use getline to remove arbitrary restriction on response length.
53379
53380 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
53381
53382         * config/srclist-update: Spell out "Street" in FSF postal
53383         mail address; this is the style the FSF seems to prefer.
53384
53385         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
53386         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
53387         this updates FSF postal mail address.
53388
53389         Sync from coreutils.
53390         * modules/unlinkdir: New file.
53391         * modules/yesno (Depends-on): Add getline.
53392         * MODULES.html.sh (File system functions): Add unlinkdir.
53393
53394 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
53395
53396         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
53397         lib/strsep.h:
53398         Change the initial comment to refer to GPL, not LGPL.
53399         gnulib-tool will change it to LGPL as needed.
53400
53401         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
53402         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
53403         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
53404         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
53405         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
53406         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
53407         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
53408         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
53409         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
53410         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
53411         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
53412         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
53413         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
53414         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
53415         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
53416         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
53417         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
53418         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
53419         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
53420         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
53421         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
53422         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
53423         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
53424         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
53425         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
53426         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
53427         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
53428         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
53429         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
53430         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
53431         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
53432         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
53433         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
53434         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
53435         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
53436         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
53437         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
53438         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
53439         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
53440         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
53441         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
53442         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
53443         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
53444         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
53445         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
53446         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
53447         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
53448         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
53449         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
53450         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
53451         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
53452         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
53453         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
53454         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
53455         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
53456         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
53457         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
53458         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
53459         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
53460         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
53461         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
53462         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
53463         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
53464         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
53465         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
53466         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
53467         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
53468         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
53469         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
53470         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
53471         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
53472         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
53473         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
53474         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
53475         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
53476         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
53477         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
53478         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
53479         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
53480         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
53481         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
53482         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
53483         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
53484         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
53485         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
53486         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
53487         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
53488         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
53489         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
53490         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
53491         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
53492         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
53493         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
53494         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
53495         lib/yesno.c, lib/yesno.h:
53496         Update FSF postal mail address.
53497
53498 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
53499
53500         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
53501         tests/test-memmem.c, tests/test-stpncpy.c:
53502         Update FSF postal mail address.
53503
53504 2005-05-13  Bruno Haible  <bruno@clisp.org>
53505
53506         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
53507         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
53508         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
53509         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
53510         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
53511         Add support for 64-bit integers in the MSVC compiler.
53512
53513 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
53514
53515         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
53516
53517 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
53518
53519         * gnulib-tool (func_import): Sort and uniquify recommended includes.
53520
53521 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
53522
53523         * doc/getdate.texi (General date syntax): Don't say that date
53524         date --iso-8601=ns generates acceptable dates; it doesn't yet.
53525         Problem reported by Nic Ferrier.
53526
53527 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
53528
53529         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
53530         specified in ai_socktype. Fix invalid ai_protocol
53531         check. ai_protocol is usually set to 0 or depending on
53532         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
53533         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
53534         ai_socktype / ai_protocol in the returned addrinfo structure.
53535
53536 2005-05-10  Simon Josefsson  <jas@extundo.com>
53537
53538         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
53539         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
53540
53541 2005-05-10  Karl Berry  <karl@gnu.org>
53542
53543         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
53544         (from http://www.gnu.org/licenses).
53545         * doc/COPYING.LIB: also rename to COPYING.LESSER.
53546         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
53547         fdl.texi suffices.
53548
53549 2005-05-10  Karl Berry  <karl@gnu.org>
53550
53551         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
53552         (COPYING.DOC): remove.
53553
53554         * config/srclist-update: new FSF address.
53555
53556 2005-05-10  Derek Price  <derek@ximbiot.com>
53557
53558         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
53559         possible.
53560
53561 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
53562             Bruno Haible  <bruno@clisp.org>
53563
53564         * modules/inet_ntop: New file.
53565         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
53566         inet_ntop.
53567
53568 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
53569             Bruno Haible  <bruno@clisp.org>
53570
53571         * m4/inet_ntop.m4: New file.
53572
53573 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
53574             Bruno Haible  <bruno@clisp.org>
53575
53576         * lib/inet_ntop.h: New file.
53577         * lib/inet_ntop.c: New file, from glibc with modifications.
53578
53579 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
53580
53581         * modules/time_r (License): Change to LGPL.
53582         * modules/extensions (License): Change to LGPL.  Actually,
53583         the license is more permissive than that, but currently gnulib-tool
53584         doesn't know how to handle more-permissive licenses.
53585
53586         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
53587         Problem reported by Dave Love.
53588
53589 2005-05-08  Jim Meyering  <jim@meyering.net>
53590
53591         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
53592         blank.
53593
53594 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
53595
53596         * modules/argmatch (Depends-on): Add stdbool.
53597         * modules/backupfile (Depends-on): Likewise.
53598         * modules/chdir-long (Depends-on): Likewise.
53599         * modules/closeout (Depends-on): Likewise.
53600         * modules/cycle-check (Depends-on): Likewise.
53601         * modules/dirname (Depends-on): Likewise.
53602         * modules/fnmatch (Depends-on): Likewise.
53603         * modules/fsusage (Depends-on): Likewise.
53604         * modules/fwriteerror (Depends-on): Likewise.
53605         * modules/getcwd (Depends-on): Likewise.
53606         * modules/getloadavg (Depends-on): Likewise.
53607         * modules/hard-locale (Depends-on): Likewise.
53608         * modules/makepath (Depends-on): Likewise.
53609         * modules/mountlist (Depends-on): Likewise.
53610         * modules/nanosleep (Depends-on): Likewise.
53611         * modules/posixtm (Depends-on): Likewise.
53612         * modules/quotearg (Depends-on): Likewise.
53613         * modules/readtokens (Depends-on): Likewise.
53614         * modules/readtokens0 (Depends-on): Likewise.
53615         * modules/readutmp (Depends-on): Likewise.
53616         * modules/save-cwd (Depends-on): Likewise.
53617         * modules/strftime (Depends-on): Likewise.
53618         * modules/userspec (Depends-on): Likewise.
53619         * modules/utimecmp (Depends-on): Likewise.
53620         * modules/xgetcwd (Depends-on): Likewise.
53621         * modules/xnanosleep (Depends-on): Likewise.
53622         * modules/xstrtod (Depends-on): Likewise.
53623         * modules/yesno (Depends-on): Likewise.
53624
53625 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
53626
53627         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
53628         needless checks.
53629
53630 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53631
53632         Merge from coreutils.  Among other things,
53633         add bulletproofing for cases where stdin, stdout, or stderr are closed.
53634         * lib/fd-safer.c: New file.
53635         * lib/fcntl-safer.h, open-safer.c: Remove.
53636         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
53637         * lib/dup-safer.c: Include unistd-safer.h first.
53638         Don't include errno.h.
53639         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
53640         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
53641         * lib/file-type.c: Rely on file-type.h change.
53642         * lib/getloadavg.c: Include unistd-safer.h.
53643         (getloadavg): Use safer open.
53644         * lib/getusershell.c: Include "stdio-safer.h".
53645         (getusershell): Use safer fopen.
53646         * lib/long-options.c (long_options): Use NULL rather than 0.
53647         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
53648         'free'.
53649         * lib/modechange.c: Likewise.
53650         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
53651         (MODE_DONE): New constant.
53652         (struct mode_change): Remove 'next' member.
53653         (make_node_op_equals): New function; like the old one of the
53654         same name, except it allocates an array.
53655         (mode_compile, mode_create_from_ref): Use it.
53656         (mode_compile): Allocate result as an array, not a linked list.
53657         Parse octal string ourself, so that we catch mistakes like "+0".
53658         (mode_adjust): Arg is an array, not a linked list.
53659         * lib/modechange.c: Include stat-macros.h, xalloc.h.
53660         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
53661         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
53662         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
53663         Remove.  This is now stat-macros.h's job.
53664         (talloc): Remove.  All callers replaced by xalloc, so that
53665         our invokers don't have to worry about reporting memory failures.
53666         (make_node_op_equals): Remove.
53667         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
53668         New constants.
53669         (struct mode_change): Moved here from modechange.h.
53670         (mode_append_entry): Remove.
53671         (mode_compile): Remove MASKED_OPS arg, since it encouraged
53672         apps to have incorrect behavior.  Use simpler algorithm for head
53673         and tail.  Don't futz with umask; that's now the job of mode_adjust.
53674         Detect more invalid usages rather than having somewhat-random behavior.
53675         Don't insert an "a=" action, as that leads to incorrect behavior.
53676         (mode_compile, mode_create_from_ref): Return NULL on error instead
53677         of an enum, since now there's only one way to have an error.  All
53678         callers changed.
53679         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
53680         at the correct time.  Simplify calculation of "+u" and its ilk.
53681         Don't mishandle "+X".
53682         (mode_free): Remove "register" and localize decls.
53683         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
53684         (struct mode_change): Move to modechange.c; callers don't
53685         need to see this stuff.
53686         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
53687         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
53688         (mode_change, mode_adjust): Reflect the new signatures noted above.
53689         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
53690         that might redefine system include files.
53691         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
53692         (my_usleep): Use NULL rather than (void *) 0.
53693         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
53694         Use siginterrupt to specify that system calls should be interrupted.
53695         (rpl_nanosleep): Move initialization of suspended closer to call of
53696         my_usleep.
53697         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
53698         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
53699         (desirable_utmp_entry): New function.
53700         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
53701         using x2nrealloc, to simplify logic.
53702         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
53703         size calculation.  Do not assume utmp file is a regular file.
53704         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
53705         (READ_UTMP_CHECK_PIDS): New constant.
53706         * lib/save-cwd.c: Include unistd-safer.h.
53707         (save_cwd): Use fd_safer.
53708         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
53709         [!_LIBC] Include "stat-macros.h" instead.
53710         * lib/unistd-safer.h (fd_safer): New decl.
53711
53712 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53713
53714         * modules/getloadavg (Depends-on): Add unistd-safer.
53715         * modules/getusershell (Depends-on): Add stdio-safer.
53716         * modules/lstat (Depends-on): Remove xalloc.
53717         * modules/mkstemp (Depends-on): Add stat-macros.
53718         * modules/modechange (Depends-on): Remove xstrtol.
53719         Add stat-macros, xalloc.
53720         * modules/save-cwd (Depends-on): Add unistd-safer.
53721         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
53722         * modules/unistd-safer (Files): Add lib/fd-safer.c
53723         (Makefile.am): Remove lib_SOURCES.
53724
53725         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
53726         Remove fcntl-safer; unistd-safer supersedes it.
53727
53728 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53729
53730         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
53731         AC_HEADER_STAT.
53732         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
53733         (gl_PREREQ_CHOWN): Remove.
53734         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
53735         it.  Don't require AC_HEADER_STAT.
53736         (gl_PREREQ_LSTAT): Remove.
53737         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
53738         Don't require AC_HEADER_STAT.
53739         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
53740         (gl_PREREQ_RMDIR): Remove.
53741         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
53742         mention stat-macros.h or AC_HEADER_STAT, since we'll make
53743         the stat-macros module a prerequisite.
53744         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
53745         * m4/filemode.m4 (gl_FILEMODE): Likewise.
53746         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
53747         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
53748         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
53749         variable names.
53750         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
53751         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
53752         variable prefixes.
53753         * m4/fcntl-safer.m4: Remove.
53754         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
53755         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
53756         Invoke gl_PREREQ_FD_SAFER.
53757         (gl_PREREQ_FD_SAFER): New macro.
53758         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
53759         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
53760         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
53761         Remove duplicate call to AC_LIBOBJ(readutmp).
53762         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
53763
53764         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
53765         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
53766
53767 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
53768
53769         * MODULES.html.sh (Misc): Add byteswap.
53770
53771 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53772
53773         * modules/getcwd (Depends-on): Add extensions.
53774         * modules/openat (Depends-on): Likewise.
53775
53776 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53777
53778         * modules/byteswap: New file.
53779
53780 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53781
53782         * m4/byteswap.m4: New file.
53783
53784 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
53785
53786         * lib/byteswap_.h: New file.
53787
53788 2005-04-25  Karl Berry  <karl@gnu.org>
53789
53790         * m4/gettext.m4: Update from GNU gettext 0.14.4.
53791
53792 2005-04-25  Albert Chin  <china@thewrittenword.com>
53793
53794         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
53795         Toolkit C bug.
53796
53797 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
53798
53799         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
53800         (func_ln_if_changed) Remove forcibly for no error message
53801         in case file does not exist.
53802
53803 2005-04-19  Simon Josefsson  <jas@extundo.com>
53804
53805         * gnulib-tool (Options): Make --symlink mean --symbolic.
53806
53807 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
53808
53809         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
53810
53811 2005-04-16  Simon Josefsson  <jas@extundo.com>
53812
53813         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
53814
53815 2005-04-15  Simon Josefsson  <jas@extundo.com>
53816
53817         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
53818
53819 2005-04-15  Simon Josefsson  <jas@extundo.com>
53820
53821         * gnulib-tool: Rename --symlink to --symbolic.
53822
53823 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
53824
53825         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
53826         symbolic links to files instead of copying/moving.  Add --aux-dir,
53827         specifying directory relative --dir where auxiliary build tools
53828         are placed.
53829
53830 2005-04-14  Bruno Haible  <bruno@clisp.org>
53831
53832         * modules/allocsa (License): Change to LGPL.
53833         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
53834
53835 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
53836
53837         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
53838         that "UTC +1 second" continues to work.  Problem reported
53839         by Dmitry V. Levin.
53840         (relunit_snumber): New rule.
53841         (relunit): Use it.
53842
53843 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
53844
53845         * lib/getdate.y (universal_time_zone_table): New constant.
53846         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
53847         universal_time_zone_table.
53848         (lookup_zone): Prefer universal_time_zone_table to
53849         local_time_zone_table, so that "GMT" time stamps are allowed in
53850         London during the summer.  Problem reported by Ian Abbott.
53851
53852 2005-04-12  Jim Meyering  <jim@meyering.net>
53853
53854         * lib/human.c (humblock): Set *options even when returning due to
53855         xstrtoumax conversion failure.  Thanks to a used-uninitialized
53856         warning from gcc-4.
53857
53858 2005-04-09  Jim Meyering  <jim@meyering.net>
53859
53860         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
53861         -Wuninitialized: initialize tm0.tm_year.
53862
53863 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
53864
53865         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
53866         count, since there's no maximum.  All uses changed.
53867         Add member dsts_seen.
53868         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
53869         not being INT_MAX.
53870         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
53871         Use pc_rels_seen to decide whther a date is absolute.
53872
53873         * lib/getdate.y (number): Don't overwrite year.
53874         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
53875         check.
53876
53877 2005-04-02  Simon Josefsson  <jas@extundo.com>
53878
53879         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
53880         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
53881
53882 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
53883
53884         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
53885         where no absolute path name can be longer than PATH_MAX.
53886
53887 2005-03-27  Jim Meyering  <jim@meyering.net>
53888
53889         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
53890
53891 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
53892
53893         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
53894         "one's complement" -> "ones' complement" in comment, as per Knuth.
53895         "value of type" -> "type or expression" in comment.
53896         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
53897
53898 2005-03-26  Jim Meyering  <jim@meyering.net>
53899
53900         Comment nits.
53901         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
53902         Correct typos: s/or/of/.
53903
53904 2005-03-26  Jim Meyering  <jim@meyering.net>
53905
53906         * modules/check-include-files: Move to ../ and rename to...
53907         * check-module: ...this.
53908
53909 2005-03-25  Jim Meyering  <jim@meyering.net>
53910
53911         * modules/xvasprintf (Files): Add xalloc.h.
53912
53913 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
53914
53915         * modules/gettext (Files): config/config.rpath ->
53916         build-aux/config.rpath
53917         * modules/iconv (Files): Likewise.
53918         Problem reported by Oskar Liljeblad.
53919
53920 2005-03-23  Jim Meyering  <jim@meyering.net>
53921
53922         * modules/check-include-files: New script to check for
53923         missing dependencies, multiple includes, etc.
53924
53925         * modules/c-strtold (Depends-on): Add xalloc.
53926         * modules/c-strtod (Depends-on): Add xalloc.
53927         * modules/hash (Depends-on): Add xalloc.
53928         (Files): Remove lib/xalloc.h.
53929
53930         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
53931         * modules/userspec (Files): Add lib/inttostr.h.
53932
53933 2005-03-23  Jim Meyering  <jim@meyering.net>
53934
53935         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
53936
53937 2005-03-22  Jim Meyering  <jim@meyering.net>
53938
53939         * modules/stat-macros: New module.
53940         * modules/canonicalize, modules/euidaccess, modules/file-type,
53941         * modules/filemode, modules/lchown, modules/makepath,
53942         * modules/rmdir, modules/stat: Depend on new stat-macros module
53943         rather than listing lib/stat-macros.h manually.
53944         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
53945
53946 2005-03-22  Jim Meyering  <jim@meyering.net>
53947
53948         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
53949
53950 2005-03-22  Bruno Haible  <bruno@clisp.org>
53951
53952         * config/srclist.txt: Replace target directory 'config' with
53953         'build-aux'.
53954         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
53955         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
53956         ../build-aux/.
53957
53958 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
53959
53960         * modules/chdir-long (Depends-on): Add mempcpy.
53961
53962         * modules/acl, modules/backupfile, modules/c-strtod,
53963         modules/c-strtold, modules/canon-host, modules/canonicalize,
53964         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
53965         modules/exclude, modules/exitfail, modules/file-type,
53966         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
53967         modules/getdate, modules/getline, modules/getpagesize,
53968         modules/getpass, modules/getugroups, modules/group-member,
53969         modules/hard-locale, modules/hash, modules/human, modules/idcache,
53970         modules/inttostr, modules/long-options, modules/makepath,
53971         modules/md5, modules/memcasecmp, modules/memcoll,
53972         modules/modechange, modules/mountlist, modules/path-concat,
53973         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
53974         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
53975         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
53976         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
53977         modules/strftime, modules/strndup, modules/strverscmp,
53978         modules/timespec, modules/unlocked-io, modules/userspec,
53979         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
53980         modules/yesno:
53981         Remove lib_SOURCES line from Makefile.am section, as this is now
53982         done automatically by the corresponding Autoconf macro.
53983
53984 2005-03-21  Jim Meyering  <jim@meyering.net>
53985
53986         Changes imported from coreutils.
53987
53988         * lib/cycle-check.c: Don't include xalloc.h.
53989
53990         * lib/path-concat.c: Don't include assert.h.
53991         (path_concat): Remove assertion that would have triggered
53992         for ABASE starting with more than one slash.
53993         Reported by Andreas Schwab.
53994
53995         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
53996         properly when ABASE is an absolute file name.
53997         Correct the description of this function.
53998         Include <assert.h>.
53999         Add an assertion and a test driver.
54000         This fixes a bug introduced on 2004-07-02.
54001         Andreas Schwab reported the resulting failure of cp --parents:
54002         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
54003
54004 2005-03-21  Jim Meyering  <jim@meyering.net>
54005
54006         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
54007         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
54008
54009 2005-03-21  Jim Meyering  <jim@meyering.net>
54010         and  Paul Eggert  <eggert@cs.ucla.edu>
54011
54012         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
54013         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
54014         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
54015         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
54016         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
54017         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
54018         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
54019         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
54020         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
54021         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
54022         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
54023         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
54024         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
54025         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
54026         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
54027         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
54028         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
54029         for these modules.
54030
54031 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
54032
54033         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
54034         (which shouldn't happen), generate nothing instead of returning 0
54035         immediately, so that nstrftime (NULL, ...) doesn't return 0.
54036
54037 2005-03-16  Bruno Haible  <bruno@clisp.org>
54038
54039         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
54040         HAVE_LONGLONG_64BIT.
54041
54042 2005-03-16  Bruno Haible  <bruno@clisp.org>
54043
54044         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
54045         HAVE_LONGLONG_64BIT.
54046
54047 2005-03-16  Bruno Haible  <bruno@clisp.org>
54048
54049         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
54050         HAVE_LONGLONG_64BIT.
54051
54052 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
54053
54054         * lib/strftime.c (my_strftime): Prepend space to format so that we can
54055         reliably distinguish strftime failure from empty output on POSIX
54056         hosts.
54057
54058 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
54059
54060         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
54061         (iconv_string): Don't guess a size-zero buffer, as that might cause
54062         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
54063         result would be 'too large', where 'too large' is (heuristically)
54064         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
54065         overflow concerns.  This will prevent some unwanted malloc failures
54066         when the inputs are very large.
54067
54068 2005-03-15  Karl Berry  <karl@gnu.org>
54069
54070         * config/srclist.txt (config.rpath): from gettext.
54071         * config/config.rpath: update.
54072
54073 2005-03-15  Bruno Haible  <bruno@clisp.org>
54074
54075         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
54076         to 'negate'.
54077
54078         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
54079         variable.
54080
54081         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
54082         results.
54083
54084 2005-03-14  Simon Josefsson  <jas@extundo.com>
54085
54086         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
54087         <fx@gnu.org>.
54088
54089 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
54090
54091         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
54092         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
54093         intprops.h.
54094         * lib/strtol.c: Likewise.
54095
54096 2005-03-14  Jim Meyering  <jim@meyering.net>
54097
54098         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
54099         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
54100         to be nonzero so that we (and caller) can detect the difference
54101         between a valid zero-length expansion and an error return, even
54102         when the underlying strftime fails before writing anything into
54103         that location.
54104
54105 2005-03-14  Bruno Haible  <bruno@clisp.org>
54106
54107         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
54108         Update from GNU gettext 0.14.3.
54109
54110 2005-03-10  Jim Meyering  <jim@meyering.net>
54111
54112         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
54113
54114 2005-03-10  Jim Meyering  <jim@meyering.net>
54115
54116         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
54117         so that this module works on systems without fchdir.
54118
54119 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
54120
54121         Factor int-properties macros into a single file, except for
54122         glibc-related files.
54123         * lib/intprops.h: New file.
54124         * lib/getloadavg.c: Include it instead of limits.h.
54125         (INT_STRLEN_BOUND): Remove.
54126         * lib/human.c: Include intprops.h.
54127         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
54128         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
54129         302/1000.
54130         * lib/inttostr.h: Include intprops.h instead of limits.h.
54131         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
54132         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
54133         for consistency with intprops.h.
54134         (time_t_is_integer, twos_complement_arithmetic): Use them.
54135         * lib/sig2str.h: Include <signal.h>, intprops.h.
54136         (INT_STRLEN_BOUND): Remove.
54137         * lib/strftime.c (TYPE_SIGNED): Remove.
54138         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
54139         * lib/strtol.c: Adjust comments to match intprops.h.
54140         * lib/userspec.c: Include intprops.h.
54141         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
54142         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
54143         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
54144         instead of rolling our own expressions.
54145         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
54146
54147         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
54148         instead of int.
54149         (my_strftime): Do not mishandle years close to INT_MAX, by doing
54150         the right thing even if adding 1900 would overflow.  Similarly
54151         for tm_mon + 1 and tm_yday + 1.
54152         Make %Y always equivalent to %C%y, and similarly for %G and %g.
54153         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
54154         (DO_SIGNED_NUMBER): New macro.
54155         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
54156
54157 2005-03-07  Bruno Haible  <bruno@clisp.org>
54158
54159         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
54160
54161 2005-03-07  Bruno Haible  <bruno@clisp.org>
54162
54163         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
54164
54165 2005-03-04  Derek R. Price  <derek@ximbiot.com>
54166
54167         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
54168         (func_import): Only replace files via --import when they have actually
54169         changed.
54170
54171 2005-03-03  Derek R. Price  <derek@ximbiot.com>
54172
54173         * m4/mmap-anon.m4: New file.
54174         * m4/pagealign_alloc.m4: New file.
54175
54176 2005-03-03  Derek R. Price  <derek@ximbiot.com>
54177             Bruno Haible  <bruno@clisp.org>
54178
54179         * modules/pagealign_alloc: New file.
54180         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
54181
54182 2005-03-03  Derek R. Price  <derek@ximbiot.com>
54183             Bruno Haible  <bruno@clisp.org>
54184
54185         * lib/pagealign_alloc.h: New file.
54186         * lib/pagealign_alloc.c: New file.
54187
54188 2005-03-03  Bruno Haible  <bruno@clisp.org>
54189
54190         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
54191         Use an all-permissive copyright notice, recommended by RMS.
54192
54193 2005-03-02  Bruno Haible  <bruno@clisp.org>
54194
54195         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
54196         of AIX, the replacement has to be done only after <string.h> is
54197         included, therefore not in config.h. stpncpy.h does the replacement,
54198         and stpncpy.c uses it.
54199
54200 2005-03-02  Bruno Haible  <bruno@clisp.org>
54201
54202         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
54203         stpncpy.c uses it.
54204
54205 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
54206
54207         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
54208         The workaround isn't strictly needed for POSIX conformance, and
54209         it's too much of a pain to configure and maintain.  We'll ask
54210         people to fix their kernels instead.
54211         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
54212         (NANOSLEEP_BUG_WORKAROUND): Remove.
54213         (xnanosleep): Remove the workaround.
54214
54215 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
54216
54217         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
54218         Reported by Derek Price.
54219         (Include): Add "timespec.h".
54220
54221         * modules/xnanosleep (Depends-on): Remove gethrxtime.
54222
54223 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
54224
54225         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
54226         to detect nanosleep bug.
54227
54228 2005-03-01  Bruno Haible  <bruno@clisp.org>
54229
54230         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
54231
54232 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
54233
54234         * modules/gethrxtime: New file.
54235         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
54236         (Depends-on): Add gethrxtime.
54237         (configure.ac): Add gl_XNANOSLEEP.
54238         (Makefile.am): Remove lib_SOURCES line.
54239
54240 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
54241
54242         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
54243         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
54244
54245 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
54246
54247         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
54248         * lib/timespec.h (gettime): Return void, since it always
54249         succeeds now.  All uses changed.
54250         * lib/gettime.c (gettime) Likewise.
54251         [HAVE_NANOTIME]: Prefer nanotime.
54252         Assume gettimeofday succeeds, as POSIX requires.
54253         Assime time () succeeds, since other code already does.
54254         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
54255         (timespec_subtract): Remove.
54256         (NANOSLEEP_BUG_WORKAROUND): New constant.
54257         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
54258         things considerably.  Use it only on GNU/Linux hosts, since the
54259         workaround shouldn't be needed elsewhere.
54260
54261 2005-02-24  Bruno Haible  <bruno@clisp.org>
54262
54263         * modules/gettext (Files): Add m4/glibc2.m4.
54264
54265 2005-02-24  Bruno Haible  <bruno@clisp.org>
54266
54267         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
54268         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
54269         * m4/progtest.m4:
54270         Update from GNU gettext 0.14.2.
54271         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
54272
54273 2005-02-24  Bruno Haible  <bruno@clisp.org>
54274
54275         * lib/localcharset.c: Update from GNU gettext 0.14.2.
54276         * lib/config.charset: Update from GNU gettext 0.14.2.
54277
54278 2005-02-24  Bruno Haible  <bruno@clisp.org>
54279
54280         * lib/gettext.h: Update from GNU gettext 0.14.2.
54281
54282 2005-02-23  Simon Josefsson  <jas@extundo.com>
54283
54284         * m4/iconvme.m4: New file.
54285
54286 2005-02-23  Jim Meyering  <jim@meyering.net>
54287
54288         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
54289         change.
54290         Thanks to Bruno Haible for catching it.
54291
54292 2005-02-22  Simon Josefsson  <jas@extundo.com>
54293
54294         * modules/iconvme: New file.
54295
54296         * MODULES.html.sh: Add iconvme.
54297
54298 2005-02-22  Simon Josefsson  <jas@extundo.com>
54299
54300         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
54301
54302 2005-02-22  Simon Josefsson  <jas@extundo.com>
54303
54304         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
54305
54306 2005-02-22  Jim Meyering  <jim@meyering.net>
54307
54308         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
54309         s/ifndef/ifdef/.
54310
54311 2005-02-20  Neil Conway  <neilc@samurai.com>
54312
54313         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
54314         returned by OSX/Darwin if the specified buffer is not large
54315         enough for the hostname.
54316
54317 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54318
54319         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
54320         pass it to _help, otherwise the latter coredumps trying to
54321         dereference state.root_argp.
54322
54323 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
54324
54325         * modules/chdir-long (Depends-on): Add memrchr.
54326         * modules/memrchr (Files): Add lib/memrchr.h.
54327         (Include): "memrchr.h".
54328
54329 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
54330
54331         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
54332
54333 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
54334
54335         * lib/memrchr.h: New file.
54336         * lib/chdir-long.c: Include it.
54337         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
54338         Don't bother including stddef.h.
54339
54340 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
54341
54342         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
54343         inclusion.
54344         Include <sys/types.h>, for dev_t.
54345         (ME_DUMMY, ME_REMOTE): Move from here....
54346         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
54347         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
54348         Dmitry V. Levin.
54349         Include mountlist.h first, to test the interface.
54350
54351 2005-01-29  Bruno Haible  <bruno@clisp.org>
54352
54353         * lib/progname.c (program_name): Initialize.
54354         Needed when linking statically on MacOS X.
54355
54356 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
54357
54358         Sync from coreutils.
54359         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
54360         (Depends-on): Add c-strtod.
54361         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
54362
54363 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
54364
54365         Sync from coreutils.
54366         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
54367
54368         Remove files that are specific to coreutils.
54369         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
54370
54371 2005-01-28  Bruno Haible  <bruno@clisp.org>
54372
54373         * modules/javacomp: New file.
54374         * MODULES.html.sh (Java): Add javacomp.
54375
54376 2005-01-28  Bruno Haible  <bruno@clisp.org>
54377
54378         * m4/javacomp.m4: New file, from GNU gettext.
54379
54380 2005-01-28  Bruno Haible  <bruno@clisp.org>
54381
54382         * lib/javacomp.sh.in: New file, from GNU gettext.
54383         * lib/javacomp.h: New file, from GNU gettext.
54384         * lib/javacomp.c: New file, from GNU gettext.
54385
54386 2005-01-26  Simon Josefsson  <jas@extundo.com>
54387
54388         * lib/gai_strerror.c: Use GPL in header.
54389
54390 2005-01-26  Bruno Haible  <bruno@clisp.org>
54391
54392         * modules/javaexec: New file.
54393         * MODULES.html.sh (Java): Add javaexec.
54394
54395 2005-01-26  Bruno Haible  <bruno@clisp.org>
54396
54397         * m4/javaexec.m4: New file, from GNU gettext.
54398
54399 2005-01-26  Bruno Haible  <bruno@clisp.org>
54400
54401         * lib/javaexec.sh.in: New file, from GNU gettext.
54402         * lib/javaexec.h: New file, from GNU gettext.
54403         * lib/javaexec.c: New file, from GNU gettext.
54404
54405 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54406
54407         * modules/lchown (Depends-on): Remove lchown.h
54408
54409 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54410
54411         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
54412         must be defined if the header file was not found, in order
54413         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
54414
54415 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54416
54417         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
54418         initializers for struct pentry_state.
54419         (__argp_error): Check return value of __asprintf
54420         (__argp_failure): Translate error message
54421
54422         * lib/argp-parse.c: Removed braces around the expansion of N_()
54423
54424 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
54425
54426         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
54427         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
54428         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
54429         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
54430         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
54431         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
54432         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
54433         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
54434         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
54435         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
54436         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
54437         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
54438         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
54439         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
54440         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
54441         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
54442         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
54443         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
54444         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
54445         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
54446         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
54447         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
54448         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
54449         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
54450         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
54451         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
54452         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
54453         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
54454         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
54455         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
54456         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
54457         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
54458         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
54459         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
54460         xstrtol.m4, xstrtoumax.m4, yesno.m4:
54461         Use an all-permissive copyright notice, recommended by RMS.
54462
54463 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
54464
54465         * modules/chdir-long (Depends-on): Remove mempcpy.
54466
54467 2005-01-21  Jim Meyering  <jim@meyering.net>
54468
54469         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
54470         same value as for Solaris 9.
54471
54472         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
54473         component length.  This included changing the parameter to be
54474         of type `char *' rather than `char const *'.
54475         * lib/chdir-long.h (chdir_long): Update prototype.
54476
54477         * lib/openat.c (fdopendir, fstatat): New functions.
54478         * lib/openat.h: Include headers required for use of DIR and struct
54479         stat.
54480         [AT_SYMLINK_NOFOLLOW]: Define.
54481         (fdopendir, fstatat): Add prototypes.
54482
54483 2005-01-21  Bruno Haible  <bruno@clisp.org>
54484
54485         * modules/classpath: New file.
54486         * MODULES.html.sh (Java): Add classpath.
54487
54488 2005-01-21  Bruno Haible  <bruno@clisp.org>
54489
54490         * lib/classpath.h: New file, from GNU gettext.
54491         * lib/classpath.c: New file, from GNU gettext.
54492
54493 2005-01-20  Simon Josefsson  <jas@extundo.com>
54494
54495         * modules/version-etc-fsf: New file.
54496
54497 2005-01-20  Simon Josefsson  <jas@extundo.com>
54498
54499         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
54500         * lib/version-etc.c: Remove version_etc_copyright.
54501         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
54502         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
54503
54504 2005-01-20  Simon Josefsson  <jas@extundo.com>
54505
54506         * lib/base64.h (isbase64): Add.
54507
54508         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
54509         using a unsigned prototype, don't inline.
54510         (base64_decode): Use it.
54511
54512 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
54513
54514         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
54515         it.
54516
54517 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
54518
54519         * lib/save-cwd.c (save_cwd): Remove code to support the case
54520         where fchdir is missing or flaky.
54521
54522 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
54523
54524         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
54525
54526 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
54527
54528         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
54529         AC_LIBSOURCES now does this.
54530         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
54531         with new ullong_max module.
54532
54533 2005-01-19  Bruno Haible  <bruno@clisp.org>
54534
54535         * modules/sh-quote: New file.
54536         * MODULES.html.sh (Executing programs): Add sh-quote.
54537
54538 2005-01-19  Bruno Haible  <bruno@clisp.org>
54539
54540         * lib/sh-quote.h: New file, from GNU gettext.
54541         * lib/sh-quote.c: New file, from GNU gettext.
54542
54543 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
54544
54545         Merge from coreutils.
54546         * m4/ullong_max.m4: New file.
54547         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
54548         (gl_MACROS): Assume localeconv exists.
54549
54550 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
54551
54552         Merge changes from coreutils, as described below in several
54553         changelogs dated today.
54554
54555         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
54556         (O_DIRECTORY): Remove; not needed here, since "." must be
54557         a directory.  All uses removed.
54558         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
54559         universal on Suns, and we also need to test for IRIX.
54560         Revamp code to use 'if' rather than '#if'.
54561         Avoid unnecessary comparison of cwd->desc to 0.
54562
54563         * lib/utimens.c (futimens): Robustify the previous patch, by checking
54564         for known valid error numbers rather than observed invalid ones.
54565
54566 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
54567
54568         * modules/ullong_max: New file.
54569
54570         * modules/chdir-long, modules/openat: New files.
54571         * modules/save-cwd (Depends-on): Depend on chdir-long.
54572         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
54573
54574 2005-01-18  Jim Meyering  <jim@meyering.net>
54575
54576         Merge from coreutils.
54577         * m4/chdir-long.m4, m4/openat.m4: New files.
54578         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
54579         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
54580         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
54581         is sane and DOES follow symlinks.  Besides, testing 20 different
54582         systems found no broken chown implementations.
54583         Prompted by a change in rsync's copy of this macro.
54584         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
54585
54586         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
54587
54588         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
54589         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
54590         NULL-means-set-to-current-time semantics.
54591         Remove temporary file immediately, rather than waiting
54592         for configure's at-exit trap code to do it.
54593
54594 2005-01-18  Jim Meyering  <jim@meyering.net>
54595
54596         * lib/version-etc.c (version_etc_copyright): Update copyright date.
54597
54598         * lib/utimens.c (futimens): Account for the fact that futimes
54599         can also fail with errno == ENOSYS or errno == ENOENT.
54600         Patch from Dmitry V. Levin.
54601
54602         Change the name of the robust chdir function from chdir to chdir_long.
54603         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
54604         (restore_cwd): Use chdir_long, not chdir.
54605         * lib/chdir-long.c: Renamed from chdir.c.
54606         * lib/chdir-long.h: Renamed from chdir.h.
54607         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
54608         Hurd.
54609
54610 2005-01-18  Bruno Haible  <bruno@clisp.org>
54611
54612         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
54613         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
54614         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
54615         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
54616         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
54617         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
54618         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
54619         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
54620         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
54621         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
54622         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
54623         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
54624         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
54625         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
54626         Use an all-permissive copyright notice, recommended by RMS.
54627
54628 2005-01-18  Bob Proulx  <bob@proulx.com>
54629
54630         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
54631         simplify offsetof() macro construct to avoid compile failure with
54632         native HP-UX 11.0 ANSI C compiler.
54633
54634 2005-01-17  Bruno Haible  <bruno@clisp.org>
54635
54636         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
54637         redundant because stpncpy.m4 takes care of it.
54638
54639 2005-01-17  Bruno Haible  <bruno@clisp.org>
54640
54641         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
54642
54643 2005-01-17  Bruno Haible  <bruno@clisp.org>
54644
54645         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
54646         used.
54647
54648 2005-01-17  Bruno Haible  <bruno@clisp.org>
54649
54650         * lib/fwriteerror.h (fwriteerror): Change specification to include
54651         fclose.
54652         * lib/fwriteerror.c: Include <stdbool.h>.
54653         (fwriteerror): At the end, close the file stream. Record whether
54654         stdout was already closed.
54655
54656 2005-01-17  Bruno Haible  <bruno@clisp.org>
54657
54658         * lib/execute.c (environ): Declare if needed.
54659         * lib/pipe.c (environ): Likewise.
54660         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
54661
54662 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54663
54664         * modules/argp: Depend on vsnprintf
54665
54666 2005-01-10  Jim Meyering  <jim@meyering.net>
54667
54668         * modules/closeout (Depends-on): Add atexit.
54669
54670 2005-01-06  Bruno Haible  <bruno@clisp.org>
54671
54672         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
54673
54674 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
54675
54676         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
54677         definitions to be after all include files, to avoid collisions.
54678         Problem reported by Bob Proulx.
54679
54680 2005-01-04  Jim Meyering  <jim@meyering.net>
54681
54682         Changes imported from coreutils.
54683         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
54684         as the mkstemp template, use a temporary directory and an
54685         8.3-friendly template to avoid trouble on systems like DJGPP.
54686         Reported by Juan M. Guerrero via Stepan Kasal.
54687         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
54688         close. Remove the temporary directory right away, rather than waiting
54689         for configure's at-exit trap code to do it.
54690         Suggestion from Stepan Kasal.
54691
54692 2005-01-01  Simon Josefsson  <jas@extundo.com>
54693
54694         * gnulib-tool: Print #include directives when --import'ing.
54695
54696 2004-12-28  Simon Josefsson  <jas@extundo.com>
54697
54698         * tests/test-base64.c: Include required header files.  Remove
54699         unused variables.
54700
54701 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
54702
54703         * modules/error (Depends-on): Remove gettext.
54704
54705 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
54706
54707         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
54708         not needed.  This removes a dependency on the gettext module.
54709         [defined _LIBC]: Do not include <libintl.h>; not needed.
54710
54711 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
54712
54713         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
54714         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
54715
54716 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
54717
54718         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
54719         HAVE_DECL_STRTOLD.
54720
54721 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54722
54723         * modules/getdate (Depends-on): Remove alloca-opt.
54724
54725 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54726
54727         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
54728
54729 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
54730
54731         * lib/argp-parse.c: Include <stddef.h>.
54732         (alignof, alignto): New macros.
54733         (parser_init): Don't assume that void * is aligned sufficiently
54734         for struct option.
54735
54736         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
54737         need to extend the stack.
54738         (YYINITDEPTH): New macro, so that the initial stack isn't overly
54739         large.
54740
54741 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
54742
54743         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
54744
54745 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
54746
54747         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
54748         (2004-10-24) change.  Apparently this was a false alarm.
54749
54750         * modules/getdate: Depend on alloca-opt, not alloca.
54751
54752 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
54753
54754         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
54755         Remove now-obsolete comment about AIX.
54756         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
54757         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
54758         (YYMAXDEPTH): New macro.
54759
54760 2004-12-18  Simon Josefsson  <jas@extundo.com>
54761
54762         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
54763
54764 2004-12-18  Bruno Haible  <bruno@clisp.org>
54765
54766         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
54767
54768 2004-12-18  Bruno Haible  <bruno@clisp.org>
54769
54770         * lib/fatal-signal.c (fatal_signals): Make non-const.
54771         (init_fatal_signals): New function.
54772         (uninstall_handlers, install_handlers): Ignore signals that were set to
54773         SIG_IGN.
54774         (at_fatal_signal): Call init_fatal_signals.
54775         (init_fatal_signal_set): Likewise. Ignore signals that were set to
54776         SIG_IGN.
54777         Reported by Paul Eggert.
54778
54779 2004-12-18  Bruno Haible  <bruno@clisp.org>
54780
54781         * doc/alloca.texi: New file.
54782         * doc/alloca-opt.texi: New file.
54783
54784 2004-12-17  Jim Meyering  <jim@meyering.net>
54785
54786         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
54787         Otherwise, install-sh could exit with improper exit status when
54788         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
54789
54790 2004-12-16  Simon Josefsson  <jas@extundo.com>
54791
54792         * tests/test-base64.c: Add license.
54793
54794 2004-12-15  Stepan Kasal  <address@hidden>
54795
54796         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
54797
54798 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
54799
54800         * modules/getcwd (Files): Add m4/d-ino.m4.
54801         Suggested by Mark D. Baushke.
54802
54803 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
54804
54805         * lib/getdate.y (textint): New member "negative".
54806         (time_zone_hhmm): New function.
54807         Expect 14 shift-reduce conflicts, not 13.
54808         (o_colon_minutes): New rule.
54809         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
54810         (yylex): Set the "negative" member of signed numbers.
54811
54812 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
54813
54814         * doc/getdate.texi (Time of day items, Time zone items):
54815         Describe new formats +00:00, UTC+00:00.
54816
54817 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
54818
54819         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
54820         spurious "-l"s.  Problem reported by Stepan Kasal.
54821
54822 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
54823
54824         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
54825         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
54826
54827 2004-12-04  Simon Josefsson  <jas@extundo.com>
54828
54829         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
54830         Vandoorselaere <yoann@prelude-ids.org>.
54831
54832 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54833
54834         Changes imported from coreutils.
54835         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
54836         exist.
54837         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
54838
54839 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54840
54841         Changes imported from coreutils.
54842         * lib/hard-locale.c: Assume <locale.h> exists.
54843         Include "strdup.h".
54844         (GLIBC_VERSION): New macro.
54845         (hard_locale): Assume setlocale exists.
54846         Rewrite to avoid #ifdef.
54847         Use strdup rather than malloc + strcpy.
54848         * lib/human.c: Assume <locale.h> exists.
54849         (human_readable): Assume localeconv exists.
54850
54851 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
54852
54853         * modules/hard-locale (Depends-on): Add strdup.
54854
54855 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
54856
54857         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
54858         convert T2, not T.  (Imported from libc.)
54859
54860 2004-11-30  Simon Josefsson  <jas@extundo.com>
54861
54862         * modules/restrict (License): Change to LGPL.
54863
54864 2004-11-30  Simon Josefsson  <jas@extundo.com>
54865
54866         * m4/restrict.m4: Add copyright and copying conditions.
54867
54868 2004-11-30  Simon Josefsson  <jas@extundo.com>
54869
54870         * m4/base64.m4: New file.
54871
54872 2004-11-30  Simon Josefsson  <jas@extundo.com>
54873
54874         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
54875         base64.
54876
54877         * tests/test-base64.c: New file.
54878
54879         * modules/base64: New file.
54880
54881 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
54882
54883         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
54884         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
54885
54886         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
54887
54888 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
54889
54890         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
54891         (__getcwd.c): Don't restore errno; glibc doesn't.
54892         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
54893         first, falling back to our code only if its results look suspicious.
54894         Ensure that the resulting buffer is only as large as necessary.
54895
54896         * lib/readutmp.c: Include readutmp.h first.
54897         Include <errno.h>, since readutmp.h no longer does that.
54898         * lib/readutmp.h: Don't include <errno.h>,
54899         <sys/param.h>, <time.h>; not needed to establish interface.
54900         (errno): Remove decl.
54901         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
54902         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
54903         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
54904
54905 2004-11-28  Simon Josefsson  <jas@extundo.com>
54906
54907         * lib/base64.h, base64.c: New file.
54908
54909 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
54910
54911         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
54912
54913 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
54914
54915         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
54916         (Depends-on): Remove pathmax, same.  Add mempcpy.
54917         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
54918         (Makefile.am): Append getcwd.h to lib_SOURCES.
54919         (Include): Add getcwd.h.
54920         (Maintainer): Change from Jim Meyering to "all, glibc",
54921         since getdate now uses intended-for-glibc code.
54922         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
54923         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
54924
54925 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
54926
54927         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
54928         HP's ANSI C compiler.
54929         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
54930         Declaring int functions causes warnings on some modern systems and
54931         shouldn't be needed to compile on ancient ones.
54932         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
54933         defined.
54934
54935         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
54936         with the following changes.
54937         (__set_errno): Parenthesize properly.
54938         Include <stdbool.h>.
54939         (MIN, MAX, MATCHING_INO): New macros.
54940         (__getcwd): Define with prototype, not K&R form.
54941         Use heuristics to allocate default buffer on stack if possible.
54942         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
54943         behavior, and to avoid the PATH_MAX limit when computing
54944         ../../../../...
54945         Use MATCHING_INO to compare inode number to file.
54946         Check for arithmetic overflow in size calculations.
54947         Fix bug in reallocation of dot array that caused getcwd to fail
54948         on directories nested deeper than 75.
54949         Be more careful about saving errno on error.
54950         Do not use realloc; use only free+malloc, as this is a bit
54951         more flexible and avoids a needless copy operation.
54952         Do not inspect st_dev and st_ino for symbolic links; POSIX
54953         doesn't specify the latter.
54954         Check for closedir errors.
54955         Avoid needless casts.
54956         Use "#ifdef weak_alias" around weak_alias, to be like other
54957         glibc code.
54958         The following changes to getcwd.c have effect only when used in
54959         gnulib; they have no effect inside glibc proper.
54960         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
54961         as alloca isn't used.
54962         (alloca, __alloca): Likewise.
54963         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
54964         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
54965         unconditionally, as gnulib assumes C89 or better.
54966         Do not include <sys/param.h>.
54967         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
54968         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
54969         better.
54970         (NULL) [!defined NULL]: Remove; we assume C89 or better.
54971         Include <dirent.h> in a way that is compatible with modern Autoconf.
54972         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
54973         New macros, if not already defined.
54974         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
54975         Use "_LIBC", not "defined _LIBC", for consistency.
54976         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
54977         a mempcpy module.
54978         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
54979         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
54980         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
54981         credit only to Jim Meyering and adjust the copyright dates.
54982         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
54983         <stdlib.h>, <unistd.h>, "pathmax.h".
54984         Instead, include "xgetcwd.h" (first) and "getcwd.h".
54985         (INITIAL_BUFFER_SIZE): Remove.
54986         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
54987
54988 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
54989
54990         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
54991         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
54992         Use the _ONCE methods, for efficiency.
54993         Check for fcntl.h.  In test program, include <errno.h>
54994         and <fcntl.h> if available.  Remove old K&R cruft from
54995         test program.  Check for common errors in GNU/Linux,
54996         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
54997         don't do AC_LIBOBJ, as that's getcwd.m4's job.
54998         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
54999         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
55000         name accordingly.
55001         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
55002         accommodate new getcwd.c.
55003         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
55004         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
55005         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
55006         that's all we need now.
55007
55008 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
55009
55010         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
55011         argp-parse.c depends on getopt internals, that means we should
55012         always use our getopt, to be on the safe side.
55013         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
55014         order not to spoil the result of an eventual previous invocation
55015         of gl_GETOPT_SUBSTITUTE.
55016
55017 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
55018
55019         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
55020         redefinition warnings. To avoid them, include the defines
55021         in `#if !defined __need_getopt ... #endif'. The only place
55022         where __getopt_argv_const is used is in definitions
55023         of getopt_long and getopt_long_only below, which are as well
55024         protected by `#ifndef __need_getopt'.
55025         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
55026         __need_getopt after including <stdio.h> and <unistd.h> These
55027         headers might have defined it.
55028
55029 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
55030
55031         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
55032
55033 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
55034
55035         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
55036         (futimens): New function, which uses futimes if available.
55037         (futimens, utimens): Support timespec==NULL, with same semantics
55038         as utime and utimens.
55039         * lib/utimens.h (futimens): New decl.
55040
55041 2004-11-23  Jim Meyering  <jim@meyering.net>
55042
55043         * lib/getopt_.h: Remove trailing blanks.
55044
55045 2004-11-23  Jim Meyering  <jim@meyering.net>
55046
55047         * lib/__fpending.c: Add comment.
55048
55049 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
55050
55051         * modules/canonicalize (Depends-on): Add xreadlink.
55052         Problem reported by James Youngman.
55053
55054 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
55055
55056         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
55057         New macros.
55058         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
55059         optopt): Use them instead of invoking ## directly; otherwise, the
55060         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
55061
55062 2004-11-19  Bruno Haible  <bruno@clisp.org>
55063
55064         * lib/strtok_r.c: Move comments from here...
55065         * lib/strtok_r.h: ... to here.
55066
55067 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
55068
55069         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
55070         implementations that mishandle size_t overflow.
55071
55072 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
55073
55074         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
55075         might fail.  Problem reported by Yoann Vandoorselaere.
55076         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
55077         implementations that mishandle size_t overflow.
55078
55079 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
55080
55081         * modules/canon-host (Depends-on): Add strdup.
55082
55083 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
55084
55085         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
55086
55087 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
55088
55089         * lib/canon-host.c: Include "strdup.h".
55090         (canon_host): Use getaddrinfo if available, so that IPv6 works.
55091         Use strdup instead of malloc/strcpy to duplicate strings.
55092
55093         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
55094         (human_space_before_unit): New constant.
55095         * lib/human.c (human_readable): Support it.
55096
55097         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
55098         (xgetcwd): Set errno correctly when failing.
55099         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
55100         the failure is actually due to a PATH_MAX problem.
55101
55102         Further getopt changes to make it more likely that glibc will
55103         buy the changes back.
55104         * lib/getopt.c (POSIXLY_CORRECT): New constant.
55105         (getopt): Use it, so to preserve glibc semantic
55106         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
55107         when compiling for libc.
55108         * lib/getopt_.h (__getopt_argv_const): Bring it back.
55109         (getopt_long, getopt_long_only): Use it.
55110
55111         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
55112         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
55113         (getopt): Argv is now char * const *, as per standard.
55114         (_getopt_internal_r, _getopt_internal): Argv is now char **,
55115         not char *__getopt_argv_const *.
55116         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
55117         _getopt_long_only_r): Likewise.
55118         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
55119         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
55120         _getopt_long_r, _getopt_long_only_r): Likewise.
55121         * lib/getopt_.h (__getopt_argv_const): Remove.
55122         (getopt): Argv is now char * const *, as per standard.
55123
55124         * lib/getdate.y (tORDINAL): New token.
55125         (day, relunit): Allow it for relative times.
55126         (relative_time_table): Use tORDINAL for ordinals.
55127
55128 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
55129
55130         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
55131         Document that "second" isn't allowed as an ordinal number.
55132
55133 2004-11-16  Jim Meyering  <jim@meyering.net>
55134
55135         * modules/closeout (Depends-on): Add fpending.
55136
55137 2004-11-15  Jim Meyering  <jim@meyering.net>
55138
55139         * lib/closeout.c: Include "__fpending.h" once again.
55140         Include <stdbool.h>.
55141         (close_stdout): Don't fail just because stdout was closed initially,
55142         since some programs don't write to stdout in the normal course of
55143         operation (other than --version and --help), and we don't want this
55144         function to make e.g. `touch file >&-' fail.
55145         But do fail if it was closed and someone has tried to write to it.
55146         E.g., `printf foo >&-' must fail.
55147
55148 2004-11-13  Jim Meyering  <jim@meyering.net>
55149
55150         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
55151
55152 2004-11-12  Simon Josefsson  <jas@extundo.com>
55153
55154         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
55155         small doc fix is still pending.
55156
55157 2004-11-11  Simon Josefsson  <jas@extundo.com>
55158
55159         * modules/strtok_r: New file.
55160
55161         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
55162         strtok_r.
55163
55164 2004-11-11  Simon Josefsson  <jas@extundo.com>
55165
55166         * m4/strtok_r.m4: New file.
55167
55168         * m4/getopt.m4: Replace opterr.
55169
55170 2004-11-11  Simon Josefsson  <jas@extundo.com>
55171
55172         * lib/strtok_r.h, strtok_r.c: New file.
55173
55174 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
55175
55176         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
55177         of replacing opterr, getopt, etc.  This should handle the
55178         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
55179
55180 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
55181
55182         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
55183         we can stop lying to compilers about the constness of argv when we
55184         are compiled outside glibc.
55185         (getopt, getopt_long, getopt_long_only): Use it.
55186         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
55187         _getopt_internal, getopt): Likewise.
55188         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
55189         _getopt_long_only_r): Likewise.
55190         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
55191         _getopt_long_r, _getopt_long_only_r): Likewise.
55192
55193         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
55194         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
55195         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
55196         the other external symbols.
55197         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
55198         declaration, since the above renaming now works around collisions.
55199
55200 2004-11-11  Jim Meyering  <jim@meyering.net>
55201
55202         * lib/linebreak.c: Remove trailing blanks.
55203         * lib/alloca_.h: Likewise.
55204         * lib/acosl.c: Likewise.
55205         * lib/euidaccess.c: Likewise.
55206         * lib/allocsa.h: Likewise.
55207
55208 2004-11-10  Simon Josefsson  <jas@extundo.com>
55209
55210         * m4/getaddrinfo.m4: New file.
55211
55212 2004-11-10  Simon Josefsson  <jas@extundo.com>
55213
55214         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
55215
55216 2004-11-10  Simon Josefsson  <jas@extundo.com>
55217
55218         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
55219         getaddrinfo.
55220
55221         * modules/getaddrinfo: New file.
55222
55223 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
55224
55225         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
55226
55227 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
55228
55229         * lib/mktime.c (SHR): New macro, which is a portable
55230         substitute for >> that should work even on Crays.
55231         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
55232         Problem reported by Mark D. Baushke in
55233         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
55234         * lib/getdate.y (SHR): Likewise.
55235         (tm_diff): Use it.
55236         * lib/strftime.c (SHR): Likewise.
55237         (tm_diff): Use it.
55238         * lib/quotearg.c (struct quoting_options): Use unsigned int for
55239         quote_these_too, so that right shifts are well defined.  All uses
55240         changed.
55241
55242 2004-11-10  Jim Meyering  <jim@meyering.net>
55243
55244         Ensure that no close failure goes unreported.
55245         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
55246         return early when it seems there's nothing to flush.
55247         Don't include __fpending.h.
55248
55249 2004-11-10  Jim Meyering  <jim@meyering.net>
55250
55251         * modules/closeout (Depends-on): Remove fpending.
55252
55253 2004-11-10  Jim Meyering  <jim@meyering.net>
55254
55255         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
55256
55257 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
55258
55259         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
55260         gl_FUNC_STRFTIME.
55261         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
55262         and AC_REQUIRE when possible, to avoid duplicate checks.
55263         Check for <wchar.h>.
55264
55265 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
55266
55267         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
55268
55269 2004-11-09  Bruno Haible  <bruno@clisp.org>
55270
55271         * m4/sockpfaf.m4: New file.
55272
55273 2004-11-05  Bruno Haible  <bruno@clisp.org>
55274
55275         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
55276         Reported by Mark D. Baushke <mdb@cvshome.org>.
55277
55278 2004-11-04  Bruno Haible  <bruno@clisp.org>
55279
55280         2004-09-11  Bruno Haible  <bruno@clisp.org>
55281                 * allocsa.valgrind: New file.
55282         2004-02-06  Bruno Haible  <bruno@clisp.org>
55283                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
55284                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
55285                 Reported by Christopher Seip <chris.seip@hp.com>.
55286
55287 2004-11-04  Bruno Haible  <bruno@clisp.org>
55288
55289         * modules/allocsa (Files): Add lib/allocsa.valgrind.
55290         (Makefile.am): Distribute it.
55291
55292 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
55293
55294         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
55295         with errno == ERANGE if the buffer is too small.
55296         Problem reported by Mark D. Baushke.
55297
55298 2004-11-03  Albert Chin  <china@thewrittenword.com>
55299             Paul Eggert  <eggert@cs.ucla.edu>
55300
55301         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
55302         equivalent, substitute $ac_type for equivalent type rather than
55303         blindly using uint32_t *always* which won't work if uint32_t is not
55304         available.  Define _UINT32_T to work around typedef of uint32_t if
55305         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
55306         2.5.1.
55307
55308 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
55309
55310         * m4/jm-macros.m4: Sync from coreutils.
55311         (gl_MACROS): Check for mbrlen, for pathchk.
55312         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
55313
55314 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
55315
55316         * lib/xreadlink.c (MAXSIZE): New macro.
55317         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
55318         size does not exceed MAXSIZE.  Avoid cast.
55319         As suggested by Mark D. Baushke in
55320         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
55321         if readlink fails with buffer size just under MAXSIZE, try again
55322         with MAXSIZE.
55323
55324 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
55325
55326         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
55327
55328 2004-11-02  Derek R. Price  <derek@ximbiot.com>
55329         and  Paul Eggert  <eggert@cs.ucla.edu>
55330
55331         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
55332         (get_date): Overparenthesize to avoid GCC warning.
55333
55334 2004-11-02  Bruno Haible  <bruno@clisp.org>
55335
55336         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
55337         returns void.
55338
55339 2004-11-02  Bruno Haible  <bruno@clisp.org>
55340
55341         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
55342         function returns void.
55343
55344 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
55345
55346         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
55347         fflush_unlocked, flockfile, funlockfile, funlockfile,
55348         fputs_unlocked, putc_unlocked.
55349
55350 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
55351
55352         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
55353         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
55354         already declared.
55355
55356 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
55357
55358         * modules/getdate (Files): Add doc/getdate.texi.
55359         (Depends-on): Add setenv, xalloc.
55360
55361 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
55362
55363         * lib/getdate.y: Add support for TZ="foo" within a date string.
55364         Fix some bugs near time_t boundaries.  Reject dates with
55365         out-of-range components, e.g., "Sept 31".
55366         Include <stdlib.h>, "setenv.h", "xalloc.h".
55367         (ISDIGIT_LOCALE): Remove; unused.
55368         Note that the TZ and time functions used here are not reentrant.
55369         (mktime_ok, get_tz): New functions.
55370         (TZBUFSIZE): New constant.
55371         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
55372         This requires that we sometimes generate our own TZ="XXX..." setting.
55373
55374 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
55375
55376         * doc/getdate.texi: New file, from coreutils with modifications for
55377         the new TZ parsing.
55378
55379 2004-10-27  Derek R. Price  <derek@ximbiot.com>
55380
55381         * lib/mktime.c (not_equal_tm): Remove redundant check.
55382
55383 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
55384
55385         * modules/regex (lib_SOURCES): Add regex.c.
55386         Reported by James Youngman in
55387         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
55388
55389 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
55390
55391         * lib/getdate.y: Use Bison 1.875 features, and some minor
55392         code cleanups.  This change does not affect semantics.
55393         Don't include <stdlib.h>; no longer needed.
55394         Don't include unlocked-io.h; only the "#if TEST" code uses
55395         stdio, and performance isn't crucial there.
55396         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
55397         Bison 1.875 features as described below.
55398         All uses of "PC." replaced by "pc->".
55399         (YYSTYPE): Add a forward declaration.
55400         (yylex, yyerror): Use full prototypes in forward decls.
55401         Use "%pure-parser" rather than obsolescent "%pure_parser".
55402         Use %parse-param and %lex-param instead of obsolescent
55403         YYPARSE_PARAM and YYLEX_PARAM.
55404         (meridian_table, month_and_day_table, time_units_table,
55405         relative_time_table, time_zone_table, military_table,
55406         lookup_zone, lookup_word, get_date):
55407         Use NULL instead of 0 where appropriate.
55408         (to_hour): Avoid abort (), to avoid a dependency on
55409         stdlib.h.
55410         (yyerror, yylex): Now accepts parser_control * arg.
55411         (main) [TEST]: Use '\0' rather than 0 for char.
55412
55413 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
55414
55415         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
55416
55417 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
55418
55419         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
55420         It's now the caller's responsibility to handle the case where
55421         !HAVE_GETPAGESIZE && !defined getpagesize.
55422
55423         * lib/mktime.c (leapyear): Arg is long int, not int.
55424
55425 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
55426
55427         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
55428
55429 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
55430
55431         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
55432         missing.  Problem reported by James Youngman.
55433
55434 2004-10-16  Simon Josefsson  <jas@extundo.com>
55435
55436         * gnulib-tool: Fix comments.  Fix parse problem.
55437         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
55438
55439 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
55440
55441         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
55442         implementation of getopt_long.  Problem reported by Alexander Taler in:
55443         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
55444
55445 2004-10-15  Bruno Haible  <bruno@clisp.org>
55446
55447         * gnulib-tool: Untabify. Initialize supplied_libname.
55448         (func_usage): More homogenous output.
55449         (func_modules_transitive_closure, func_modules_to_filelist,
55450         func_emit_lib_Makefile_am): New functions.
55451         (func_import): New function, extracted from big case statement. Use
55452         func_get_license, func_modules_transitive_closure,
55453         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
55454         opt_lgpl. Don't use test -a, as it's not portable.
55455         (func_create_testdir): Use func_modules_transitive_closure,
55456         func_modules_to_filelist, func_emit_lib_Makefile_am.
55457
55458 2004-10-15  Bruno Haible  <bruno@clisp.org>
55459
55460         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
55461
55462 2004-10-15  Bruno Haible  <bruno@clisp.org>
55463
55464         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
55465         the portions belonging to each module.
55466         Suggested by Derek Robert Price <derek@ximbiot.com>.
55467
55468 2004-10-12  Simon Josefsson  <jas@extundo.com>
55469
55470         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
55471         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
55472         to real functions.
55473
55474 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55475
55476         * modules/vsnprintf: New file.
55477
55478 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55479
55480         * m4/vsnprintf.m4: New file.
55481
55482 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55483
55484         * lib/vsnprintf.h: New file.
55485         * lib/vsnprintf.c: New file.
55486
55487 2004-10-11  Bruno Haible  <bruno@clisp.org>
55488
55489         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
55490         vsnprintf.
55491
55492 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
55493
55494         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
55495
55496 2004-10-07  Bruno Haible  <bruno@clisp.org>
55497
55498         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
55499         fits into the provided buffer.
55500
55501 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
55502
55503         * lib/diacrit.c, diacrit.h: Add GPL notice.
55504
55505         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
55506         notice.
55507         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
55508         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
55509         This avoids a potential constant-folding bug.
55510
55511 2004-10-05  Bruno Haible  <bruno@clisp.org>
55512
55513         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
55514         for the declaration of strsep.
55515
55516 2004-10-05  Bruno Haible  <bruno@clisp.org>
55517
55518         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
55519
55520 2004-10-04  Simon Josefsson  <jas@extundo.com>
55521
55522         * modules/memmem: New file.
55523         * tests/test-memmem.c: New file.
55524         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
55525
55526 2004-10-04  Simon Josefsson  <jas@extundo.com>
55527
55528         * m4/memmem.m4: New file.
55529
55530 2004-10-04  Simon Josefsson  <jas@extundo.com>
55531
55532         * lib/memmem.h: New file.
55533         * lib/memmem.c: New file, taken from glibc.
55534
55535 2004-10-04  Simon Josefsson  <jas@extundo.com>
55536
55537         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
55538         '#ifdef USE_UNLOCKED_IO'.
55539
55540 2004-10-04  Simon Josefsson  <jas@extundo.com>
55541
55542         * config/srclist.txt: Add memmem from glibc.
55543
55544 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
55545
55546         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
55547
55548         * modules/argmatch, modules/argp, modules/closeout, modules/error,
55549         modules/exclude, modules/getdate, modules/getline,
55550         modules/getndelim2, modules/getpass, modules/getpass-gnu,
55551         modules/getusershell, modules/linebuffer, modules/md5,
55552         modules/mountlist, modules/posixtm, modules/readtokens,
55553         modules/readutmp, modules/regex, modules/sha1,
55554         modules/version-etc, modules/yesno:
55555         Remove dependency on unlocked-io.
55556
55557 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
55558
55559         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
55560
55561         * m4/unlocked-io.m4: Add copyright notice.
55562         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
55563
55564 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
55565
55566         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
55567         * lib/xmalloc.c (xmemdup): Likewise.
55568         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
55569         XFREE): Remove these long-obsolescent macros.
55570         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
55571         * lib/xstrdup.c: Remove.
55572
55573         * lib/regex.c (re_comp): Cast gettext return value to char *,
55574         Problem reported by Martin Neitzel via Mark D. Baushke.
55575
55576 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
55577
55578         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
55579         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
55580         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
55581         regex.c, sha1.c, version-etc.c, yesno.c:
55582         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
55583         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
55584         the includer's responsibility.
55585
55586         Sync from coreutils.
55587
55588         * lib/modechange.c (mode_compile): Don't decrement a pointer that
55589         points to the start of a string, as the C Standard says the
55590         resulting behavior is undefined.
55591
55592         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
55593         simple -> simple_backups, numbered_existing ->
55594         numbered_existing_backups, numbered -> numbered_backups
55595         to avoid shadowing problems.  All uses changed.
55596         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
55597         * lib/backupfile.c (check_extension, numbered_backup):
55598         Rename locals to avoid shadowing 'basename'.
55599         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
55600         once.
55601
55602         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
55603         * lib/.cvsignore: Add getopt.h.
55604
55605 2004-10-04  Bruno Haible  <bruno@clisp.org>
55606
55607         * modules/README: New file.
55608         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
55609         not a module.
55610
55611 2004-10-02  Jim Meyering  <jim@meyering.net>
55612
55613         * lib/dirfd.h, getpagesize.h: Add copyright notice.
55614
55615 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55616
55617         * modules/strsep: New file.
55618
55619 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55620
55621         * m4/strsep.m4: New file.
55622
55623 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
55624
55625         * lib/strsep.h: New file.
55626         * lib/strsep.c: New file.
55627
55628 2004-10-01  Simon Josefsson  <jas@extundo.com>
55629
55630         * lib/snprintf.c (snprintf): Handle size==0.
55631
55632 2004-10-01  Simon Josefsson  <jas@extundo.com>
55633             Bruno Haible  <bruno@clisp.org>
55634
55635         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
55636         (snprintf): Declare 'args'.
55637
55638 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
55639
55640         * lib/snprintf.c: Remove comments as to why each header is needed.
55641
55642 2004-10-01  Bruno Haible  <bruno@clisp.org>
55643
55644         * MODULES.html.sh: Add strsep.
55645
55646 2004-09-30  Simon Josefsson  <jas@extundo.com>
55647
55648         * modules/snprintf: New file.
55649
55650 2004-09-30  Simon Josefsson  <jas@extundo.com>
55651
55652         * m4/snprintf.m4: New file.
55653
55654 2004-09-30  Simon Josefsson  <jas@extundo.com>
55655
55656         * lib/snprintf.h, lib/snprintf.c: New files.
55657
55658 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
55659
55660         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
55661         (hol_entry_help): Never translate an empty string.
55662         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
55663         * lib/argp.h (OPTION_NO_TRANS): New option.
55664
55665 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55666
55667         * modules/argp (Maintainer): Replace Simon Josefsson
55668         by Sergey Poznyakoff.
55669
55670 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55671
55672         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
55673         changes merged back into glibc.
55674
55675 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
55676
55677         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
55678
55679 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
55680
55681         * lib/xvasprintf.c: Include xalloc.h.
55682         (xvasprintf): Use xalloc_die, not xmalloc_die.
55683
55684 2004-09-29  Bruno Haible  <bruno@clisp.org>
55685
55686         * modules/alloca-opt: New file, derived from modules/alloca.
55687         * modules/allocsa: Depend on alloca-opt instead of alloca.
55688         * modules/setenv: Likewise.
55689         * modules/vasnprintf: Likewise.
55690         * MODULES.html.sh: Add alloca-opt.
55691
55692 2004-09-28  Simon Josefsson  <jas@extundo.com>
55693
55694         * gnulib-tool: New parameter --lgpl, to asseert that modules are
55695         LGPL, and to replace license template from GPL to LGPL.
55696
55697 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
55698
55699         * modules/dummy: Change license to LGPL.
55700
55701 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
55702
55703         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
55704
55705 2004-09-24  Simon Josefsson  <jas@extundo.com>
55706
55707         * modules/minmax (License): Change from GPL to LGPL.
55708
55709 2004-09-23  Simon Josefsson  <jas@extundo.com>
55710
55711         * gnulib-tool (--import): Typo.
55712
55713 2004-09-23  Simon Josefsson  <jas@extundo.com>
55714
55715         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
55716
55717 2004-09-22  Bruno Haible  <bruno@clisp.org>
55718
55719         * modules/*: Add 'License' field.
55720         * gnulib-tool: Accept --extract-license option.
55721         (func_get_license): New function.
55722
55723 2004-09-21  Bruno Haible  <bruno@clisp.org>
55724
55725         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
55726         Reported by Simon Josefsson.
55727
55728 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
55729
55730         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
55731         gl_AC_TYPE_LONG_LONG.
55732
55733 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
55734
55735         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
55736
55737 2004-09-18  Simon Josefsson  <jas@extundo.com>
55738         and  Paul Eggert  <eggert@cs.ucla.edu>
55739
55740         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
55741         calls with autoreconf.  Define GL_LIB.
55742
55743 2004-09-14  Karl Berry  <karl@gnu.org>
55744
55745         * config/srclist.txt: unsync setenv.c, sigh.
55746
55747 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
55748
55749         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
55750         Problem reported by Bruno Haible in:
55751         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
55752
55753 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
55754
55755         * config/srclist.txt: Comment out argp-pvh.c.
55756
55757 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
55758
55759         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
55760         in case some system header has #define'd it.  Problem reported by
55761         Soeren D. Schulze in
55762         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
55763
55764 2004-09-09  Karl Berry  <karl@gnu.org>
55765
55766         * regex.[ch]: delete from the root.  These were supposed to be
55767                 synced with emacs cvs, but this has not happened for about
55768                 a year, and anyway nothing else uses emacs regex.[ch].
55769                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
55770                 lib/regex[.ch] is untouched.
55771
55772 2004-09-09  Bruno Haible  <bruno@clisp.org>
55773
55774         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
55775
55776 2004-09-09  Bruno Haible  <bruno@clisp.org>
55777
55778         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
55779         modifications.
55780         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
55781
55782 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
55783
55784         * modules/xvasprintf: New file.
55785         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
55786
55787 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
55788
55789         * lib/xvasprintf.h: New file.
55790         * lib/xvasprintf.c: New file.
55791         * lib/xasprintf.c: New file.
55792
55793 2004-09-08  Bruno Haible  <bruno@clisp.org>
55794
55795         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
55796
55797 2004-09-08  Bruno Haible  <bruno@clisp.org>
55798
55799         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
55800         length is > INT_MAX.
55801         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
55802         more.
55803
55804 2004-09-08  Bruno Haible  <bruno@clisp.org>
55805
55806         * lib/stdint_.h: New file, taken from GNU clisp.
55807
55808 2004-09-08  Bruno Haible  <bruno@clisp.org>
55809             Oskar Liljeblad  <oskar@osk.mine.nu>
55810
55811         * modules/stdint: New file.
55812         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
55813
55814 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55815
55816         Import from coreutils.
55817         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
55818         strings on unbounded length.  alloca's performance benefits aren't
55819         that important here.
55820         (V_STRDUP): Remove.
55821         (parse_with_separator): New function, with most of the internals
55822         of the old parse_user_spec.  Allow user to omit both user and group,
55823         for compatibility with FreeBSD.
55824         Clone only the user name, not the entire spec.
55825         Do not set *uid, *gid unless entirely successful.
55826         Avoid memory leak in some failing cases.
55827         Fix regression for USER.GROUP reported by Dmitry V. Levin in
55828         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
55829         (parse_user_spec): Rewrite to use parse_with_separator.
55830
55831 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55832
55833         * modules/userspec: Don't depend on alloca.
55834
55835 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
55836
55837         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
55838
55839 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
55840
55841         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
55842         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
55843         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
55844
55845 2004-08-16  Simon Josefsson  <jas@extundo.com>
55846
55847         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
55848         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
55849         Add --dry-run for --import.
55850         Let user provided command line parameters override configure.ac
55851         settings.
55852
55853 2004-08-12  Simon Josefsson  <jas@extundo.com>
55854
55855         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
55856         as discussed with Paul Eggert in threads rooted at
55857         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
55858         and
55859         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
55860         Before, the test was empty, and relied on ELIDE_CODE in source
55861         code.)
55862         (gl_PREREQ_GETOPT): New macro.
55863         (gl_GETOPT): Use them.
55864
55865 2004-08-12  Simon Josefsson  <jas@extundo.com>
55866
55867         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
55868         * lib/getopt_.h: Renamed from getopt.h.
55869
55870 2004-08-12  Simon Josefsson  <jas@extundo.com>
55871
55872         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
55873         Change default library name from libfoo to libgnu.
55874         Now, if you have a configure.ac that says:
55875                 gl_SOURCE_BASE(gl)
55876                 gl_M4_BASE(gl/m4)
55877                 gl_MODULES(error getopt etcetera)
55878                 gl_INIT
55879         you can import all you need by running:
55880                 ../gnulib/gnulib-tool --import
55881
55882         * modules/getopt (Files): Rename getopt.h to getopt_.h.
55883         (Makefile.am): Rewrite, use logic from argz.
55884         (Include): Use <getopt.h> instead of "getopt.h".
55885
55886 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55887
55888         * modules/argp (Files): Add m4/unlocked-io.m4.
55889         (Depends-on): Add extensions.
55890
55891 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55892
55893         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
55894         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
55895         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
55896         Check for program_invocation_name, program_invocation_short_name,
55897         flockfile, funlockfile, features.h, _getopt_long_only_r.
55898
55899 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55900
55901         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
55902         its complicated substitute.
55903         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
55904         and program_invocation_name.
55905         (__argp_basename) [!_LIBC]: Remove; the only use was
55906         replaced by its body.
55907         (__argp_short_program_name): Change condition from
55908         !defined __argp_short_program_name to
55909         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
55910         to match argp-namefrob.h.
55911         (__argp_failure): Don't assume strerror_r returns char *.
55912         * lib/argp-parse.c (N_): Define unconditionally.
55913         (argp_default_options): Fill out initializers with 0 to avoid
55914         gcc warnings.
55915
55916 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
55917
55918         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
55919         getopt1.c.
55920
55921 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55922
55923         Merge from coreutils.
55924
55925         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
55926
55927         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
55928         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
55929
55930 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55931
55932         Merge from coreutils.
55933
55934         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
55935         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
55936         for Reliant Unix 5.43.
55937
55938         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
55939         (union fooround): Use uintmax_t, not long int.
55940         The rest is a merge from libc:
55941         [defined _LIBC]: Include <shlib-compat.h>.
55942         (_obstack) [defined _LIBC]: Remove after 2.3.4.
55943
55944         * lib/settime.c (settime): Recode to avoid warning with
55945         Sun Forte C 6U2.
55946
55947         * lib/strverscmp.c: Convert to UTF-8.
55948
55949 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
55950
55951         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
55952         m4/uintmax_t.m4.
55953
55954 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55955
55956         * modules/xalloc-die: New file.
55957         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
55958
55959         * modules/md5 (Files): Add m4/uint32_t.m4.
55960         * modules/sha1: Renamed from modules/sha.
55961         (Files):
55962         Rename lib/sha.h to lib/sha1.h.
55963         Rename lib/sha.c to lib/sha1.c.
55964         Rename m4/sha.m4 to m4/sha1.m4.
55965         (lib_SOURCES): Likewise.
55966         (configure.ac): Rename gl_SHA to gl_SHA1.
55967         (Include): sha.h -> sha1.h.
55968
55969 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55970
55971         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
55972         * m4/sha1.m4: Renamed from sha.m4.
55973         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
55974
55975 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
55976
55977         * lib/obstack.h (obstack_empty_p):
55978         Don't assume that chunk->contents is suitably aligned.
55979         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
55980         Likewise. Problem reported by Benno in
55981         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
55982
55983         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
55984         readable.  This could be improved further but it'd take some work.
55985
55986 2004-08-08  Simon Josefsson  <jas@extundo.com>
55987
55988         * modules/xgethostname (Depends-on): Remove exit and error (not
55989         used).
55990
55991         * modules/getpass-gnu: Add getpass.h.
55992         (Depends-on): Add stdbool.
55993         * modules/getpass: Add getpass.h.
55994
55995 2004-08-08  Simon Josefsson  <jas@extundo.com>
55996
55997         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
55998         Check getpass declaration.
55999
56000 2004-08-08  Simon Josefsson  <jas@extundo.com>
56001
56002         * lib/xgethostname.c: Don't include error.h (not used).
56003
56004         * lib/getpass.h: Add.
56005         * lib/getpass.c: Include getpass.h first.
56006
56007 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
56008
56009         * lib/xalloc-die.c: New file.
56010         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
56011         All uses removed.
56012         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
56013         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
56014         xalloc-die.c.
56015         (_, N_, xalloc_die): Move to xalloc-die.c.
56016         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
56017         so that we needn't mess with xalloc_msg_memory_exhausted.
56018
56019         * lib/sha1.h: Renamed from sha.h.
56020         (SHA1_H): Renamed from _SHA_H.
56021         (sha1_ctx): Renamed from sha_ctx.
56022         (sha1_init_ctx): Renamed from sha_init_ctx.
56023         (sha1_process_block): Renamed from sha_process_block.
56024         (sha1_process_bytes): Renamed from sha_process_bytes.
56025         (sha1_finish_ctx): Renamed from sha_finish_ctx.
56026         (sha1_read_ctx): Renamed from sha_read_ctx.
56027         (sha1_stream): Renamed from sha_stream.
56028         (sha1_buffer): Renamed from sha_buffer.
56029         * lib/sha1.c: Likewise; renamed from sha.c.
56030         Do not include <sys/types.h>.
56031         Include <stddef.h> rather than <stdlib.h>.
56032
56033 2004-08-08  Bruno Haible  <bruno@clisp.org>
56034
56035         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
56036         FILESYSTEM_PREFIX_LEN.
56037         * lib/progreloc.c: Likewise.
56038         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
56039
56040 2004-08-06  Simon Josefsson  <jas@extundo.com>
56041
56042         * modules/progname (Depends-on): Don't depend on stdbool.
56043
56044 2004-08-06  Simon Josefsson  <jas@extundo.com>
56045
56046         * modules/getsubopt: New file.
56047         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
56048         getsubopt.
56049
56050 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
56051
56052         More merge from coreutils.
56053
56054         * m4/utimens.m4, m4/utimecmp.m4: New files.
56055         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
56056         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
56057         prereq.m4, sha.m4: Import changes from coreutils.
56058
56059 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
56060
56061         More merge from coreutils.
56062         * modules/raise, modules/readtokens0, modules/utimens:
56063         * modules/utimecmp, module/xnanosleep: New files.
56064         * modules/strftime: Add lib/strftime.h.
56065         Change include from <time.h> to "strftime.h".
56066         * modules/yesno: Add lib/yesno.h.
56067         * modules/backupfile: Remove lib/addext.c.
56068         * modules/euidaccess: Add stat-macros.h.
56069         * modules/canonicalize, modules/euidaccess,
56070         modules/filemode, modules/lchown, modules/makepath,
56071         modules/rmdir, modules/stat: Likewise.
56072
56073 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
56074
56075         Merge from tar.
56076         * lib/argp-help.c (make_hol, hol_append): Don't assume that
56077         SIZE_MAX is a valid preprocessor constant.
56078         (__argp_basename): Change from "#ifndef _LIBC"
56079         to "#ifndef __argp_short_program_name", so that
56080         we don't compile these functions for tar.
56081
56082         More merges from coreutils.
56083         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
56084         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
56085         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
56086         * lib/addext.c: Remove; no longer needed.
56087         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
56088         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
56089         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
56090         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
56091         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
56092         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
56093         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
56094         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
56095         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
56096         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
56097         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
56098         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
56099         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
56100         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
56101         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
56102         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
56103         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
56104         Import changes from coreutils.
56105
56106 2004-08-05  Simon Josefsson  <jas@extundo.com>
56107
56108         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
56109
56110 2004-08-05  Simon Josefsson  <jas@extundo.com>
56111
56112         * m4/getsubopt.m4: New file.
56113
56114 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
56115
56116         Merge from coreutils.
56117
56118         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
56119         * m4/getcwd-path-max.m4: New files.
56120
56121         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
56122         FILESYSTEM_PREFIX_LEN ->
56123         FILE_SYSTEM_PREFIX_LEN.
56124         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
56125         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
56126         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
56127         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
56128
56129         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
56130         prerequisite modules now handle the DOS stuff.
56131         Don't check for unistd.h.
56132
56133 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
56134
56135         Merge from coreutils.
56136
56137         * lib/.gdb-history: Remove; this doesn't belong here.
56138
56139         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
56140         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
56141         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
56142         * lib/getcwd.c: New files.
56143
56144         * lib/dirname.h: Include <stdbool.h>.
56145         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
56146         for consistency with POSIX terminology.  All uses changed.
56147         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
56148         (strip_trailing_slashes): Use bool for booleans.
56149         * lib/stripslash.c (strip_trailing_slashes): Likewise.
56150
56151         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
56152         sometimes returns a positive errno value even when it succeeds.
56153         (print_errno_message) [!LIBC]: Fall back on strerror if
56154         __strerror_r fails.
56155
56156         * lib/path-concat.c (mempcpy): Don't define if a system header defines
56157         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
56158         (longest_relative_suffix): New function.
56159         (path_concat): Use it.  Assume first argument is not NULL.
56160         Port to DOS.  Omit redundant separators.
56161         Report an error instead of returning NULL.
56162         Use mempcpy instead of memcpy.
56163         (xpath_concat): Remove: not declared or used.
56164
56165         * lib/same.h: Include <stdbool.h>
56166         (same_name): Return bool, not int.
56167         * lib/same.c (same_name): Likewise.
56168         (errno): Don't declare; we assume C89 or better now.
56169
56170         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
56171         if not already defined.
56172
56173         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
56174         * lib/dup-safer.c (errno): Likewise.
56175
56176 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
56177
56178         Merge from coreutils.
56179         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
56180         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
56181         * modules/path-concat: Don't depend on strdup.
56182
56183 2004-08-03  Simon Josefsson  <jas@extundo.com>
56184
56185         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
56186         * lib/progname.h: Don't include stdbool.h.
56187
56188 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
56189
56190         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
56191         * MODULES.html.sh (func_all_modules): Remove fatal.
56192
56193 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
56194
56195         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
56196
56197 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
56198
56199         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
56200         working.
56201
56202 2004-08-02  Simon Josefsson  <jas@extundo.com>
56203
56204         * lib/getsubopt.h: New file, with comments from Bruno Haible.
56205         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
56206         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
56207
56208 2004-08-01  Simon Josefsson  <jas@extundo.com>
56209
56210         * lib/xgetdomainname.c: Include stdlib.h, for free().
56211
56212 2004-07-19  Bruno Haible  <bruno@clisp.org>
56213
56214         * MODULES.html.sh (func_all_modules): Add dummy.
56215
56216 2004-07-16  Simon Josefsson  <jas@extundo.com>
56217
56218         * modules/dummy: New file.
56219
56220 2004-07-16  Simon Josefsson  <jas@extundo.com>
56221
56222         * lib/dummy.c: New file.
56223
56224 2004-07-16  Bruno Haible  <bruno@clisp.org>
56225
56226         * lib/backupfile.h: Add extern "C" for C++.
56227         * lib/closeout.h: Likewise.
56228         * lib/copy-file.h: Likewise.
56229         * lib/findprog.h: Likewise.
56230         * lib/full-write.h: Likewise.
56231         * lib/pathname.h: Likewise.
56232         * lib/progname.h: Likewise.
56233         * lib/stpcpy.h: Likewise.
56234         * lib/stpncpy.h: Likewise.
56235         * lib/strcase.h: Likewise.
56236         * lib/strstr.h: Likewise.
56237         * lib/xalloc.h: Likewise.
56238
56239         * lib/mbswidth.h: Add extern "C" for C++.
56240         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
56241
56242 2004-07-13  Robert Millan  <robertmh@gnu.org>
56243
56244         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
56245
56246 2004-07-09  Simon Josefsson  <jas@extundo.com>
56247
56248         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
56249         failed without this.)
56250
56251 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
56252
56253         * modules/chown (Files): Add lib/fchown-stub.c, since
56254         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
56255
56256 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
56257
56258         * lib/fchown-stub.c: New file.
56259
56260 2004-06-24  Jim Meyering  <jim@meyering.net>
56261
56262         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
56263
56264 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
56265
56266         * modules/argz: Omit "#include".
56267
56268         * MODULES.html.sh (func_all_modules): Add calloc, to match
56269         2004-06-01 addition of calloc module.
56270
56271 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
56272
56273         * m4/argz.m4: New file, which is autoupdated from libtool.
56274
56275 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
56276
56277         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
56278         libtool.
56279
56280 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
56281
56282         * config/srclist-update: Don't insist on "USA." before the
56283         close-comment, as libtool omits the period and puts the */ on a
56284         separate line.
56285         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
56286         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
56287
56288 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
56289
56290         * modules/argz: New file.
56291         * MODULES.html.sh (func_all_modules): Add argz.
56292
56293 2004-06-12  Jim Meyering  <jim@meyering.net>
56294         and  Paul Eggert  <eggert@cs.ucla.edu>
56295
56296         * modules/hash (Files): Add lib/xalloc.h.
56297         * modules/pipe (Depends-on): Add wait-process.
56298         * modules/stat (Depends-on): Add xalloc.
56299         * modules/userspec (Files): Add lib/userspec.h.
56300         * modules/xstrto
56301
56302         Upgrade from gettext-0.13.
56303         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
56304         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
56305         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
56306
56307 2004-06-10  Jim Meyering  <jim@meyering.net>
56308
56309         * lib/calloc.c: New file.
56310
56311 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
56312
56313         * lib/getdate.y (yylex): Allow space between sign and number.
56314         Problem reported by Dan Jacobson.
56315
56316 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
56317
56318         Merge from coreutils CVS.
56319
56320         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
56321         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
56322         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
56323         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
56324         xstrtol.m4: Fix copyright date and/or serial number.
56325
56326         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
56327         See if we need an fchown replacement.
56328         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
56329         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
56330         and use the replacement function if we detect either defect.
56331
56332         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
56333         gl_UTIMECMP.
56334
56335 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
56336         and  Jim Meyering  <jim@meyering.net>
56337
56338         Merge from coreutils CVS.
56339
56340         * lib/stat-macros.h: New file, with contents from file-type.h
56341         and coreutils' system.h.
56342         * lib/file-type.c: Include "stat-macros.h".
56343         * lib/file-type.h (file_type): Move all macro definitions to new file,
56344         stat-macros.h.
56345
56346         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
56347         Wrap old code with this conditional.
56348         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
56349         function that does not dereference symlinks.
56350         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
56351
56352         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
56353         dependency problems.
56354         (xreadlink): Accept new arg SIZE, for efficiency.
56355         All decls and uses changed.
56356         * lib/xreadlink.h: Include <stddef.h>, for size_t.
56357
56358         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
56359         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
56360
56361         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
56362         sysexits.h.
56363
56364 2004-06-01  Jim Meyering  <jim@meyering.net>
56365
56366         * m4/calloc.m4: New file.
56367
56368 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
56369
56370         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
56371         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
56372         Also, fix a typo in a diagnostic.
56373
56374 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
56375
56376         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
56377         or AC_FUNC_REALLOC.
56378
56379 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
56380
56381         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
56382         macros to be defined.
56383         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
56384         the allocator returns NULL because the requested size is zero.
56385
56386 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
56387
56388         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
56389         var.  Add comment explaining why libc still defines it.  This
56390         merges the following patch from glibc:
56391         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
56392
56393 2004-05-20  Andreas Schwab  <schwab@suse.de>
56394
56395         * m4/free.m4: Replace free if it not known to work, not the other
56396         way round.
56397
56398 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
56399
56400         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
56401         present in glibc since revision 1.1 of this file.
56402         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
56403         obstack_alignment_mask, obstack_alloc, obstack_base,
56404         obstack_blank, obstack_blank_fast, obstack_chunk_size,
56405         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
56406         obstack_grow0, obstack_init, obstack_int_grow,
56407         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
56408         obstack_next_free, obstack_object_size, obstack_ptr_grow,
56409         obstack_ptr_grow_fast, obstack_room): Remove declarations of
56410         nonexistent functions.
56411
56412 2004-05-18  Karl Berry  <karl@gnu.org>
56413
56414         * config/srclist.txt: break link for vasnprintf.c.
56415
56416 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
56417
56418         Port obstack to the AS/400, where pointers are 16 bytes wide and
56419         you cannot cast an integer to a valid pointer.  This patch is
56420         currently waiting to be integrated into glibc; see
56421         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
56422
56423         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
56424         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
56425         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
56426         (struct obstack): temp member is now a union of a pointer and
56427         an integer, instead of an integer.  All integer uses changed.
56428         This does not affect the physical layout of struct obstack,
56429         except on hosts (like the AS/400) where the size or alignment of
56430         void * is greater than that of ptrdiff_t.
56431         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
56432         __STDC__)]: Store temporary in pointer member of union, not
56433         integer member.
56434         * lib/obstack.c: Include <stddef.h>, for offsetof.
56435         (struct fooalign): Remove; it doesn't need a name.
56436         (union fooround): Change double to long double, and add void *.
56437         (DEFAULT_ALIGNMENT): Use offsetof to compute.
56438         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
56439         not a macro.  Hence the values are always int; so remove all
56440         casts-to-int in uses.
56441
56442 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
56443
56444         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
56445         we can get this patch merged into glibc.
56446
56447 2004-05-17  Derek R. Price  <derek@ximbiot.com>
56448             Paul Eggert  <eggert@cs.ucla.edu>
56449
56450         * m4/argp: Depend on alloca.
56451
56452 2004-05-17  Derek R. Price  <derek@ximbiot.com>
56453             Paul Eggert  <eggert@cs.ucla.edu>
56454
56455         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
56456         freecoding.
56457
56458 2004-05-17  Bruno Haible  <bruno@clisp.org>
56459
56460         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
56461         precision that consists of a '.' followed by an empty digit string.
56462         Patch by Tor Lillqvist <tml@iki.fi>.
56463
56464 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
56465
56466         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
56467         for backward compatibility with older code.  We need our own
56468         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
56469         it under some other name, and our alloca.h will define it.
56470
56471 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
56472             Derek Price  <derek@ximbiot.com>
56473
56474         * lib/alloca.c: Include <alloca.h>, to get our interface.
56475         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
56476         include <alloca.h> first.  Use C89 prototype for alloca; this
56477         requires including <stddef.h> for size_t.  Use extern "C" if C++.
56478         Use #elif for simplicity, since we can assume C89 now.
56479         Don't try to source the system alloca.h since it will not be found
56480         and to prevent recursively including its replacement.
56481         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
56482         * lib/regex.c: Likewise.
56483
56484 2004-05-16  Derek Price  <derek@ximbiot.com>
56485             Paul Eggert  <eggert@cs.ucla.edu>
56486
56487         getline cleanup.  This changes the getndelim2 API: both order of
56488         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
56489         no delimiter).
56490
56491         * lib/getline.c: Don't include stddef.h or stdio.h, since our
56492         interface does that.
56493         (getline): Always use getdelim, so that we don't have two
56494         copies of this code.
56495         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
56496         if available.
56497         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
56498         (GETNDELIM2_MAXIMUM): New macro.
56499         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
56500         instead of the old practice of delim2==0.  All callers changed.
56501         Return -1 on overflow, instead of returning junk.
56502         Do not set *linesize unless allocation succeeds.
56503         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
56504         that we include sys/types.h.
56505         * lib/getnline.h: Likewise.
56506         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
56507         (getndelim2): Reorder arguments.
56508         * lib/getnline.c (getnline, getndelim):
56509         Don't discard the NMAX argument.
56510         (getnline): Invoke getndelim, to avoid code duplication.
56511         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
56512         of (size_t) -1 by callers of the getnline family.
56513
56514 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
56515
56516         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
56517         Check for gettimeofday.
56518         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
56519         Check for settimeofday, stime.
56520
56521 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
56522
56523         * lib/nanosleep.c (suspended): Change its type from int to
56524         sig_atomic_t volatile.
56525         (first_call): Make it private to rpl_nanosleep, and have it
56526         be zero initially as that's a bit faster.
56527         (my_usleep): Round up fractional times instead of truncating them,
56528         as this is the usual meaning for 'sleep'.
56529
56530         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
56531         doesn't work.
56532         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
56533         (ENOSYS): Define if not defined.
56534         (settime): Fall back on stime if it exists and settimeofday fails.
56535         But don't bother with fallbacks if a method fails with errno == EPERM.
56536
56537 2004-05-11  Jim Meyering  <jim@meyering.net>
56538
56539         Prior to this change, the save_cwd caller required read access to the
56540         current directory on most systems (ones with the fchdir function).
56541
56542         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
56543         fails, try write-only, and finally, resort to using xgetcwd.
56544
56545 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
56546
56547         * lib/obstack.c, obstack.h: Import changes from libc.
56548
56549 2004-04-28  Bruno Haible  <bruno@clisp.org>
56550
56551         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
56552         also implicitly appends .exe to executables.
56553         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
56554         accepts Windows pathnames.
56555         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
56556         Treat Cygwin like Windows, since it now accepts Windows pathnames.
56557         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
56558         Treat Cygwin like Windows, since it now accepts Windows pathnames.
56559         Reported by Derek Robert Price <derek@ximbiot.com>.
56560
56561 2004-04-21  Karl Berry  <karl@gnu.org>
56562
56563         * config/srclist.txt (localcharset.c): break sync.
56564
56565 2004-04-20  Paul Eggert  <eggert@twinsun.com>
56566
56567         * m4/host-os.m4: Add a copyright notice.
56568
56569 2004-04-20  Jim Meyering  <jim@meyering.net>
56570
56571         Change UTILS_ to gl_ in AC_DEFINE'd names.
56572         Change utils_- and jm_-prefixed variables, too.
56573         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
56574         UTILS_FUNC_MKDIR_TRAILING_SLASH.
56575         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
56576
56577         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
56578         Don't emit trailing blanks.
56579         Also rename jm_-prefixed variables to have gl_ prefix.
56580
56581         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
56582         Also rename jm_-prefixed variables to have gl_ prefix.
56583
56584         * m4/jm-macros.m4: Reflect the renamings.
56585         * m4/prereq.m4: Likewise.
56586
56587 2004-04-20  Jim Meyering  <jim@meyering.net>
56588
56589         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
56590         memory.
56591
56592 2004-04-20  Jim Meyering  <jim@meyering.net>
56593             Bruno Haible  <bruno@clisp.org>
56594
56595         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
56596         memory when realloc fails.
56597
56598 2004-04-19  Jim Meyering  <jim@meyering.net>
56599
56600         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
56601         now that readutmp.c may call `free (0)'.
56602
56603 2004-04-19  Bruno Haible  <bruno@clisp.org>
56604
56605         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
56606         * m4/inttypes_h.m4: Likewise.
56607         * m4/stdint_h.m4: Likewise.
56608         * m4/intmax_t.m4: Likewise.
56609         * m4/uintmax_t.m4: Likewise.
56610
56611 2004-04-18  Jim Meyering  <jim@meyering.net>
56612
56613         * m4/prereq.m4: Don't forbid jm_ prefix.
56614
56615         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
56616         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
56617         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
56618         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
56619         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
56620         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
56621         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
56622         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
56623         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
56624         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
56625         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
56626         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
56627         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
56628         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
56629         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
56630         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
56631         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
56632         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
56633         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
56634
56635 2004-04-18  Jim Meyering  <jim@meyering.net>
56636
56637         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
56638         failure, don't leak memory and do call END_UTMP_ENT.
56639
56640 2004-04-16  Jim Meyering  <jim@meyering.net>
56641
56642         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
56643         coreutils' stat program.
56644         (gl_PREREQ): Don't require jm_PREREQ_STAT.
56645
56646 2004-04-11  Paul Eggert  <eggert@twinsun.com>
56647
56648         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
56649         C89.
56650         (CHAR_BIT): Remove, since we assume C89.
56651         Include <stdint.h> if available, as per current Autoconf CVS advice.
56652
56653 2004-03-31  Jim Meyering  <jim@meyering.net>
56654
56655         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
56656         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
56657         * m4/xalloc.m4: Likewise.
56658
56659 2004-03-30  Paul Eggert  <eggert@twinsun.com>
56660
56661         Merge from coreutils.
56662
56663         * m4/inttostr.m4: New file.
56664         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
56665         Require AM_STDBOOL_H and gl_TIMESPEC instead.
56666         Require gl_CLOCK_TIME.
56667         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
56668
56669 2004-03-30  Paul Eggert  <eggert@twinsun.com>
56670
56671         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
56672         not bool, to be more consistent with Unix conventions.
56673         Suggested by Bruno Haible.
56674
56675         Merge from coreutils.
56676
56677         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
56678         * lib/umaxtostr.c: New files.
56679
56680         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
56681         the usual <time.h> dance.
56682         (get_date): Change signature to support fractional time stamps.
56683         All callers changed.
56684         * lib/getdate.y: Include "getdate.h" first, as we can now
56685         assume C89 and don't need to worry about 'const'.
56686         Similarly, include "unlocked-io.h" near start, not in middle.
56687         Include <limits.h>.
56688         (textint.value): Use long int rather than int.
56689         (textint.digits): Use size_t rather than int.
56690         (BILLION, LOG10_BILLION): New constants.
56691         (parser_control): New member rel_ns.  Members day_ordinal,
56692         time_zone, month, day, hour, minutes, rel_year, rel_month,
56693         rel_day, rel_hour, rel_minutes, rel_seconds
56694         are now long int, not int.  Member seconds is now struct timespec,
56695         not int.  New member timespec_seen.  Members dates_seen, days_seen,
56696         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
56697         not int.
56698         (%union.intval): Now long int, not int.
56699         New member timespec.
56700         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
56701         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
56702         (spec): Now is a timespec or an item list.
56703         (timespec, items): New nonterminals.
56704         (time, rel, relunit, number, get_date):
56705         Add support for fractional seconds.
56706         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
56707         (gmtime, localtime, mktime): Remove decls; not needed with C89.
56708         (to_hour): First arg is now long int, not int.
56709         (to_year): Returns long int, not int.
56710         Don't treat year -70 like 70.
56711         (tm_diff): Returns long int, not int.
56712         (lookup_word): Use bool instead of int when appropriate.
56713         (yylex): Use size_t for count, not int.
56714         Detect overflow when parsing large integer constants.
56715         Add support for fractions.
56716         (get_date): Make pointers 'const' if possible.
56717         Use more-portable code to detect integer overflow.
56718         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
56719         Don't use ctime; it's not reliable if the year has >4 digits.
56720
56721         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
56722         This is for compatibility with BSD.
56723
56724         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
56725         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
56726         From coreutils' system.h.
56727
56728         * lib/userspec.c: Don't include "posixver.h".
56729         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
56730         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
56731         compatible extension.  Simplify code by removing a boolean int
56732         that was always nonzero if a string was nonnull.
56733
56734 2004-03-30  Jim Meyering  <jim@meyering.net>
56735
56736         Merge from coreutils.
56737
56738         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
56739         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
56740         on some systems one must include <grp.h> before it.
56741         Reported by Christian Krackowizer.
56742
56743 2004-03-30  Jim Meyering  <jim@meyering.net>
56744
56745         Merge from coreutils.
56746
56747         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
56748
56749         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
56750         an empty input stream.
56751
56752         * lib/readtokens.c: Include <stdbool.h>.
56753         (readtoken): Use `size_t' rather than int/long.
56754         All callers adjusted.
56755         Use `bool' rather than `int' where appropriate.
56756         Use memset rather than an explicit loop.
56757         Use x2nrealloc rather than xrealloc.
56758         Allow the use of `\0' as a delimiter.
56759         (readtokens): Likewise.
56760         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
56761
56762 2004-03-30  Jim Meyering  <jim@meyering.net>
56763
56764         * m4/realloc.m4: Remove file, since now it does no more than
56765         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
56766         the `configure.ac' section of module/realloc.
56767         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
56768
56769 2004-03-30  Bruno Haible  <bruno@clisp.org>
56770
56771         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
56772         nonnull.
56773
56774 2004-03-29  Paul Eggert  <eggert@twinsun.com>
56775
56776         Merge changes to getloadavg.c from coreutils and Emacs.
56777
56778         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
56779         Define to an expression, not to the empty string.
56780         Include cloexec.h and xalloc.h.
56781         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
56782         Use set_cloexec_flag rather than rolling our own.
56783         * lib/cloexec.c, lib/cloexec.h: New files.
56784
56785 2004-03-29  Paul Eggert  <eggert@twinsun.com>
56786
56787         * m4/cloexec.m4: New file.
56788
56789 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56790
56791         * lib/getopt.h: Sync with libc CVS.
56792
56793 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56794             Bruno Haible  <bruno@clisp.org>
56795
56796         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
56797         mbswidth.
56798
56799 2004-03-18  Paul Eggert  <eggert@twinsun.com>
56800             Bruno Haible  <bruno@clisp.org>
56801
56802         * lib/mbswidth.h: Include <wchar.h> only if
56803         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
56804         <wchar.h>.
56805         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
56806
56807 2004-03-09  Paul Eggert  <eggert@twinsun.com>
56808
56809         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
56810         Sync with libc CVS.
56811         * lib/getopt_int.h: New file, also synced from libc.
56812
56813 2004-03-09  Paul Eggert  <eggert@twinsun.com>
56814
56815         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
56816         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
56817         Bring back getopt.c, getopt.h, getopt1.c.
56818
56819 2004-03-07  Paul Eggert  <eggert@twinsun.com>
56820
56821         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
56822         All uses changed.  Check for sa_sigaction member; this fixes
56823         a bug first reported by Jason Andrade in
56824         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
56825
56826 2004-03-07  Paul Eggert  <eggert@twinsun.com>
56827
56828         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
56829         '#if' expressions.  Unlike the code it replaces, it does not
56830         depend on (defined _SC_PAGESIZE).  However, it does depend on
56831         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
56832         first reported by Jason Andrade in
56833         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
56834
56835 2004-02-25  Simon Josefsson  <jas@extundo.com>
56836
56837         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
56838
56839 2004-02-25  Simon Josefsson  <jas@extundo.com>
56840
56841         * lib/strdup.h: New file.
56842         * lib/strdup.c: Include it.
56843         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
56844         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
56845
56846 2004-02-23  Karl Berry  <karl@gnu.org>
56847
56848         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
56849         (from fencepost.gnu.org:/gd/gnuorg).
56850
56851 2004-02-23  Karl Berry  <karl@gnu.org>
56852
56853         * config/srclistvars.sh (GNUORG) [karl]: redefine.
56854         * config/srclist.txt: add maintain/standards documents.
56855
56856 2004-02-18  Bruno Haible  <bruno@clisp.org>
56857
56858         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
56859         Reported by Derek Robert Price <derek@ximbiot.com>.
56860
56861 2004-02-16  Karl Berry  <karl@gnu.org>
56862
56863         * config/mkinstalldirs, install-sh: update from automake.
56864
56865 2004-02-06  Karl Berry  <karl@gnu.org>
56866
56867         * m4/po.m4: update from gettext 0.14.1.
56868
56869 2004-02-06  Karl Berry  <karl@gnu.org>
56870
56871         * lib/config.charset: update from gettext 0.14.1.
56872
56873 2004-02-05  Paul Eggert  <eggert@twinsun.com>
56874
56875         Add comments and code, prompted by suggestions from Bruno Haible
56876         for sh-quote.
56877         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
56878         describing the enum quoting_style values.
56879         * lib/quotearg.c (quotearg_alloc): New function.
56880         (quotearg_buffer_restyled): Treat lone { and } as special.
56881         Treat = as special.  Work around bug with older shells
56882         that "see" a '\' that is really the 2nd byte of a multibyte char.
56883         Quote empty string with shell_quoting_style.
56884
56885 2004-02-03  Bruno Haible  <bruno@clisp.org>
56886
56887         * m4/pipe.m4: New file, from GNU gettext.
56888
56889 2004-02-03  Bruno Haible  <bruno@clisp.org>
56890
56891         * lib/pipe.h: New file, from GNU gettext.
56892         * lib/pipe.c: New file, from GNU gettext.
56893
56894 2004-01-27  Bruno Haible  <bruno@clisp.org>
56895
56896         * m4/execute.m4: New file, from GNU gettext.
56897
56898 2004-01-27  Bruno Haible  <bruno@clisp.org>
56899
56900         * lib/execute.h: New file, from GNU gettext.
56901         * lib/execute.c: New file, from GNU gettext.
56902         * lib/w32spawn.h: New file, from GNU gettext.
56903
56904 2004-01-24  Paul Eggert  <eggert@twinsun.com>
56905
56906         Merge from diffutils.
56907
56908         * lib/file-type.c (file_type): Add typed memory objects.
56909         * lib/file-type.h (S_TYPEISTMO): New macro.
56910
56911         * lib/c-stack.h (c_stack_action): Remove argv argument.
56912         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
56913         (die): Don't calculate message unless segv_action returns.
56914         (get_stack_location, min_address_from_argv, max_address_from_argv,
56915         volatile stack_base, volatile_stack_size): Remove.
56916         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
56917         that every segmentation violation is a stack overflow.  (Ouch!)
56918         See Debian bug 136249 (still outstanding) for more info about why
56919         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
56920
56921 2004-01-24  Paul Eggert  <eggert@twinsun.com>
56922
56923         Exit-status fix from coreutils.
56924
56925         Use exit_failure consistently in place of EXIT_FAILURE,
56926         so that program exit statuses are consistent on failure.
56927
56928         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
56929         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
56930         * lib/argmatch.h: Comment fix to match the above.
56931         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
56932         Now a macro referring to exit_failure, instead of a separate
56933         variable.  Include "exitfail.h" to get it.
56934         * lib/xstrtol.h: Include "exitfail.h".
56935         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
56936
56937         * lib/long-options.c (parse_long_options): Use prototype
56938         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
56939         for clarity.
56940
56941 2004-01-21  Jim Meyering  <jim@meyering.net>
56942
56943         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
56944         so as not to conflict with a different-sized __mktime_internal
56945         function in GNU libc.
56946         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
56947         Problem building statically-linked `ls' reported by Michael Brunnbauer.
56948
56949 2004-01-20  Karl Berry  <karl@gnu.org>
56950
56951         * config/config.guess: update from config.
56952
56953         * config/srclistvars.sh: GNUWWWLICENSES for karl.
56954
56955 2004-01-20  Bruno Haible  <bruno@clisp.org>
56956
56957         Safer stack allocation.
56958         * lib/setenv.c: Include allocsa.h.
56959         (alloca): Remove fallback definition.
56960         (freea): Remove macro.
56961         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
56962         instead of freea.
56963
56964 2004-01-20  Bruno Haible  <bruno@clisp.org>
56965
56966         * m4/eealloc.m4: New file, from GNU gettext.
56967
56968 2004-01-20  Bruno Haible  <bruno@clisp.org>
56969
56970         * m4/allocsa.m4: New file, from GNU gettext.
56971
56972 2004-01-20  Bruno Haible  <bruno@clisp.org>
56973
56974         * lib/xallocsa.h: New file, from GNU gettext.
56975         * lib/xallocsa.c: New file, from GNU gettext.
56976
56977 2004-01-20  Bruno Haible  <bruno@clisp.org>
56978
56979         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
56980
56981 2004-01-20  Bruno Haible  <bruno@clisp.org>
56982
56983         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
56984         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
56985         specially.
56986
56987 2004-01-20  Bruno Haible  <bruno@clisp.org>
56988
56989         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
56990         patch.
56991
56992 2004-01-20  Bruno Haible  <bruno@clisp.org>
56993
56994         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
56995
56996 2004-01-20  Bruno Haible  <bruno@clisp.org>
56997
56998         * lib/eealloc.h: New file.
56999
57000 2004-01-20  Bruno Haible  <bruno@clisp.org>
57001
57002         * lib/binary-io.h: Avoid warnings on Cygwin.
57003
57004 2004-01-20  Bruno Haible  <bruno@clisp.org>
57005
57006         * lib/allocsa.h: New file, from GNU gettext.
57007         * lib/allocsa.c: New file, from GNU gettext.
57008
57009 2004-01-18  Karl Berry  <karl@gnu.org>
57010
57011         * doc/gpl.texi, doc/lgpl.texi: new files.
57012
57013 2004-01-18  Karl Berry  <karl@gnu.org>
57014
57015         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
57016         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
57017
57018 2004-01-15  Paul Eggert  <eggert@twinsun.com>
57019
57020         Merge from coreutils.
57021
57022         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
57023         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
57024         (gl_DEFAULT_POSIX2_VERSION): Move
57025         the documentation from 'configure' into 'config.hin',
57026         so that 'configure --help' isn't burdened by it and
57027         we don't have to worry about its formatting there.
57028         Reword the documentation so that it's more succinct
57029         and can be run together into a single paragraph.
57030         * m4/same.m4 (gl_SAME): Check for pathconf.
57031
57032 2004-01-15  Paul Eggert  <eggert@twinsun.com>
57033
57034         Merge from coreutils.
57035
57036         * lib/posixver.c: Include posixver.h.
57037
57038         * lib/same.c: Include <stdbool.h>, <limits.h>.
57039         (_POSIX_NAME_MAX): Define if not defined.
57040         (MIN): New macro.
57041         (same_name): If file names are silently truncated, report
57042         that the file names are the same if they are the same after
57043         the silent truncation.
57044
57045         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
57046         conversion function.
57047         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
57048         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
57049         longer needed.
57050
57051 2004-01-15  Jim Meyering  <jim@meyering.net>
57052
57053         Merge from coreutils.
57054
57055         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
57056         if no library is required.
57057         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
57058         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
57059         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
57060         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
57061         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
57062         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
57063         value, $ac_cv_search_crypt, if it's "none required".
57064         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
57065         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
57066         not gl_FUNC_GETLOADAVG.
57067         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
57068         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
57069
57070 2004-01-15  Jim Meyering  <jim@meyering.net>
57071
57072         Merge from coreutils.
57073
57074         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
57075         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
57076         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
57077
57078         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
57079         optional configure-time default.
57080
57081         * lib/version-etc.c (version_etc_copyright): Update copyright date.
57082
57083         * lib/xreadlink.c (xreadlink): Correct outdated comment.
57084
57085 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
57086
57087         Merge from coreutils.
57088
57089         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
57090         value, $ac_cv_search_nanosleep, if it's "none required".
57091
57092 2004-01-14  Paul Eggert  <eggert@twinsun.com>
57093
57094         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
57095         with like-named macro in fnmatch.c.
57096         (EXT): Use an internal constant instead.
57097
57098         Merge fnmatch patches from glibc.
57099         * lib/fnmatch.c (mbsinit): Remove define.
57100         Add libc_hidden_ver (__fnmatch, fnmatch).
57101         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
57102         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
57103
57104 2004-01-14  Karl Berry  <karl@gnu.org>
57105
57106         * config/install-sh: update from automake.
57107
57108 2004-01-13  Karl Berry  <karl@gnu.org>
57109
57110         * config/install-sh: update from automake.
57111
57112 2004-01-09  Karl Berry  <karl@gnu.org>
57113
57114         * config/install-sh: update from automake.
57115
57116 2004-01-05  Karl Berry  <karl@gnu.org>
57117
57118         * config/config.{sub,guess}: update from config.
57119
57120 2003-12-31  Karl Berry  <karl@gnu.org>
57121
57122         * config/depcomp: update from automake.
57123
57124 2003-12-14  Karl Berry  <karl@gnu.org>
57125
57126         * lib/config.charset: update from gettext-runtime.
57127
57128 2003-12-03  Paul Eggert  <eggert@twinsun.com>
57129
57130         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
57131         Bug reported by Alfred M. Szmidt.
57132
57133 2003-12-03  Bruno Haible  <bruno@clisp.org>
57134
57135         * m4/gettext.m4: Upgrade from gettext-0.13.
57136         * m4/po.m4: Upgrade from gettext-0.13.
57137         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
57138         * m4/intmax.m4: New file, from gettext-0.13.
57139         * m4/printf-posix.m4: New file, from gettext-0.13.
57140
57141 2003-11-29  Karl Berry  <karl@gnu.org>
57142
57143         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
57144
57145 2003-11-25  Paul Eggert  <eggert@twinsun.com>
57146             Bruno Haible  <bruno@clisp.org>
57147
57148         * lib/printf-parse.h: Don't include sys/types.h.
57149         (ARG_NONE): New macro.
57150         (char_directive): Change type of *arg_index fields to size_t.
57151         * lib/printf-parse.c: Don't include sys/types.h.
57152         (SSIZE_MAX): Remove macro.
57153         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
57154         Remove unnecessary overflow check.
57155         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
57156         fields.
57157
57158 2003-11-25  Bruno Haible  <bruno@clisp.org>
57159
57160         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
57161
57162 2003-11-25  Bruno Haible  <bruno@clisp.org>
57163
57164         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
57165         gt_TYPE_SSIZE_T.
57166
57167 2003-11-24  Paul Eggert  <eggert@twinsun.com>
57168
57169         * modules/alloca: Remove dependency on xalloc.
57170
57171 2003-11-24  Paul Eggert  <eggert@twinsun.com>
57172
57173         * lib/alloca.c: Remove dependency on xalloc module.
57174         (xalloc_die): Remove.
57175         (memory_full) [!defined emacs]: New macro.
57176         [!defined emacs]: Don't include xalloc.h.
57177         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
57178         address arithmetic overflows.  Change datatypes a bit to avoid
57179         unnecessary casts.
57180
57181 2003-11-22  Jim Meyering  <jim@meyering.net>
57182
57183         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
57184         s/size/size_t/.
57185
57186 2003-11-21  Karl Berry  <karl@gnu.org>
57187
57188         * config/config.{sub,guess}: update from config.
57189
57190 2003-11-18  Karl Berry  <karl@gnu.org>
57191
57192         * config/config.{sub,guess}: update from config.
57193
57194         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
57195
57196 2003-11-17  Paul Eggert  <eggert@twinsun.com>
57197
57198         * README: Mention that S+T cannot overflow if S is the size of
57199         an existing object and T is sufficiently small.
57200
57201 2003-11-17  Jim Meyering  <jim@meyering.net>
57202
57203         On systems without utime and without a utimes function capable of
57204         dealing with a NULL struct utimbuf* argument, this utime replacement
57205         could -- in unusual circumstances -- leak a file descriptor.
57206         * lib/utime.c: Include <unistd.h> and <errno.h>.
57207         (utime_null): Be sure to close `fd' and to preserve errno.
57208         Reported by Geoff Collyer via Arnold Robbins.
57209
57210 2003-11-17  Bruno Haible  <bruno@clisp.org>
57211
57212         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
57213         (Depends-on): Add xsize.
57214
57215 2003-11-17  Bruno Haible  <bruno@clisp.org>
57216
57217         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
57218
57219 2003-11-17  Bruno Haible  <bruno@clisp.org>
57220
57221         * lib/vasnprintf.c (alloca): Remove fallback definition.
57222         (freea): Remove definition.
57223         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
57224         Reported by Paul Eggert.
57225
57226 2003-11-16  Paul Eggert  <eggert@twinsun.com>
57227             Bruno Haible  <bruno@clisp.org>
57228
57229         Protect against address arithmetic overflow.
57230         * lib/printf-args.h: Include stddef.h.
57231         (arguments): Change type of field 'count' to size_t.
57232         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
57233         'unsigned int' where appropriate.
57234         * lib/printf-parse.h: Include sys/types.h.
57235         (char_directive): Change type of *arg_index fields to ssize_t.
57236         (char_directives): Change type of fields 'count', max_*_length to
57237         size_t.
57238         * lib/printf-parse.c: Include sys/types.h and xsize.h.
57239         (SSIZE_MAX): Define fallback value.
57240         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
57241         instead of 'int' where appropriate. Check a_allocated, d_allocated
57242         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
57243         * lib/vasnprintf.c: Include xsize.h.
57244         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
57245         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
57246         overflow. Avoid wraparound when converting a width or precision from
57247         decimal to binary.
57248
57249 2003-11-16  Bruno Haible  <bruno@clisp.org>
57250
57251         Update from GNU gettext.
57252         * lib/printf-parse.c: Generalize to it can be compiled for wide
57253         strings.
57254         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
57255         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
57256         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
57257         SNPRINTF): New macros.
57258         Don't include <alloca.h> if the file is used inside libintl.
57259         (local_wcslen): New function, for Solaris 2.5.1.
57260         (VASNPRINTF): Use it instead of wcslen.
57261
57262 2003-11-16  Bruno Haible  <bruno@clisp.org>
57263
57264         * lib/xsize.h (xmax): New function.
57265         (xsum, xsum3, xsum4): Declare as "pure" functions.
57266
57267 2003-11-12  Paul Eggert  <eggert@twinsun.com>
57268
57269         * modules/xalloc (Files): Undo latest change, since xalloc.h
57270         no longer needs SIZE_MAX or PTRDIFF_MAX.
57271
57272 2003-11-12  Paul Eggert  <eggert@twinsun.com>
57273
57274         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
57275         gl_PTRDIFF_MAX.
57276
57277 2003-11-12  Paul Eggert  <eggert@twinsun.com>
57278
57279         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
57280         "return", to pacify some unknown compiler.  Problem reported
57281         by Joerg Schilling.
57282
57283 2003-11-12  Paul Eggert  <eggert@twinsun.com>
57284
57285         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
57286         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
57287         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
57288         heuristic is just as accurate as far as we know, and it removes a
57289         dependency on size_max.m4 and ptrdiff_max.m4.
57290
57291 2003-11-11  Bruno Haible  <bruno@clisp.org>
57292
57293         * modules/xsize (Files): Add m4/size_max.m4.
57294         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
57295
57296 2003-11-11  Bruno Haible  <bruno@clisp.org>
57297
57298         * m4/size_max.m4: New file.
57299         * m4/ptrdiff_max.m4: New file.
57300         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
57301         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
57302         (gl_XALLOC): Invoke it.
57303
57304 2003-11-11  Bruno Haible  <bruno@clisp.org>
57305
57306         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
57307         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
57308         defined.
57309
57310 2003-11-10  Paul Eggert  <eggert@twinsun.com>
57311
57312         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
57313         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
57314         rejected some allocations of exactly SIZE_MAX - 2 bytes.
57315         From Bruno Haible.
57316         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
57317         not (size_t) -1, since it's defined here.
57318
57319 2003-11-09  Karl Berry  <karl@gnu.org>
57320
57321         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
57322
57323 2003-11-06  Paul Eggert  <eggert@twinsun.com>
57324
57325         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
57326         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
57327         Reject sizes of exactly SIZE_MAX bytes.
57328         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
57329         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
57330
57331 2003-11-05  Bruno Haible  <bruno@clisp.org>
57332
57333         * lib/xsize.h: Include limits.h, to avoid a possible collision with
57334         SIZE_MAX defined in <limits.h> on Solaris.
57335
57336 2003-11-04  Jim Meyering  <jim@meyering.net>
57337
57338         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
57339         variable names, rather than @VAR@.
57340         * modules/poll: Likewise.
57341
57342 2003-11-04  Bruno Haible  <bruno@clisp.org>
57343
57344         * modules/xsize: New file.
57345         * modules/linebreak: Depend on xsize.
57346         * MODULES.html.sh (func_all_modules): Add xsize.
57347
57348 2003-11-04  Bruno Haible  <bruno@clisp.org>
57349
57350         * m4/xsize.m4: New file.
57351
57352 2003-11-04  Bruno Haible  <bruno@clisp.org>
57353
57354         * lib/xsize.h: New file.
57355         * lib/linebreak.c: Include xsize.h.
57356         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
57357         argument for overflow.
57358         Suggested by Paul Eggert.
57359
57360 2003-11-03  Karl Berry  <karl@gnu.org>
57361
57362         * config/config.{guess,sub}: update from config.
57363
57364 2003-11-03  Jim Meyering  <jim@meyering.net>
57365
57366         * modules/userspec (lib_SOURCES): Add userspec.h.
57367         (Include): Add "userspec.h".
57368         Improve description.
57369
57370 2003-11-03  Jim Meyering  <jim@meyering.net>
57371
57372         * lib/userspec.c: Include "userspec.h".
57373         * lib/userspec.h: New file.
57374
57375 2003-11-03  Bruno Haible  <bruno@clisp.org>
57376
57377         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
57378
57379 2003-11-03  Bruno Haible  <bruno@clisp.org>
57380
57381         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
57382         available, to avoid (extremely rare) race condition.
57383         Suggested by Paul Eggert.
57384
57385 2003-11-02  Karl Berry  <karl@gnu.org>
57386
57387         * config/srclist.txt (vasprintf.c): sync broken, sigh.
57388
57389 2003-10-31  Paul Eggert  <eggert@twinsun.com>
57390
57391         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
57392         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
57393         (read_filesystem_list): Set and use me_type_malloced.
57394         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
57395         whatever the type happens to be), for brevity and consistency.
57396         Check for size calculation overflow on Alphas running OSF/1.
57397
57398 2003-10-31  Jim Meyering  <jim@meyering.net>
57399
57400         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
57401
57402         * lib/linebuffer.c: Include <string.h> for declaration of memset.
57403
57404 2003-10-30  Paul Eggert  <eggert@twinsun.com>
57405             Bruno Haible  <bruno@clisp.org>
57406
57407         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
57408         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
57409
57410 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
57411
57412         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
57413         netbsd*-gnu*.  Suggested by Robert Millan.
57414
57415 2003-10-29  Paul Eggert  <eggert@twinsun.com>
57416
57417         * modules/group-member: Depend on stdbool.
57418
57419 2003-10-29  Paul Eggert  <eggert@twinsun.com>
57420
57421         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
57422
57423 2003-10-29  Paul Eggert  <eggert@twinsun.com>
57424
57425         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
57426         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
57427         after the 'gnu' in these cases.  This fixes some bugs in the
57428         previous change, and is based on suggestions by Robert Millan.
57429
57430 2003-10-29  Paul Eggert  <eggert@twinsun.com>
57431
57432         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
57433         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
57434         no longer needed.
57435         * lib/quotearg.c (quotearg_n_options): Use it.
57436         * lib/group-member.c: Include <stdbool.h>.
57437         (free_group_info): Arg is now const *; don't free arg.
57438         (get_group_info): Now returns bool and accepts struct group_info *,
57439         rather than returning a malloc'ed struct group_info *.
57440         All uses changed.  Check for overflow in internal size calculation.
57441
57442         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
57443         rather than xmalloc/xrealloc.
57444         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
57445         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
57446         conformance bug: the old code used a pointer after freeing the
57447         storage that it addressed.
57448         * lib/hash.c (hash_initialize): Simplify the code by using
57449         xalloc_oversized rather than doing it by hand.
57450         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
57451         the buffer preserved.  Use free and xmalloc instead.
57452         * lib/quotearg.c (quotearg_n_options): Likewise.
57453         Use a simpler test for size overflow.  Don't use xalloc_oversized
57454         because unsigned int might be wider than size_t (!); this suggests
57455         that we should switch from unsigned int to size_t for slot numbers.
57456
57457 2003-10-28  Paul Eggert  <eggert@twinsun.com>
57458
57459         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
57460         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
57461         NetBSD kernels.  Requested by Richard Stallman.
57462
57463 2003-10-27  Paul Eggert  <eggert@twinsun.com>
57464
57465         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
57466         to allocate the returned structure.  Do not allocate a subarray,
57467         as x2nrealloc will do that.
57468         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
57469         instead of xnrealloc.
57470         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
57471
57472 2003-10-27  Bruno Haible  <bruno@clisp.org>
57473
57474         * lib/stdbool_.h: Better support for BeOS.
57475
57476 2003-10-26  Paul Eggert  <eggert@twinsun.com>
57477
57478         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
57479         now uses inline.
57480
57481 2003-10-26  Paul Eggert  <eggert@twinsun.com>
57482
57483         * lib/xalloc.h (xalloc_oversized): New static inline function, for
57484         callers that want to do their own size-overflow checking.  Include
57485         <stdbool.h>, since xalloc_oversized returns bool.
57486         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
57487         to use xalloc_oversized.
57488
57489         Add two functions x2realloc, x2nrealloc, for programs that grow
57490         arrays dynamically by doubling their sizes.
57491         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
57492         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
57493         New functions.
57494
57495         Port to C99 semantics for 'inline' of external functions.
57496         Bug reported by Bruno Haible.
57497         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
57498         with the old contents of xnmalloc.
57499         (xnmalloc, xmalloc): Use it.
57500         (xnrealloc_inline): New static inline function,
57501         with the old contents of xnrealloc.
57502         (xnrealloc, xrealloc): Use it.
57503
57504         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
57505         that.
57506
57507 2003-10-26  Karl Berry  <karl@gnu.org>
57508
57509         * config/srclist.txt (COPYING.DOC): no longer available from
57510         /gd/gnuorg; don't know where the ultimate source is.
57511
57512 2003-10-25  Paul Eggert  <eggert@twinsun.com>
57513
57514         Fix several address-calculation bugs in the hash modules,
57515         plus some minor code cleanup.
57516
57517         * lib/hash.h: Include <stdbool.h>, for bool.
57518         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
57519         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
57520         hash_get_n_entries, hash_get_max_bucket_length,
57521         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
57522         hash_rehash): Use size_t rather than unsigned.
57523         * lib/hash.c (struct hash_table, hash_get_n_buckets,
57524         hash_get_n_buckets_used, hash_get_n_entries,
57525         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
57526         hash_get_entries, hash_do_for_each, hash_string, is_prime,
57527         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
57528         Likewise.
57529         (SIZE_MAX): Define if not defined.
57530         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
57531         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
57532         hash_print):
57533         Use const * when possible.
57534         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
57535         (check_tuning): Fix bug: if tuning parameters were very close to
57536         0 or 1, rounding errors could have caused subscript violations.
57537         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
57538         (hash_initialize): Add 'fail:' label
57539         to free table and return NULL, and use it to simplify code.
57540         Use calloc rather than clearing the storage ourself.
57541         (hash_initialize, hash_rehash): Check for arithmetic overflow in
57542         buffer size calculations.
57543         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
57544         Include <stddef.h>, for size_t.
57545         * lib/hash-pjw.c (hash_pjw): Likewise.
57546         Switch to method described by Bruno Haible.
57547         Include <limits.h>, for CHAR_BIT.
57548         (SIZE_BITS): New macro.
57549
57550 2003-10-23  Paul Eggert  <eggert@twinsun.com>
57551
57552         * m4/getline.m4 (AM_FUNC_GETLINE):
57553         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
57554         hosts.  Problem reported by Derek Robert Price in
57555         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
57556         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
57557         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
57558
57559 2003-10-21  Paul Eggert  <eggert@twinsun.com>
57560
57561         * lib/getndelim2.c (getndelim2): When size calculation overflows,
57562         ceiling the allocation at NMAX bytes rather than silently
57563         discarding input bytes before NMAX is reached.  This makes
57564         a difference only if NMAX exceeds SIZE_MAX / 2.
57565
57566         * lib/obstack.c: Merge from glibc.
57567         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
57568         Add libc_hidden_def (_obstack_newchunk).
57569         (_obstack_free) [! defined _LIBC]: Remove.
57570         [defined _LIBC]: Make a strong alias from obstack_free, rather than
57571         a clone of the function body.
57572         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
57573         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
57574
57575         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
57576         glibc.
57577         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
57578         arg to memcpy.
57579
57580         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
57581         (obstack_ptr_grow_fast, obstack_int_grow_fast):
57582         Don't use lvalue casts, as GCC plans to remove support for them
57583         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
57584         was also present in the non-GCC version, indicating that this
57585         code had always been buggy and had never been widely used.
57586         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
57587         Use the fast variant of each macro, rather than copying the
57588         definiens of the fast variant; that way, we'll be more likely to
57589         catch future bugs in the fast variants.
57590
57591 2003-10-20  Bruno Haible  <bruno@clisp.org>
57592
57593         * modules/wait-process: New file.
57594         * MODULES.html.sh (func_all_modules): Add wait-process.
57595
57596 2003-10-20  Bruno Haible  <bruno@clisp.org>
57597
57598         * m4/wait-process.m4: New file.
57599
57600 2003-10-20  Bruno Haible  <bruno@clisp.org>
57601
57602         * lib/wait-process.h: New file, from GNU gettext.
57603         * lib/wait-process.c: New file, from GNU gettext.
57604
57605 2003-10-19  Jim Meyering  <jim@meyering.net>
57606
57607         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
57608         HPUX 10.20.
57609
57610 2003-10-18  Karl Berry  <karl@gnu.org>
57611
57612         * config/config.guess: update from config.
57613
57614 2003-10-16  Paul Eggert  <eggert@twinsun.com>
57615
57616         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
57617         (getgroups): First arg is int, not size_t.
57618         Don't let 'free' mangle errno.
57619
57620 2003-10-16  Paul Eggert  <eggert@twinsun.com>
57621
57622         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
57623
57624 2003-10-16  Karl Berry  <karl@gnu.org>
57625
57626         * config/config.{guess,sub}: update from config.
57627
57628 2003-10-16  Jim Meyering  <jim@meyering.net>
57629
57630         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
57631         memcpy.
57632
57633 2003-10-15  Paul Eggert  <eggert@twinsun.com>
57634
57635         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
57636         (SIZE_MAX): Remove.
57637         (new_exclude, add_exclude_file): Initial size no longer needs to
57638         be a power of 2.
57639         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
57640         our own address arithmetic overflow checking.
57641
57642         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
57643         (fnmatch): Do not alloca more than 2000 wide characters;
57644         instead, use malloc for large buffers.
57645         Check for address arithmetic overflow, and return -1
57646         with errno set to ENOMEM in that case.
57647         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
57648         (NEW_PATTERN): Do not alloca more than 8000 bytes;
57649         instead, return -1.  Check for address arithmetic overflow.
57650
57651 2003-10-14  Paul Eggert  <eggert@twinsun.com>
57652
57653         Handle invalid suffixes and overflow independently, so that
57654         callers can treat them independently as needed.  Fix some bugs in
57655         suffix handling, e.g., "100k@" was not diagnosed as an invalid
57656         suffix for a human-readable blocksize.  The major caller-visible
57657         change is the addition of a new
57658         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
57659         that both overflow and suffix chars were found.
57660
57661         * lib/human.c (humblock): Don't check separately for invalid suffix
57662         char; that is xstrtoumax's job (now that its bug is fixed).
57663         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
57664         INTMAX_MAX]: New macros.
57665         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
57666         TYPE_MAXIMUM): New macros.
57667         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
57668         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
57669         if overflow occurs, as it's what __strtol does and it's more useful
57670         in practice.
57671         (__xstrtol): If __strtol reports some error other than ERANGE,
57672         reflect it to the caller as LONGINT_INVALID.  If it reports
57673         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
57674         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
57675         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
57676         value.
57677         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
57678         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
57679         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
57680         [defined UINTMAX_MAX]: New macros.
57681
57682 2003-10-14  Bruno Haible  <bruno@clisp.org>
57683
57684         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
57685
57686 2003-10-14  Bruno Haible  <bruno@clisp.org>
57687
57688         * m4/sig_atomic_t: New file, from GNU gettext.
57689         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
57690
57691 2003-10-14  Bruno Haible  <bruno@clisp.org>
57692
57693         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
57694         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
57695         Also use volatile where needed.
57696
57697 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57698
57699         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
57700         Change maintainer from Bruno Haible to 'all'.
57701
57702 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57703
57704         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
57705
57706 2003-10-12  Paul Eggert  <eggert@twinsun.com>
57707
57708         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
57709         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
57710         and define in terms of the other primitives.
57711         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
57712         (SIZE_MAX): Define if not already defined.
57713         (array_size_overflow): New function.
57714         (xalloc_die): Abort instead of exiting if 'error' returns.
57715         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
57716         (xmalloc, xrealloc): Use them.
57717         (xcalloc): Check for address arithmetic overflow.
57718         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
57719         a bit faster than strcpy.
57720
57721 2003-10-10  Simon Josefsson  <jas@extundo.com>
57722
57723         * modules/argp (Depends-on): Add restrict and strcase.
57724
57725 2003-10-10  Simon Josefsson  <jas@extundo.com>
57726
57727         * m4/argp.m4: Add AC_C_INLINE.
57728
57729 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57730
57731         Merge getpass from libc, plus a few fixes.
57732
57733         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
57734         Include <stdbool.h>.
57735         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
57736         __fsetlocking to empty.
57737         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
57738         do include <bits/libc-lock.h>.
57739         Do not include <fcntl.h>; not needed.
57740         [_LIBC]: Include <wchar.h>.
57741         (NOTCANCEL_MODE): New macro.
57742         (flockfile, funlockfile) [_LIBC]: New macros.
57743         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
57744         [!_LIBC]: New macros.
57745         (call_fclose): New function.
57746         (getpass): Use it.  Save tty stream separately; this simplifies the
57747         code and makes it more reliable if stdin happens to equal stdout.
57748         Invoke __fsetlocking on tty.
57749         Handle thread cancellation if needed.
57750         Namespace cleanup (use __tcgetattr, __getline).
57751         Use bool for Booleans.
57752         [USE_IN_LIBIO]: Handle wide streams.
57753         [!_LIBC]: Unconditionally do the fseek, since we don't know what
57754         stream might go where.
57755
57756         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
57757         doesn't have to include <stdio.h> before us.
57758         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
57759         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
57760         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
57761         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
57762         if not declared, so that we can use getpass.c code from libc without
57763         rewriting it.
57764         (flockfile, ftrylockfile, funlockfile): New macros.
57765
57766 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57767
57768         * modules/getpass: Depend on stdbool.
57769
57770 2003-10-08  Paul Eggert  <eggert@twinsun.com>
57771
57772         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
57773
57774 2003-10-07  Karl Berry  <karl@gnu.org>
57775
57776         * config/config.{guess,sub}: update from config.
57777
57778 2003-10-06  Jim Meyering  <jim@meyering.net>
57779             Bruno Haible  <bruno@clisp.org>
57780
57781         This lets translators provide better translations for the
57782         "Written by ..." part of --version output.
57783         * lib/version-etc.h: Include stdarg.h.
57784         (version_etc_copyright): Declare as readonly.
57785         (version_etc): Make this function variadic with a NULL-terminated list
57786         of author name strings.
57787         (version_etc_va): New declaration.
57788         * lib/version-etc.c: Include stdarg.h, stdlib.h.
57789         (version_etc_copyright): Declare as readonly.
57790         (version_etc_va): New function. Provide a different translatable string
57791         for each possible number of authors < 10. Abbreviate when there are 10
57792         authors or more.
57793         (version_etc): Make this function variadic. Call version_etc_va.
57794         Suggestion from Gary V. Vaughan.
57795
57796         * lib/long-options.h (parse_long_options): Change prototype: the
57797         authors string is moved to the end and becomes variadic.
57798         * lib/long-options.c: Include stdarg.h.
57799         (parse_long_options): Make this function variadic, too.
57800         Call version_etc_va, not version_etc.
57801
57802 2003-10-06  Bruno Haible  <bruno@clisp.org>
57803
57804         * modules/version-etc-2: Remove file.
57805         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
57806
57807 2003-10-06  Bruno Haible  <bruno@clisp.org>
57808
57809         * modules/fatal-signal: New file.
57810         * MODULES.html.sh (func_all_modules): Add fatal-signal.
57811
57812 2003-10-06  Bruno Haible  <bruno@clisp.org>
57813
57814         * m4/fatal-signal.m4: New file.
57815         * m4/signalblocking.m4: New file, from GNU gettext.
57816
57817 2003-10-06  Bruno Haible  <bruno@clisp.org>
57818
57819         * lib/version-etc-2.h: Remove file.
57820         * lib/version-etc-2.c: Remove file.
57821
57822 2003-10-06  Bruno Haible  <bruno@clisp.org>
57823
57824         * lib/fatal-signal.h: New file, from GNU gettext.
57825         * lib/fatal-signal.c: New file, from GNU gettext.
57826
57827 2003-10-05  Paul Eggert  <eggert@twinsun.com>
57828
57829         * README: Rework advice for preventing empty .o files.
57830         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
57831         not <sys/types.h>.
57832
57833 2003-10-04  Karl Berry  <karl@gnu.org>
57834
57835         * lib/argp*: update from libc.
57836
57837 2003-10-04  Karl Berry  <karl@gnu.org>
57838
57839         * config/config.{guess,sub}: update from config.
57840
57841 2003-10-02  Bruno Haible  <bruno@clisp.org>
57842
57843         * modules/lchown (Include): Add lchown.h.
57844         * modules/time_r (Include): Use "..." syntax.
57845         * modules/xgetdomainname (Include): Add xgetdomainname.h.
57846
57847 2003-10-01  Simon Josefsson  <jas@extundo.com>
57848
57849         * MODULES.html.sh (func_all_modules): Move gethostname from section
57850         'based on' to section 'lacking' POSIX:2001.
57851
57852 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
57853
57854         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
57855         to output mode on the same stream.
57856
57857 2003-09-29  Paul Eggert  <eggert@twinsun.com>
57858
57859         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
57860         Fix arg typo in previous patch.
57861
57862 2003-09-28  Jim Meyering  <jim@meyering.net>
57863
57864         * lib/error.c: Correct cpp indentation.
57865
57866 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57867
57868         * modules/free: New file.
57869
57870 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57871
57872         * m4/free.m4: New file.
57873
57874 2003-09-27  Paul Eggert  <eggert@twinsun.com>
57875
57876         * lib/minmax.h (MIN, MAX)
57877         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
57878         Omit the special code that used __typeof__, since we worry that
57879         it could be more trouble than it's worth.  See:
57880         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
57881         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
57882
57883         * lib/free.c: New file.
57884
57885 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
57886
57887         Trivial fixes to Makefile.am parts of module listings.
57888         * modules/strstr: Append strstr.h to lib_SOURCES.
57889         * modules/strcase: Likewise, for strcase.h.
57890
57891 2003-09-27  Karl Berry  <karl@gnu.org>
57892
57893         * config/mkinstalldirs: update from automake.
57894
57895 2003-09-26  Paul Eggert  <eggert@twinsun.com>
57896
57897         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
57898         (error_tail): Do not loop, reallocating temporary buffer, since
57899         the output cannot contain more wide characters than the input
57900         contains bytes, the size must be big enough already.  This avoids
57901         one potential size overflow calculation.  Check for size overflow
57902         when calculating temporary buffer size.  Free temporary buffer
57903         when done, if it was allocated with malloc; this plugs a memory
57904         leak.  Remove casts from void * to pointers, that are no longer
57905         needed now that we're assuming C89 or better.
57906
57907         Merge error changes from glibc.
57908
57909         * lib/error.c, error.h: Update copyright notice header to match glibc.
57910         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
57911         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
57912         Disable cancellation while printing error.
57913         * lib/error.h: Prepend __ to parameter names.
57914
57915 2003-09-26  Jim Meyering  <jim@meyering.net>
57916
57917         * lib/error.c (error_tail): Move some declarations
57918         into inner scope where the local variables are used.
57919
57920 2003-09-26  Bruno Haible  <bruno@clisp.org>
57921
57922         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
57923         stpncpy().
57924         Don't define stpncpy through config.h; it's now done through stpncpy.h.
57925
57926 2003-09-26  Bruno Haible  <bruno@clisp.org>
57927
57928         * lib/stpncpy.h (gnu_stpncpy): New declaration.
57929         (stpncpy): Define as alias for gnu_stpncpy.
57930         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
57931
57932 2003-09-25  Simon Josefsson  <jas@extundo.com>
57933
57934         * lib/xgetdomainname.h: New file.
57935         * lib/xgetdomainname.c: New file.
57936
57937 2003-09-25  Simon Josefsson  <jas@extundo.com>
57938             Bruno Haible  <bruno@clisp.org>
57939
57940         * modules/getdomainname: New file.
57941         * modules/xgetdomainname: New file.
57942         * MODULES.html.sh (func_all_modules): Add getdomainname,
57943         xgetdomainname.
57944
57945 2003-09-25  Simon Josefsson  <jas@extundo.com>
57946             Bruno Haible  <bruno@clisp.org>
57947
57948         * m4/getdomainname.m4: New file.
57949
57950 2003-09-25  Simon Josefsson  <jas@extundo.com>
57951             Bruno Haible  <bruno@clisp.org>
57952
57953         * lib/getdomainname.h: New file.
57954         * lib/getdomainname.c: New file.
57955
57956 2003-09-25  Karl Berry  <karl@gnu.org>
57957
57958         * lib/argp-fmtstream.c, argp-help.c: update from libc.
57959
57960 2003-09-25  Karl Berry  <karl@gnu.org>
57961
57962         * config/install-sh: update from automake.
57963
57964 2003-09-25  Bruno Haible  <bruno@clisp.org>
57965
57966         * modules/version-etc-2: New file, from modules/version-etc with
57967         modifications.
57968         * MODULES.html.sh (func_all_modules): Add version-etc-2.
57969
57970 2003-09-25  Bruno Haible  <bruno@clisp.org>
57971
57972         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
57973         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
57974
57975 2003-09-24  Simon Josefsson  <jas@extundo.com>
57976
57977         * modules/xgethostname: Add xgethostname.h.
57978
57979 2003-09-24  Paul Eggert  <eggert@twinsun.com>
57980
57981         * lib/linebuffer.c (freebuffer): Don't free the argument, just
57982         the buffer associated with the argument.  Bug reported by
57983         Simon Josefsson.
57984
57985 2003-09-24  Paul Eggert  <eggert@twinsun.com>
57986
57987         * README: Document assumptions that 'int' is at least 32 bits
57988         wide, that integer arithmetic is 2's complement without overflow,
57989         that there are no holes in integer values, that adding sizes of
57990         two nonoverlapping objects can't overflow, and that all-bits-zero
57991         yields scalar zero.  Fix spelling and capitalization typos.
57992
57993 2003-09-19  Karl Berry  <karl@gnu.org>
57994
57995         * lib/argp.h: update from libc.
57996
57997 2003-09-17  Paul Eggert  <eggert@twinsun.com>
57998
57999         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
58000         to avoid spurious warnings like "AC_RUN_IFELSE was called before
58001         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
58002
58003 2003-09-17  Paul Eggert  <eggert@twinsun.com>
58004
58005         * gnulib-tool: Use "test -h", not "test -L", for portability
58006         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
58007         (tags_regexp): Remove, since \| doesn't conform to POSIX.
58008         (sed_extract_prog): Issue s commands one-by-one, rather than
58009         using \| in one s command.
58010
58011 2003-09-16  Paul Eggert  <eggert@twinsun.com>
58012
58013         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
58014         input error, instead of returning NULL the next time we are called
58015         (and therefore losing track of errno).
58016
58017 2003-09-16  Bruno Haible  <bruno@clisp.org>
58018
58019         * gnulib-tool (func_create_testdir): Warn about duplicated
58020         dependencies.
58021
58022 2003-09-15  Paul Eggert  <eggert@twinsun.com>
58023
58024         * modules/argmatch, modules/fatal, modules/obstack,
58025         modules/xalloc, modules/xgethostname: Sort dependencies by
58026         importance, not alphabetically.
58027
58028 2003-09-15  Paul Eggert  <eggert@twinsun.com>
58029
58030         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
58031         fails, so that the caller gets the proper errno.
58032
58033         * lib/readutmp.c (read_utmp): Likewise.
58034         Check for fstat error.  Close stream and free storage
58035         when failing.
58036
58037 2003-09-14  Karl Berry  <karl@gnu.org>
58038
58039         * config/srclist.txt (strdup.c): disable for c89 changes.
58040
58041 2003-09-14  Jim Meyering  <jim@meyering.net>
58042
58043         * lib/getloadavg.c: Correct cpp indentation.
58044         * lib/strdup.c: Likewise.
58045         * lib/vasnprintf.c: Likewise.
58046
58047 2003-09-14  Bruno Haible  <bruno@clisp.org>
58048
58049         * modules/fwriteerror: New file.
58050         * MODULES.html.sh (func_all_modules): Add fwriteerror.
58051
58052 2003-09-14  Bruno Haible  <bruno@clisp.org>
58053
58054         * lib/fwriteerror.h: New file.
58055         * lib/fwriteerror.c: New file.
58056
58057 2003-09-12  Paul Eggert  <eggert@twinsun.com>
58058
58059         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
58060         modules/xgethostname, modules/xalloc: Depend on exit.
58061
58062 2003-09-12  Paul Eggert  <eggert@twinsun.com>
58063
58064         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
58065
58066         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
58067         and AC_MINIX, too, so that their extensions are available.
58068
58069         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
58070         This macro has been superseded by gl_BACKUPFILE.
58071
58072         More patches to assume C89 or better.
58073
58074         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
58075
58076         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
58077         unconditionally.
58078         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
58079         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
58080         Include <string.h>, <stdlib.h> unconditionally.
58081         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
58082         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
58083         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
58084         headers or for string.h.
58085         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
58086         or strtoul.
58087
58088         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
58089         headers.
58090         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
58091         * m4/userspec.m4 (gl_USERSPEC): Likewise.
58092         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
58093         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
58094         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
58095         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
58096         memcpy, memset.
58097         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
58098         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
58099         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
58100         strtol.
58101         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
58102         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
58103         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
58104         strtoul.
58105
58106 2003-09-12  Paul Eggert  <eggert@twinsun.com>
58107
58108         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
58109         * lib/obstack.c [!defined _LIBC]: Likewise.
58110         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
58111         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
58112         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
58113
58114         More changes to assume C89 or better.
58115
58116         * lib/error.c (error_tail): Assume vprintf.
58117
58118         * lib/argmatch.c (getenv): Remove decl.
58119         * lib/progreloc.c (get_full_program_name): Define via prototype.
58120         * lib/setenv.c (clearenv): Likewise.
58121         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
58122         needed.
58123         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
58124         (malloc, memcpy): Remove decls.
58125         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
58126         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
58127         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
58128         (memcpy): Remove macro.
58129         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
58130         (__P): Remove.  All uses removed.
58131         (PTR): Remove.  All uses changed to void *.
58132         (CHAR_BIT, NULL): Remove.
58133         (spaces, zeros, memset_space, memset_zero)
58134         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
58135         Remove.
58136         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
58137         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
58138         Define with prototype.
58139         Remove now-unnecessary prototype decl.
58140         (extra_args_spec): Assume ANSI C.  All uses changed.
58141         (extra_args_spec_iso): Remove.
58142         (my_strftime, emacs_strftimeu): Define via prototype.
58143         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
58144         unconditionally.
58145         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
58146         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
58147         (strtoul, strtol): Remove decls.
58148         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
58149         LONG_MAX): Remove.
58150         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
58151         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
58152         (LOCALE_PARAM_PROTO): New macro.
58153         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
58154         (INTERNAL (strtol), strtol): Define with a prototype.
58155         (PARAMS): Remove.  All uses removed.
58156         * lib/tempname.c: Include <string.h> unconditionally.
58157         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
58158         * lib/xgethostname.c (main): Define with a prototype.
58159         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
58160         Include <stdlib.h> unconditionally.
58161         (calloc, malloc, realloc, free): Remove decls.
58162         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
58163         Include <stdlib.h> unconditionally.  Sort include file names.
58164         (strtod): Remove.
58165         (xstrtod): Define with a prototype.
58166         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
58167         (strtol, strtoul): Remove decls.
58168
58169 2003-09-11  Paul Eggert  <eggert@twinsun.com>
58170
58171         More patches to assume C89 or better.
58172         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
58173         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
58174         string.h, memchr, STDC_HEADERS.
58175
58176 2003-09-11  Paul Eggert  <eggert@twinsun.com>
58177
58178         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
58179         Include <stdlib.h>, <string.h> unconditionally.
58180         Remove now-unnecessary cast to char *.
58181         * lib/strnlen.c: Include <string.h> unconditionally.
58182         * lib/yesno.c (yesno): Define with a prototype.
58183
58184 2003-09-11  Bruno Haible  <bruno@clisp.org>
58185
58186         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
58187
58188 2003-09-10  Jim Meyering  <jim@meyering.net>
58189
58190         * lib/error.c: Correct indentation of cpp directives.
58191
58192 2003-09-10  Bruno Haible  <bruno@clisp.org>
58193
58194         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
58195         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
58196         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
58197         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
58198         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
58199         <stdlib.h> and <string.h> checks.
58200         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
58201         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
58202
58203 2003-09-10  Bruno Haible  <bruno@clisp.org>
58204
58205         * lib/strcspn.c: Include <string.h> unconditionally.
58206         * lib/strpbrk.c: Include <string.h> unconditionally.
58207         * lib/strstr.c: Include <string.h> unconditionally.
58208         * lib/unicodeio.c: Include <string.h> unconditionally.
58209         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
58210         * lib/unsetenv.c: Likewise.
58211         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
58212         * lib/yesno.c: Include <stdlib.h> unconditionally.
58213         (rpmatch): Add prototype.
58214
58215 2003-09-09  Paul Eggert  <eggert@twinsun.com>
58216
58217         More patches to assume C89 or better.
58218         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
58219         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
58220         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
58221         or for string.h.
58222         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
58223         stdlib.h.
58224         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
58225         C headers.
58226         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
58227         string.h.
58228         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
58229         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
58230         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
58231         or for string.h.
58232         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
58233         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
58234         C headers.
58235         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
58236         memcpy.
58237         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
58238         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
58239         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
58240         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
58241         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
58242         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
58243         string.h, free.
58244         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
58245         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
58246         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
58247         C headers, or for string.h.
58248         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
58249         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
58250         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
58251         headers, memory.h, stdlib.h, string.h, strings.h.
58252         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
58253         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
58254         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
58255         strchr.
58256         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
58257         headers, memory.h, string.h.
58258         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
58259         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
58260         free.
58261         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
58262         headers.
58263         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
58264         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
58265         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
58266         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
58267         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
58268
58269 2003-09-09  Paul Eggert  <eggert@twinsun.com>
58270
58271         More K&R removal.
58272
58273         * lib/acosl.c (main): Use a prototype.
58274         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
58275         tanl.c: Likewise.
58276
58277         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
58278
58279         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
58280         (getopt, etopt_long, getopt_long_only, _getopt_internal)
58281         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
58282         with a prototype.
58283         * lib/getopt.c (const): Remove macro.
58284         Include <string.h> unconditionally.
58285         (my_index): Remove; all uses changed to strchr.
58286         (strlen): Remove decl.
58287         (exchange): Remove forward decl; no longer needed.
58288         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
58289         Define with prototype.
58290         * lib/getopt1.c (const): Remove macro.
58291         (getopt_long, getopt_long_only, main): Define with prototype.
58292
58293         * lib/getugroups.c: Include <string.h> unconditionally.
58294
58295         * lib/getusershell.c: Include <stdlib.h> unconditionally.
58296         (getusershell, setusershell, endusershell, readname, main):
58297         Define with prototypes.
58298
58299         * lib/group-member.c: Include group-member.h first.
58300         Include <stdlib.h> unconditionally.
58301
58302         * lib/hard-locale.c: Include hard-locale.h first.
58303         Include <stdlib.h>, <string.h> unconditionally.
58304
58305         * lib/hash.c (free, malloc): Remove decls.
58306         Include <stdlib.h> unconditionally.
58307
58308         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
58309         (getenv): Do not declare.
58310
58311         * lib/idcache.c: Include <string.h> unconditionally.
58312
58313         * lib/long-options.c: Include long-options.h first, to test interface.
58314         Include <stdlib.h> unconditionally.
58315
58316         * lib/makepath.c: Include makepath.h first, to test interface.
58317         Include <stdlib.h> and <string.h> unconditionally.
58318
58319         * lib/linebuffer.c: Include <stdlib.h>.
58320         (free): Remove decl.
58321
58322         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
58323         stddef.h. rpl_malloc returns void *, not char *.
58324         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
58325         prototype.
58326
58327         * lib/md5.h: Include <limits.h> unconditionally.
58328         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
58329         (__P): Remove; all uses removed.
58330         * lib/md5.c: Include "md5.h" first.
58331         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
58332         md5_buffer, md5_process_bytes, md5_process_block):
58333         Define with prototypes.
58334         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
58335         * lib/sha.c: Include "sha.h" first.
58336         Include <stdlib.h>, <string.h> unconditionally.
58337
58338         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
58339         * lib/memcmp.c (__ptr_t): Likewise.
58340         * lib/memrchr.c (__ptr_t): Likewise.
58341         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
58342         Include <string.h> unconditionally.
58343         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
58344         * lib/memchr.c: Include <stdlib.h> unconditionally.
58345         * lib/memchr.c (LONG_MAX): Remove.
58346         * lib/memrchr.c (LONG_MAX): Likewise.
58347         * lib/memchr.c (__memchr): Define via a prototype.
58348         * lib/memrchr.c (__memrchr): Likewise.
58349         * lib/memcmp.c (__P): Remove, and remove all uses.
58350         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
58351         Remove forward decls; no longer needed.
58352         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
58353         Use types required by C89 in prototype.
58354
58355         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
58356         * lib/savedir.c: Likewise.
58357         * lib/mkdir.c (free): Remove decl.
58358         * lib/rmdir.c (rmdir): Define with a prototype.
58359         * lib/savedir.c: Include savedir.h first, to test interface.
58360
58361         * lib/mktime.c (STDC_HEADERS): Remove.
58362         Include <stdlib.h>, <string.h> unconditionally.
58363
58364         * lib/modechange.c: Include <stdlib.h> unconditionally.
58365         (malloc): Remove decl.
58366
58367         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
58368         (free): Remove decl.
58369
58370         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
58371         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
58372         (This type really should be intptr_t, but that's a C99ism.)
58373         (_obstack_memcpy): Remove: all uses changed to memcpy.
58374         Include <string.h> unconditionally.
58375         (struct obstack): Assume __STDC__ for types of members
58376         chunkfun, freefun, extra_arg.
58377         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
58378         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
58379         obstack_begin, obstack_specify_allocation,
58380         obstack_specify_allocation_with_arg, obstack_chunkfun,
58381         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
58382         Remove unprototyped decls and the macros that use them.
58383         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
58384         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
58385         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
58386         (defined __STDC__ && __STDC__)]:
58387         Remove nonprototyped code.
58388         Include <stdlib.h> unconditionally.
58389         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
58390         _obstack_allocated_p, _obstack_free, obstack_free,
58391         _obstack_memory_used, print_and_abort):
58392         Define using prototypes.
58393         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
58394         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
58395         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
58396         obstack_next_free, obstack_object_size, obstack_room) [0]:
58397         Remove unused, unprototyped code.
58398
58399         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
58400
58401         * lib/physmem.c (physmem_total, physmem_available, main): Define
58402         with prototypes.
58403
58404         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
58405         (main): Define with a prototype.
58406
58407         * lib/posixver.c (getenv): Remove decl.
58408
58409         * lib/putenv.c (malloc): Returns void *, not char *.
58410         Include <string.h> unconditionally.
58411         (strchr, memcpy, NULL): Do not define.
58412
58413         * lib/readtokens.c: Include readtokens.h first, to test interface.
58414         Include <stdlib.h>, <string.h> unconditionally.
58415         (init_tokenbuffer): Define with a prototype.
58416
58417         * lib/regex.c (PARAMS): Remove.  All uses removed.
58418         All uses of _RE_ARGS removed, too.
58419         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
58420         unconditionally.
58421         (bzero): Assume memset exists.
58422         (memcmp, memcpy, NULL): Remove.
58423         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
58424         char, or assignments to local vars of type signed char.
58425         (init_syntax_once, PREFIX(extract_number_and_incr),
58426         PREFIX(print_partial_compiled_pattern),
58427         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
58428         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
58429         PREFIX(regex_grow_registers), PREFIX(regex_compile),
58430         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
58431         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
58432         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
58433         wcs_compile_range, byte_compile_range, truncate_wchar,
58434         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
58435         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
58436         count_mbs_length, wcs_re_match_2_internal,
58437         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
58438         PREFIX(alt_match_null_string_p),
58439         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
58440         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
58441         regfree, PREFIX(extract_number)): Define with prototype.  Remove
58442         now-unnecessary declaration, if any.
58443         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
58444         regcomp, regexec):
58445         Remove now-unnecessary casts among pointer types.
58446         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
58447
58448         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
58449         (free): Remove decl.
58450
58451         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
58452
58453         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
58454         (free): Remove decl.
58455
58456         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
58457         * lib/xgetcwd.c: Likewise.
58458
58459         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
58460         (free): Remove decl.
58461
58462         * lib/strchrnul.c (strchrnul): Define with a prototype.
58463         Fix bug: c_in was not converted to char before searching.
58464
58465         The following changes are not K&R related:
58466
58467         * lib/group-member.h: Include <sys/types.h>, so that this file is
58468         self-contained.
58469         * lib/makepath.h: Likewise.
58470
58471         * lib/getusershell.c (readname, default_index, line_size, readname):
58472         Use size_t, not int, for sizes.
58473         (readname): If the size overflows, report an error instead of
58474         looping forever.
58475
58476 2003-09-09  Paul Eggert  <eggert@twinsun.com>
58477
58478         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
58479         libc.
58480
58481 2003-09-09  Paul Eggert  <eggert@twinsun.com>
58482
58483         * README: New section: portability guidelines.
58484
58485 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
58486
58487         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
58488         C89 spec.
58489
58490 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
58491
58492         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
58493
58494 2003-09-08  Paul Eggert  <eggert@twinsun.com>
58495
58496         Assume C89 or better; remove K&R cruft.
58497         A few of these changes were first proposed by Derek Robert Price
58498         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
58499
58500         * lib/addext.c: Include <string.h> unconditionally.
58501         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
58502         Don't declare getenv or malloc.
58503
58504         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
58505         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
58506         (NULL): Remove.
58507         (find_stack_direction, alloca): Use prototypes.
58508
58509         * lib/atexit.c (atexit): Define using a prototype.
58510
58511         * lib/basename.c, dirname.c, stripslash.c:
58512         Include <string.h> unconditionally.
58513
58514         * lib/bcopy.c: Include <stddef.h>.
58515         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
58516
58517         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
58518
58519         * lib/error.h (error, error_at_line, error_print_progname)
58520         [! (defined (__STDC__) && __STDC__)]: Remove decls.
58521         * lib/error.c: Include error.h first, to check interface.
58522         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
58523         (VA_START): Remove; all uses changeed to va_start.
58524         (exit, strerror): Remove decls.
58525         (error_print_progname): Prototype uncondionally.
58526         Don't include <errno.h>; no longer needed.
58527         (private_strerror): Remove.
58528         (error_tail): Always define.
58529         (error, error_at_line): Assume C89 or better; always use prototypes.
58530         * lib/fatal.c: Include "fatal.h" first, to test interface.
58531         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
58532         (VA_START): Remove; all uses changed to va_start.
58533         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
58534         this case.
58535         (exit): Remove decl.
58536         (fatal): Prototype unconditionally.  Assume va_start works.
58537         Abort at end, to pacify gcc.
58538
58539         * lib/euidaccess.c (main): Define with a prototype.
58540
58541         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
58542
58543         * lib/exitfail.c: Include <stdlib.h> unconditionally.
58544
58545         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
58546         prototypes.
58547         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
58548         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
58549         (getenv): Remove decl.
58550         (fnmatch): Define using a prototype.
58551         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
58552         (FCT): Define using a prototype.
58553
58554         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
58555
58556         * lib/gethostname.c: Include <stddef.h>.
58557         (gethostname): Define with prototype.  Length is size_t, not int.
58558
58559 2003-09-08  Paul Eggert  <eggert@twinsun.com>
58560
58561         Assume C89 or better; remove K&R cruft.
58562         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
58563         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
58564         string.h, getenv, malloc.
58565         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
58566         headers.
58567         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
58568         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
58569         do not check for strerror.
58570         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
58571         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
58572         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
58573         do not check for doprnt or vprintf.
58574         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
58575         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
58576
58577 2003-09-08  Paul Eggert  <eggert@twinsun.com>
58578
58579         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
58580         getversion.c should have been removed then, but was accidentally
58581         preserved.
58582
58583         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
58584         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
58585
58586 2003-09-08  Karl Berry  <karl@gnu.org>
58587
58588         * config/config.sub, config.guess, srclistvars.sh: update from savannah
58589                 config, forget about prep.
58590
58591         * config/depcomp, missing: update from automake.
58592
58593 2003-09-07  Paul Eggert  <eggert@twinsun.com>
58594
58595         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
58596         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
58597
58598 2003-09-07  Paul Eggert  <eggert@twinsun.com>
58599
58600         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
58601         copy_tm_result.  Bug reported by Simon Josefsson in
58602         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
58603
58604 2003-09-06  Paul Eggert  <eggert@twinsun.com>
58605
58606         * m4/time_r.m4: New file.
58607         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
58608         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
58609         is. Check for timegm declaration.
58610         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
58611         Do not check for gmtime_r.
58612         Replace mktime if __mktime_internal does not exist and if mktime
58613         hasn't been replaced already.
58614
58615 2003-09-06  Paul Eggert  <eggert@twinsun.com>
58616
58617         * lib/time_r.c, lib/time_r.h: New files.
58618
58619         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
58620         __localtime_r.
58621         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
58622         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
58623
58624         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
58625         __gmtime_r.
58626         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
58627         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
58628         Include <time_r.h>.
58629
58630         * lib/timegm.c: Switch to glibc implementation, with the following
58631         changes:
58632         [defined HAVE_CONFIG_H]: Include <config.h>.
58633         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
58634         (__mktime_internal) [!defined _LIBC]: New decl.
58635         (__gmtime_r) [!defined _LIBC]: New macro and function.
58636         (timegm): Use a prototype, since gnulib assumes C89.
58637         Do not bother declaring tmp to be const, as it's not really usefu.
58638         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
58639         (timegm): Declare only if HAVE_DECL_TIMEGM.
58640
58641 2003-09-06  Paul Eggert  <eggert@twinsun.com>
58642
58643         * MODULES.html.sh (func_all_modules): Add time_r.
58644         * modules/time_r: New file.
58645         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
58646         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
58647
58648 2003-09-03  Paul Eggert  <eggert@twinsun.com>
58649
58650         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
58651         Bug reported by Lute Kamstra in
58652         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
58653
58654         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
58655         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
58656         course with correspondingly smaller numbers for tomorrow and
58657         yesterday.  From Tadayoshi Funaba.  Originally installed into
58658         sh-utils on 1999-08-07, but the patch got lost (I guess during the
58659         coreutils merge?).
58660
58661 2003-08-31  Simon Josefsson  <jas@extundo.com>
58662
58663         * modules/timegm: New file.
58664         * MODULES.html.sh (func_all_modules): Add timegm.
58665
58666 2003-08-31  Simon Josefsson  <jas@extundo.com>
58667
58668         * m4/timegm.m4: New file.
58669
58670 2003-08-31  Simon Josefsson  <jas@extundo.com>
58671
58672         * lib/timegm.h: New file.
58673         * lib/timegm.c: New file.  Based on
58674         wget-1.8.2/src/http.c:mktime_from_utc.
58675
58676 2003-08-31  Karl Berry  <karl@gnu.org>
58677
58678         * lib/argp.h: update from libc.
58679
58680 2003-08-28  Bruno Haible  <bruno@clisp.org>
58681
58682         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
58683         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
58684         followed by '#define fnmatch fnmatch_posix' gives an error.
58685
58686 2003-08-28  Bruno Haible  <bruno@clisp.org>
58687
58688         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
58689         warning on QNX, which defines O_BINARY to 000000.
58690
58691 2003-08-27  Jim Meyering  <jim@meyering.net>
58692
58693         * m4/mkstemp.m4: Require that the system mkstemp be able to create
58694         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
58695         would fail after 32.  Reported by Danny Levinson.  Details here:
58696         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
58697
58698 2003-08-24  Bruno Haible  <bruno@clisp.org>
58699
58700         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
58701         MSVC7 <stdio.h> is included later.
58702
58703 2003-08-22  Simon Josefsson  <jas@extundo.com>
58704
58705         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
58706
58707 2003-08-20  Karl Berry  <karl@gnu.org>
58708
58709         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
58710
58711 2003-08-20  Bruno Haible  <bruno@clisp.org>
58712
58713         * modules/progname: New file.
58714         * MODULES.html.sh (func_all_modules): Add progname.
58715
58716 2003-08-20  Bruno Haible  <bruno@clisp.org>
58717
58718         * lib/progname.h: New file, from GNU gettext.
58719         * lib/progname.c: New file, from GNU gettext.
58720         * lib/progreloc.c: New file, from GNU gettext.
58721
58722 2003-08-19  Jim Meyering  <jim@meyering.net>
58723
58724         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
58725         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
58726
58727 2003-08-19  Bruno Haible  <bruno@clisp.org>
58728
58729         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
58730         more.
58731
58732 2003-08-19  Bruno Haible  <bruno@clisp.org>
58733
58734         * lib/xstrdup.c: Assume <string.h> exists.
58735
58736 2003-08-18  Paul Eggert  <eggert@twinsun.com>
58737
58738         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
58739         in makefile rules.
58740
58741 2003-08-18  Jim Meyering  <jim@meyering.net>
58742
58743         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
58744         * m4/lib-ld.m4: Likewise.
58745
58746 2003-08-18  Jim Meyering  <jim@meyering.net>
58747
58748         * lib/setenv.h: Indent nested cpp directive.
58749         * lib/vasnprintf.c: Remove trailing blanks.
58750
58751 2003-08-17  Simon Josefsson  <jas@extundo.com>
58752
58753         * modules/xstrndup: New file.
58754         * MODULES.html.sh (func_all_modules): Add xstrndup.
58755
58756 2003-08-17  Simon Josefsson  <jas@extundo.com>
58757
58758         * modules/argp: Fix autoconf macro name. Add more dependencies.
58759
58760 2003-08-17  Simon Josefsson  <jas@extundo.com>
58761
58762         * m4/xstrndup.m4: New file.
58763
58764 2003-08-17  Simon Josefsson  <jas@extundo.com>
58765
58766         * m4/argp.m4: New file.
58767
58768 2003-08-17  Simon Josefsson  <jas@extundo.com>
58769             Bruno Haible  <bruno@clisp.org>
58770
58771         * lib/xstrndup.h: New file.
58772         * lib/xstrndup.c: New file.
58773
58774 2003-08-17  Bruno Haible  <bruno@clisp.org>
58775
58776         * modules/strndup (Files, Include): Add lib/strndup.h.
58777
58778 2003-08-17  Bruno Haible  <bruno@clisp.org>
58779
58780         * modules/euidaccess (Files): Add lib/euidaccess.h.
58781
58782 2003-08-17  Bruno Haible  <bruno@clisp.org>
58783
58784         * lib/strndup.h: New file.
58785
58786 2003-08-17  Bruno Haible  <bruno@clisp.org>
58787
58788         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
58789         like AC_GNU_SOURCE.
58790         * modules/extensions (configure.ac): Comment out the invocation of
58791         gl_USE_SYSTEM_EXTENSIONS.
58792
58793 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58794
58795         Merges from coreutils, etc.
58796         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
58797         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
58798         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
58799         fixing a typo.
58800         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
58801         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
58802
58803 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58804
58805         Document merge from coreutils.
58806         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
58807         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
58808         * modules/utime: Add m4/utimes-null.m4.
58809
58810 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58811
58812         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
58813         space, undoing this 2003-08-12 change:
58814         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
58815
58816 2003-08-16  Paul Eggert  <eggert@twinsun.com>
58817
58818         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
58819         strtoul.c from libc, undoing this 2003-08-12 change:
58820         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
58821
58822 2003-08-16  Jim Meyering  <jim@meyering.net>
58823
58824         Merges from coreutils.
58825         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
58826         prefix.  Adjust cache variables similarly.  Create 500 rather than
58827         just 300 files, to exercise bug on Darwin6.5, too.
58828         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
58829         $missing_dir.
58830         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
58831         AM_SYS_POSIX_TERMIOS.
58832         Reported by mkc@mathdogs.com.
58833         Also change use of $am_cv_sys_posix_termios
58834         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
58835         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
58836         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
58837         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
58838         in /proc/mounts until it finds one with matching device number.  This
58839         is unnecessary when the FILE argument *is* a mount point.  No stat call
58840         is necessary in that case.  So, disable the statvfs-testing code on
58841         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
58842         as RedHat bug# 84846.
58843         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
58844         to 1MB, so as not to render systems with no stack size limit (e.g.,
58845         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
58846         Include <unistd.h>.  On some systems,
58847         it is required for the definition of _SC_PAGESIZE.
58848
58849 2003-08-16  Jim Meyering  <jim@meyering.net>
58850
58851         Merge from coreutils.
58852         * lib/xstrtoimax.c: #else #if -> #elif.
58853         * lib/xstrtoumax.c: Likewise.
58854
58855 2003-08-16  Jim Meyering  <jim@meyering.net>
58856
58857         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
58858         * m4/utimes.m4: Removed.
58859         * m4/utimes-null.m4: Renamed from utimes.m4.
58860
58861         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
58862         to 1MB, so as not to render systems with no stack size limit (e.g.,
58863         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
58864         Include <unistd.h>.  On some systems,
58865         it is required for the definition of _SC_PAGESIZE.
58866
58867 2003-08-16  Jim Meyering  <jim@meyering.net>
58868         and Paul Eggert  <eggert@cs.ucla.edu>
58869
58870         Merges from coreutils, etc.
58871
58872         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
58873         using the latest version from cvs.  This avoids problems with #line
58874         directives using a vendor (Sun) compiler.
58875         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
58876         Don't set GETGROUPS_LIB here; now it's
58877         done via getgroups.m4's wrapper function.
58878         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
58879         rather than just in sh-util/configure.in, so that the
58880         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
58881         same.
58882         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
58883         AC_FUNC_GETLOADAVG where to find getloadavg.c.
58884         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
58885         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
58886         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
58887         Remove code that is now done by the newly-required macros.
58888         Append $(EXEEXT) to DF_PROG.
58889         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
58890         Do not invoke or require the following here,
58891         since prereq.m4 or some gnulib .m4 now does this for us:
58892         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
58893         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
58894         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
58895         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
58896         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
58897         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
58898         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
58899         AC_FUNC_OBSTACK.
58900         Do not replace the following functions, as this is now the job
58901         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
58902         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
58903         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
58904         atexit getpass, strdup, getpagesize.
58905         Replace 'raise'.
58906         Do not check for the following functions, as this is now the job
58907         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
58908         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
58909         setregid.
58910         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
58911         Check for sys/sysctl.h.
58912         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
58913         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
58914         of checking for ssize_t ourselves.
58915
58916         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
58917         Require every macro that gnulib/modules/* suggests for us.
58918         (jm_PREREQ_ADDEXT): New macro.
58919         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
58920         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
58921
58922         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
58923         (gl_PHYSMEM): Use it.
58924         Also check for `table' function.
58925         Check for new headers and functions.
58926         Add check for sys/sysmp.h.
58927         With suggestions from Kaveh Ghazi.
58928         Ignore headers that are present but cannot be compiled.  This
58929         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
58930         C 5.4.
58931
58932 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58933
58934         Document merge from coreutils.
58935         * modules/userspec: Depend on posixver.
58936         * modules/strftime: Depend on tzset.
58937
58938 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58939
58940         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
58941         rather than tab, after '#' in shell-script copyright notices.
58942         Suggested by Bruno Haible.
58943
58944 2003-08-15  Paul Eggert  <eggert@twinsun.com>
58945
58946         * config/srclist-update: Use three spaces, rather than tab, after '#'
58947         in shell-script copyright notices.  Suggested by Bruno Haible.
58948         Remove unnecessary parenthesization in regular expression.
58949
58950 2003-08-15  Jim Meyering  <jim@meyering.net>
58951
58952         Merge from coreutils.
58953         * lib/xgethostname.c: Include <stdlib.h>.
58954         (xghostname): Don't exit for anything other than memory-related
58955         failure; just return NULL.
58956         * lib/userspec.c: Include "posixver.h".
58957         (parse_user_spec): Accept `.' as a separator only
58958         in pre-POSIX-200112 mode.
58959         * lib/strtoimax.c: Use #elif rather than #else #if.
58960         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
58961         Remove function, now that we can rely on a working tzset function.
58962         [!_LIBC]: Ensure that the required autoconf test has been run.
58963         [!defined _NL_CURRENT && HAVE_STRFTIME]:
58964         Use underlying_strftime for %r.
58965         * lib/sha.c: Merge in some clean-up and optimization changes from
58966         glibc.
58967         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
58968         Ensure that it is a multiple of 64.
58969         Rearrange loop exit tests so as to avoid performing an
58970         additional fread after encountering an error or EOF.
58971         * lib/realloc.c: Update copyright date.
58972
58973 2003-08-15  Jim Meyering  <jim@meyering.net>
58974         and Paul Eggert  <eggert@twinsun.com>
58975
58976         Merge from coreutils.
58977         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
58978         member but strut utmpx does not.  Needed for AIX 4.3.3.
58979         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
58980
58981 2003-08-15  Jim Meyering  <jim@meyering.net>
58982         and Paul Eggert  <eggert@cs.ucla.edu>
58983
58984         Merges from coreutils, etc.
58985         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
58986         Require gl_FUNC_TZSET_CLOBBER.
58987         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
58988         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
58989         members.
58990
58991 2003-08-14  Paul Eggert  <eggert@twinsun.com>
58992
58993         Help the merge from coreutils.
58994         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
58995         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
58996         * m4/tzset.m4: Use it too.
58997
58998 2003-08-14  Paul Eggert  <eggert@twinsun.com>
58999
59000         * modules/tzset: New file.
59001
59002 2003-08-14  Jim Meyering  <jim@meyering.net>
59003
59004         Merges from coreutils.
59005         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
59006         variable names, rather than @FNMATCH_H@.
59007         * modules/alloca: Likewise for $(ALLOCA_H).
59008
59009         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
59010         the three copies of the literal target, `fnmatch.h'.
59011         * modules/alloca (alloca.h): Likewise.
59012
59013 2003-08-14  Jim Meyering  <jim@meyering.net>
59014
59015         Merge from coreutils.
59016         * m4/tzset.m4: New file.
59017         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
59018         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
59019         otherwise, AIX 5.1 systems would end up using the latter.
59020         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
59021         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
59022         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
59023         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
59024
59025 2003-08-14  Jim Meyering  <jim@meyering.net>
59026
59027         Merge from coreutils.
59028         * lib/obstack.h: Whitespace changes.
59029         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
59030         and xcalloc return values.
59031         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
59032         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
59033         hang on OSF/1 5.1 for DIR on both local and remote file systems.
59034         Reported by (and fix confirmed by) Nelson H. F. Beebe.
59035         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
59036         error from mntctl.
59037         Use mntctl's return value to drive the entry-processing loop, since
59038         we can't rely on the value of the vmt_length member in the last
59039         entry.  On some systems doing so could result in exhausting
59040         virtual memory.  Based in part on a patch from Mike Jetzer.
59041
59042 2003-08-14  Jim Meyering  <jim@meyering.net>
59043         and Paul Eggert  <eggert@twinsun.com>
59044
59045         Merges from coreutils, plus other fixes.
59046         * lib/physmem.c: Merge in portability changes from gcc/libiberty
59047         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
59048         for credits and details.  Thanks to Kaveh Ghazi for helping
59049         to keep these files in sync.
59050         (ARRAY_SIZE): Define it.
59051         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
59052         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
59053         (memcasecmp): Don't assume size_t fits in unsigned int.
59054         Remove casts and duplicate code.
59055         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
59056         (memcpy): Remove definition.
59057         Merge in some clean-up and optimization changes from glibc.
59058         [BLOCKSIZE]: Move definition to top of file.
59059         Ensure that it is a multiple of 64.
59060         Rearrange loop exit tests so as to avoid performing an
59061         additional fread after encountering an error or EOF.
59062         * lib/md5.h (md5_uintptr): Define.
59063         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
59064         return to the initial working directory.  Preserve errno
59065         for caller.
59066         * lib/idcache.c: Include "xalloc.h".
59067         (xmalloc, xrealloc): Remove decls.
59068         (getuser): Remove casts no longer required in C89.
59069         * lib/human.c: Include stdio.h, for sprintf.
59070         * lib/group-member.c: Include "xalloc.h".
59071         (xmalloc, xrealloc): Remove decls.
59072         (get_group_info): Remove casts no longer required in C89.
59073         * lib/getusershell.c (readname): Remove casts no longer required in
59074         C89.
59075         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
59076         * lib/getline.c: Whitespace fix, from coreutils.
59077
59078 2003-08-13  Paul Eggert  <eggert@twinsun.com>
59079
59080         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
59081         Check for isascii.
59082
59083         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
59084         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
59085         Undo previous (whitespace-only) change.
59086
59087 2003-08-13  Paul Eggert  <eggert@twinsun.com>
59088
59089         * lib/exclude.c: Include <ctype.h>
59090         (IN_CTYPE_DOMAIN): New macro.
59091         (is_space): New fn.
59092         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
59093         and empty lines.
59094
59095         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
59096         Undo previous (whitespace-only) change.
59097
59098 2003-08-13  Paul Eggert  <eggert@twinsun.com>
59099
59100         * config/srclist-update: Change update back to the old behavior,
59101         leaving whitespace alone.  Use one 'sed' command rather than a
59102         pipeline.
59103         (fixlicense): Now a variable, not a function.
59104         (remove_trailing_blanks): Remove.
59105         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
59106         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
59107         Undo previous (whitespace-only) change.
59108
59109 2003-08-12  Paul Eggert  <eggert@twinsun.com>
59110
59111         Merge from coreutils.
59112         * modules/euidaccess: Add lib_SOURCES, include for new
59113         file euidaccess.h
59114
59115 2003-08-12  Paul Eggert  <eggert@twinsun.com>
59116
59117         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
59118         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
59119         Normalize leading white space and remove trailing white space.
59120
59121         Merge from coreutils
59122         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
59123
59124         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
59125         0.12.1.  These files are now being upgraded automatically by
59126         ../config/srclist-update.
59127
59128 2003-08-12  Paul Eggert  <eggert@twinsun.com>
59129
59130         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
59131         Normalize leading white space and remove trailing white space.
59132         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
59133         notice, as per ../config/srclist-update.
59134
59135         Merge from coreutils.
59136         * lib/euidaccess.h: New file.
59137         * lib/euidaccess.c: Include it.
59138         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
59139         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
59140         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
59141
59142 2003-08-12  Paul Eggert  <eggert@twinsun.com>
59143
59144         * config/srclist-update: Add copyright notice.
59145         (remove_id_lines, remove_trailing_blanks): New constants.
59146         (fixfile): Use them to normalize spacing a bit in copied files.
59147         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
59148         Normalize leading white space and remove trailing white space.
59149
59150         * config/texinfo.tex: Sync with texinfo.
59151
59152         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
59153         strtoul.c from libc, to merge coreutils whitespace changes.
59154
59155         * config/srclist.txt: Get the following m4 files from gettext:
59156         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
59157         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
59158         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
59159         wint_t.m4.
59160
59161 2003-08-12  Karl Berry  <karl@gnu.org>
59162
59163         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
59164         been made.
59165
59166 2003-08-11  Paul Eggert  <eggert@twinsun.com>
59167
59168         * modules/gnu-source, m4/gnu-source.m4:
59169         Remove; we're assuming Autoconf 2.54 or later now.
59170         Suggested by Bruno Haible.
59171         * MODULES.html.sh (func_all_modules): Remove gnu-source.
59172
59173 2003-08-11  Bruno Haible  <bruno@clisp.org>
59174
59175         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
59176
59177 2003-08-11  Bruno Haible  <bruno@clisp.org>
59178
59179         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
59180         (vasnprintf): Use it instead of wcslen.
59181
59182 2003-08-11  Bruno Haible  <bruno@clisp.org>
59183
59184         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
59185         value to ensure that _Bool promotes to int. Use #define for _Bool when
59186         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
59187
59188 2003-08-10  Karl Berry  <karl@gnu.org>
59189
59190         * lib/regex.h: update from libc (whitespace fix).
59191
59192 2003-08-09  Paul Eggert  <eggert@twinsun.com>
59193
59194         Merge some files from coreutils.  These changes were
59195         originally made by Jim Meyering.
59196         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
59197         many older Unixes require this.
59198         * lib/alloca.c (alloca): Remove cast to argument of free;
59199         no longer needed in C89.
59200         * lib/alloca_.h, regex.h: Fix white space to match
59201         what GNU indent does.
59202
59203 2003-08-09  Paul Eggert  <eggert@twinsun.com>
59204
59205         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
59206         apparently Emacs's Unicode mode got confused before my 2003-08-05
59207         checkin.
59208
59209 2003-08-08  Paul Eggert  <eggert@twinsun.com>
59210
59211         * m4/extensions.m4: New file.
59212         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
59213         Require gl_USE_SYSTEM_EXTENSIONS.
59214         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
59215         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
59216
59217 2003-08-08  Paul Eggert  <eggert@twinsun.com>
59218
59219         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
59220         * modules/extensions, modules/gnu-source: New files.
59221         * modules/timespec, modules/unlocked-io: Depend on extensions.
59222
59223 2003-08-07  Paul Eggert  <eggert@twinsun.com>
59224
59225         * modules/restrict: New file.
59226         * MODULES.html.sh (func_all_modules): Add restrict.
59227         * modules/regex: Depend on restrict.
59228
59229 2003-08-07  Paul Eggert  <eggert@twinsun.com>
59230
59231         * m4/restrict.m4: New file.
59232         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
59233
59234 2003-08-07  Bruno Haible  <bruno@clisp.org>
59235
59236         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
59237         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
59238
59239 2003-08-07  Bruno Haible  <bruno@clisp.org>
59240
59241         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
59242         makes the module 'getndelim2' compatible with the module 'getline'.
59243
59244 2003-08-05  Paul Eggert  <eggert@twinsun.com>
59245
59246         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
59247         byte with "\201" to avoid glitches when editing that source file
59248         with multi-gnome-terminal.
59249
59250 2003-08-05  Paul Eggert  <eggert@twinsun.com>
59251
59252         * lib/bumpalloc.h: Remove.
59253
59254 2003-08-05  Paul Eggert  <eggert@twinsun.com>
59255
59256         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
59257         * modules/bumpalloc: Remove.
59258
59259 2003-08-04  Paul Eggert  <eggert@twinsun.com>
59260
59261         * lib/getloadavg.c: Change copyright notice and spacing to conform to
59262         GNU coding style.
59263
59264         Merge from coreutils.
59265         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
59266         1. From glibc.
59267         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
59268         from Karl Berry, implemented by Jim Meyering.
59269         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
59270         from Dmitry V. Levin.
59271         Remove anachronistic cast of xrealloc.
59272         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
59273         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
59274         type. Otherwise, it wouldn't compile with at least /bin/cc on
59275         ymp-cray-unicos9.0.2.X.
59276         Combine two mostly-identical uses of alloca into one.
59277         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
59278
59279 2003-08-04  Dave Love  <d.love@dl.ac.uk>
59280
59281         [From Emacs.]
59282
59283         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
59284         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
59285         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
59286         obsolete NLIST_NAME_UNION.
59287         [__GNU__]: Undef BSD and FSCALE.
59288         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
59289
59290 2003-08-03  Paul Eggert  <eggert@twinsun.com>
59291
59292         * lib/stdbool_.h (_Bool): Make it signed char, instead of
59293         an enum type, so that it's guaranteed to promote to int.  See:
59294         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
59295
59296 2003-08-03  Karl Berry  <karl@gnu.org>
59297
59298         * config/depcomp: update from automake.
59299
59300 2003-07-31  Paul Eggert  <eggert@twinsun.com>
59301
59302         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
59303         (strerror): Don't assume that a printable int fits in 14 bytes.
59304
59305 2003-07-31  Bruno Haible  <bruno@clisp.org>
59306
59307         * modules/getpass-gnu: New file.
59308         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
59309
59310 2003-07-31  Bruno Haible  <bruno@clisp.org>
59311
59312         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
59313
59314 2003-07-24  Karl Berry  <karl@gnu.org>
59315
59316         * config/missing: update from automake.
59317
59318 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
59319             Bruno Haible  <bruno@clisp.org>
59320
59321         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
59322         * lib/getline.c (getline, getdelim): Likewise.
59323         Remove _GNU_SOURCE define; now it's defined in config.h through
59324         m4/getline.m4.
59325
59326 2003-07-23  Karl Berry  <karl@gnu.org>
59327
59328         * config/config.sub: update from prep.
59329
59330 2003-07-22  Paul Eggert  <eggert@twinsun.com>
59331
59332         * modules/xalloc (Depends-on): Add exitfail.
59333         * modules/xmemcoll: Likewise.
59334
59335 2003-07-22  Paul Eggert  <eggert@twinsun.com>
59336
59337         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
59338         over-parenthesization in macros.
59339
59340         Sync with coreutils.
59341
59342         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
59343         required by C99.
59344
59345         Use `exit_failure' for xalloc and xmemcoll instead of their own
59346         private exit-failure variables.
59347         * lib/xalloc.h (xalloc_exit_failure): Remove.
59348         * lib/xmalloc.c: Likewise.  Include exitfail.h.
59349         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
59350         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
59351         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
59352         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
59353
59354 2003-07-20  Jim Meyering  <jim@meyering.net>
59355
59356         * modules/closeout (Depends-on): Add exitfail.
59357         Suggestion from Bruno Haible.
59358
59359 2003-07-19  Karl Berry  <karl@gnu.org>
59360
59361         * config/config.sub: update from prep.
59362
59363 2003-07-18  Paul Eggert  <eggert@twinsun.com>
59364
59365         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
59366         Remove.
59367         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
59368         to test that it can stand by itself.  Include "exitfail.h".
59369         Clients should set exit_failure instead.
59370         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
59371
59372 2003-07-18  Bruno Haible  <bruno@clisp.org>
59373
59374         * modules/getndelim2: New file.
59375         * modules/getline: Share files with module getndelim2.
59376         * modules/getnline: Depend on getndelim2 instead of sharing files with
59377         it. Add getnline.c to lib_SOURCES.
59378         * MODULES.html.sh (func_all_modules): Add getndelim2.
59379
59380 2003-07-18  Bruno Haible  <bruno@clisp.org>
59381
59382         * m4/getndelim2.m4: New file.
59383         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
59384         invoke gl_PREREQ_GETNDELIM2.
59385         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
59386         gl_PREREQ_GETNDELIM2.
59387         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
59388         gl_GETNDELIM2.
59389
59390 2003-07-18  Bruno Haible  <bruno@clisp.org>
59391
59392         * lib/getndelim2.h: New file.
59393         * lib/getndelim2.c: Make into a module of its own. Include config.h,
59394         getndelim2.h.
59395         (getndelim2): Make non-static. Change return type to ssize_t.
59396         * lib/getline.h: Change argument names.
59397         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
59398         * lib/getnline.c: Include getndelim2.h.
59399
59400 2003-07-18  Andreas Schwab  <schwab@suse.de>
59401
59402         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
59403
59404 2003-07-17  Karl Berry  <karl@gnu.org>
59405
59406         * config/config.sub: update from prep.
59407
59408 2003-07-17  Bruno Haible  <bruno@clisp.org>
59409
59410         * modules/getnline: New file.
59411         * modules/getline: Add lib/getndelim2.c to source file list.
59412         * MODULES.html.sh (func_all_modules): Add getnline.
59413
59414 2003-07-17  Bruno Haible  <bruno@clisp.org>
59415
59416         * m4/getnline.m4: New file.
59417
59418 2003-07-17  Bruno Haible  <bruno@clisp.org>
59419
59420         * m4/Makefile.am.in: Remove file.
59421         * m4/Makefile.am: Remove file.
59422         * m4/Makefile.in: Remove file.
59423
59424 2003-07-17  Bruno Haible  <bruno@clisp.org>
59425
59426         * lib/getnline.h: New file.
59427         * lib/getnline.c: New file.
59428         * lib/getndelim2.c: New file, extracted from getline.c.
59429         (getndelim2): Renamed from getdelim2, with added nmax argument.
59430         * lib/getline.c: Include getndelim2.c.
59431         (getdelim2): Moved out to getndelim2.c.
59432         (getline, getdelim): Update.
59433
59434 2003-07-17  Bruno Haible  <bruno@clisp.org>
59435
59436         * lib/Makefile.am: Remove file.
59437         * lib/Makefile.in: Remove file.
59438
59439 2003-07-17  Bruno Haible  <bruno@clisp.org>
59440
59441         * configure.in: Remove file.
59442         * Makefile.in: Remove file.
59443
59444 2003-07-17  Bruno Haible  <bruno@clisp.org>
59445
59446         * MODULES.html.sh: Put the </BODY> right before </HTML>.
59447
59448 2003-07-16  Karl Berry  <karl@gnu.org>
59449
59450         * config/srclist-update: was running fixlicense twice, which caused
59451                 texinfo.tex to be nullified for some reason.  Simplify,
59452                 $gplsrc is no longer needed as far as I can see?
59453
59454 2003-07-16  Jim Meyering  <jim@meyering.net>
59455
59456         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
59457
59458 2003-07-15  Paul Eggert  <eggert@twinsun.com>
59459
59460         * config/srclist.txt: Get the following files from gettext-runtime/intl
59461         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
59462         ref-del.sin.  From Bruno Haible.
59463         * config/srclist-update (fixfile): Change grep pattern again, since the
59464         previous fix didn't work (there was another trailing $).  Use
59465         '[$]' to escape the $s.
59466
59467 2003-07-15  Karl Berry  <karl@gnu.org>
59468
59469         * lib/vasnprintf.c: update from gettext.
59470
59471 2003-07-15  Karl Berry  <karl@gnu.org>
59472
59473         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
59474         gets expanded when surrounded by '$'.
59475
59476 2003-07-15  Jim Meyering  <jim@meyering.net>
59477
59478         * modules/save-cwd: Don't depend on error.  From Derek Price.
59479
59480 2003-07-15  Jim Meyering  <jim@meyering.net>
59481
59482         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
59483
59484 2003-07-14  Simon Josefsson  <jas@extundo.com>
59485
59486         * modules/mempcpy: New file.
59487         * MODULES.html.sh (func_all_modules): Add mempcpy.
59488
59489 2003-07-14  Simon Josefsson  <jas@extundo.com>
59490
59491         * m4/mempcpy.m4: New file.
59492
59493 2003-07-14  Simon Josefsson  <jas@extundo.com>
59494
59495         * lib/mempcpy.h: New file.
59496         * lib/mempcpy.c: New file.
59497
59498 2003-07-14  Paul Eggert  <eggert@twinsun.com>
59499
59500         * modules/getdate, modules/posixtm: Depend on mktime.
59501
59502 2003-07-14  Paul Eggert  <eggert@twinsun.com>
59503
59504         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
59505         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
59506         unicodeio.c, unicodeio.h, unlocked-io.h:
59507         Switch from LGPL to GPL.
59508
59509 2003-07-14  Paul Eggert  <eggert@twinsun.com>
59510
59511         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
59512         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
59513         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
59514         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
59515         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
59516         updated automatically by ../config/srclist-update.  This changes
59517         their license from LPGL to GPL.
59518
59519 2003-07-14  Paul Eggert  <eggert@twinsun.com>
59520
59521         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
59522         assumed to refer to the root of the most recent stable gettext version.
59523         * config/srclistvars.sh: Add defaults for eggert.
59524         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
59525         Match "This program" as well as "The program".  This is needed
59526         for gettext.
59527
59528 2003-07-14  Jim Meyering  <jim@meyering.net>
59529
59530         Don't emit diagnostics.  Let callers do that.
59531         * lib/save-cwd.c: Don't include "error.h".
59532         (save_cwd): Don't call error.  Ensure that errno is valid
59533         when returning nonzero.
59534
59535         * lib/save-cwd.h (restore_cwd): Update prototype.
59536         * lib/save-cwd.c (restore_cwd): Remove two parameters.
59537         Simplify.  Don't call error upon failure.  Let callers do that.
59538         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
59539         when auditing is enabled.  But don't bother updating the #if.
59540
59541 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
59542
59543         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
59544         it breaks C++ compilation.
59545         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
59546
59547 2003-07-10  Simon Josefsson  <jas@extundo.com>
59548
59549         * modules/strchrnul (Makefile.am): Add strchrnul.h.
59550
59551 2003-07-10  Jim Meyering  <jim@meyering.net>
59552
59553         * m4/clock_time.m4: Remove trailing blank.
59554         * m4/intmax_t.m4: Likewise.
59555
59556 2003-07-10  Jim Meyering  <jim@meyering.net>
59557
59558         * lib/vasnprintf.c: Remove trailing blanks.
59559         Make cpp indentation consistent.
59560
59561 2003-07-09  Paul Eggert  <eggert@twinsun.com>
59562
59563         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
59564         posixver.c, strftime.c, strnlen.c, strverscmp.c:
59565         Switch from LGPL to GPL.
59566
59567 2003-07-09  Paul Eggert  <eggert@twinsun.com>
59568
59569         * config/srclist.txt: Sort sublists.  Add
59570         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
59571         that differ from gnulib for one reason or another; we'd like this list
59572         to be smaller but for now let's document what we have.
59573
59574 2003-07-08  Paul Eggert  <eggert@twinsun.com>
59575
59576         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
59577         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
59578         and sweeter "eval x=$x".
59579         * config/srclist.txt: Get lib/argp* from glibc.
59580
59581 2003-07-07  Paul Eggert  <eggert@twinsun.com>
59582
59583         * lib/mktime.c: Fix some boundary cases and remove need for floating
59584         point.
59585
59586         Issue a compile-time diagnostic if time_t is floating point, or if
59587         two's complement arithmetic is not in effect, or if arithmetic
59588         right shift does not propagate the sign.  These assumptions were
59589         all in the original code but they weren't checked.
59590
59591         (TIME_T_MIDPOINT, verify): New macros.
59592         (__isleap): Remove; it has integer overflow problems.
59593         (leapyear): New function, without those problems.
59594         (ydhms_tm_diff): Remove; splitting into two parts.
59595         (ydhms_diff): New function, containing the arithmetic part of
59596         the old ydhms_tm_diff function.  Issue a compile-time
59597         diagnostic if we are not using C99 integer division.
59598         Avoid casts when possible.
59599         (guess_time_tm): New function, containing the checking part of
59600         the old ydhms_tm_diff function.  Return the new value, rather than
59601         the difference between it and the old.  Accept a new argument T
59602         so that *T specifies the old value.  Check for overflow in the result.
59603
59604         (__mktime_internal): Use a time_t offset, not a long int offset.
59605         This undoes the 2003-06-04 change, which is no longer needed now
59606         that we have better overflow checking.
59607         (localtime_offset): Likewise.
59608
59609         (__mktime_internal): Avoid harmful overflow on hosts where time_t
59610         and long are 64-bit but int is only 32-bit.
59611         (ydhms_diff): Use long int to store year1 and yday1.
59612         Issue a compile-time diagnostic if long int is not wide enough.
59613
59614         (__mktime_internal): Use long int to store adjusted year and yday.
59615         Use plain C rather than preprocessor commands, if that doesn't
59616         affect efficiency.
59617         Check for overflow (and try to repair) after each probe
59618         rather than checking only at the very end.  This avoids some bugs
59619         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
59620         does not equal GMT offset at maximum time).
59621         Use integer to check for overflow rather than floating point; this
59622         is more portable to non-IEEE hosts, and is a tad faster.
59623         When we detect that we are oscillating between two values,
59624         don't check whether tm_isdst has the requested value, since
59625         we already know the answer.  When tm_isdst has the wrong value,
59626         use a different heuristic to find the right one, based on the
59627         extreme values actually observed in practice in tz2003a,
59628         rather than the (overly optimistic) "previous 3 calendar quarters".
59629
59630         (not_equal_tm, print_tm, check_result): Use "const T" rather than
59631         "T const" to accommodate glibc style.
59632         (check_result): Use less-confusing report format.  "long" -> "long int.
59633         (main): Likewise.
59634         Don't loop if the iteration overflows time_t.
59635         Allow a negative step in the iteration.
59636
59637 2003-07-06  Karl Berry  <karl@gnu.org>
59638
59639         * config/depcomp: update from automake.
59640         * config/config.sub: update from prep.
59641
59642 2003-07-03  Karl Berry  <karl@gnu.org>
59643
59644         * config/config.guess: update from prep.
59645
59646 2003-07-01  Paul Eggert  <eggert@twinsun.com>
59647
59648         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
59649         xreadlink.c now includes it unconditionally.
59650
59651 2003-07-01  Paul Eggert  <eggert@twinsun.com>
59652
59653         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
59654         having it depend on HAVE_SYS_TYPES_H.
59655
59656 2003-07-01  Bruno Haible  <bruno@clisp.org>
59657
59658         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
59659         <sys/types.h> should be sufficient.
59660         Reported by Paul Eggert.
59661
59662 2003-06-26  Karl Berry  <karl@gnu.org>
59663
59664         * config/depcomp: update from automake.
59665
59666 2003-06-26  Bruno Haible  <bruno@clisp.org>
59667
59668         * modules/human: Depend on module stdbool.
59669
59670 2003-06-25  Bruno Haible  <bruno@clisp.org>
59671
59672         * modules/readlink: New file.
59673         * modules/xreadlink: Depend on it.
59674         * MODULES.html.sh (func_all_modules): Add readlink.
59675
59676 2003-06-25  Bruno Haible  <bruno@clisp.org>
59677
59678         * m4/readlink.m4: New file.
59679
59680 2003-06-25  Bruno Haible  <bruno@clisp.org>
59681
59682         * lib/readlink.c: New file.
59683
59684 2003-06-22  Karl Berry  <karl@gnu.org>
59685
59686         * config/srclist.txt: update mkinstalldirs from automake.
59687         * config/mkinstalldirs: update.
59688
59689 2003-06-22  Bruno Haible  <bruno@clisp.org>
59690
59691         Portability to mingw32.
59692         * m4/ssize_t.m4: New file, from GNU gettext.
59693         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
59694         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
59695
59696 2003-06-22  Bruno Haible  <bruno@clisp.org>
59697
59698         * modules/safe-read: Add m4/ssize_t.m4.
59699         * modules/xreadlink: Add m4/ssize_t.m4.
59700
59701 2003-06-20  Bruno Haible  <bruno@clisp.org>
59702
59703         Assume C89, so PARAMS isn't needed.
59704         * lib/unicodeio.h (PARAMS): Remove.
59705         * lib/unicodeio.c: Don't use PARAMS.
59706
59707 2003-06-18  Karl Berry  <karl@gnu.org>
59708
59709         * config/config.{guess,sub}: update from prep.
59710
59711 2003-06-18  Jim Meyering  <jim@meyering.net>
59712
59713         Merge changes from coreutils.
59714         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
59715         Remove explicit declarations of xmalloc and realloc.
59716         Include xalloc.h.
59717         (read_utmp): Remove anachronistic cast of xmalloc.
59718
59719 2003-06-17  Paul Eggert  <eggert@twinsun.com>
59720
59721         Assume C89, so PARAMS isn't needed.
59722         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
59723         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
59724         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
59725         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
59726         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
59727         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
59728         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
59729         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
59730         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
59731         lib/xstrtod.h, lib/xstrtol.h: Likewise.
59732         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
59733         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
59734         no longer needed. Anyway, config.h should always be included before any
59735         other file.
59736
59737 2003-06-11  Simon Josefsson  <jas@extundo.com>
59738
59739         * modules/sysexits: New file.
59740         * MODULES.html.sh (func_all_modules): Add sysexits.
59741
59742 2003-06-11  Simon Josefsson  <jas@extundo.com>
59743
59744         * lib/sysexit_.h: New file.
59745
59746 2003-06-11  Derek Price  <derek@ximbiot.com>
59747
59748         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
59749         necessary.
59750
59751 2003-06-11  Bruno Haible  <bruno@clisp.org>
59752
59753         * m4/sysexits.m4: New file.
59754
59755 2003-06-10  Simon Josefsson  <jas@extundo.com>
59756
59757         * lib/argp.h: New file, from glibc.
59758         * lib/argp-ba.c: New file, from glibc.
59759         * lib/argp-eexst.c: New file, from glibc.
59760         * lib/argp-fmtstream.c: New file, from glibc.
59761         * lib/argp-fmtstream.h: New file, from glibc.
59762         * lib/argp-fs-xinl.c: New file, from glibc.
59763         * lib/argp-help.c: New file, from glibc.
59764         * lib/argp-namefrob.h: New file, from glibc.
59765         * lib/argp-parse.c: New file, from glibc.
59766         * lib/argp-pv.c: New file, from glibc.
59767         * lib/argp-pvh.c: New file, from glibc.
59768         * lib/argp-xinl.c: New file, from glibc.
59769
59770 2003-06-10  Simon Josefsson  <jas@extundo.com>
59771
59772         * modules/strchrnul: New file.
59773
59774 2003-06-10  Simon Josefsson  <jas@extundo.com>
59775
59776         * modules/argp: New file.
59777
59778 2003-06-10  Simon Josefsson  <jas@extundo.com>
59779
59780         * m4/strchrnul.m4: New file.
59781
59782 2003-06-10  Simon Josefsson  <jas@extundo.com>
59783
59784         * lib/strchrnul.h: New file.
59785         * lib/strchrnul.c: New file.
59786
59787 2003-06-10  Bruno Haible  <bruno@clisp.org>
59788
59789         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
59790
59791 2003-06-07  Karl Berry  <karl@gnu.org>
59792
59793         * config/config.{guess,sub}: update from prep.
59794
59795 2003-06-07  Jim Meyering  <jim@meyering.net>
59796
59797         * modules/strtod: Use $(...) notation, not @...@ for
59798         AC_REPLACE'd variables.
59799         * modules/localcharset: Likewise.
59800
59801 2003-06-07  Jim Meyering  <jim@meyering.net>
59802
59803         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
59804         in place of my name in the copyright comment.
59805         Remove definition and uses of __P.
59806
59807         From coreutils.
59808         * lib/stat.c: Don't declare xmalloc explicitly.
59809         Instead, include "xalloc.h".
59810         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
59811         xrealloc, and xcalloc return values.
59812         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
59813         Improve comment.
59814         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
59815
59816 2003-06-07  Bruno Haible  <bruno@clisp.org>
59817
59818         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
59819         avoid AC_CONFIG_LINKS.
59820         * modules/fnmatch (Makefile.am): Use explicit creation rule for
59821         fnmatch.h, to avoid AC_CONFIG_LINKS.
59822         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
59823
59824 2003-06-07  Bruno Haible  <bruno@clisp.org>
59825
59826         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
59827         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
59828         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
59829         directory.
59830         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
59831         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
59832         directory.
59833
59834 2003-06-06  Jim Meyering  <jim@meyering.net>
59835
59836         Merge from coreutils.
59837         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
59838         Consolidate declarations and initializations of *_base* locals.
59839
59840         Merge from coreutils.
59841         This avoids a core dump on systems without GNU putenv,
59842         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
59843         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
59844         (unsetenv): New static function, from GNU libc.
59845         (rpl_putenv): Use it.
59846
59847         * lib/modechange.c: Remove trailing blanks.
59848
59849         Merge from coreutils.
59850         * lib/fsusage.c: Remove declaration of statfs.
59851         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
59852
59853         * lib/posixtm.c: Include <stdbool.h> unconditionally.
59854
59855 2003-06-06  Jim Meyering  <jim@meyering.net>
59856
59857         * lib/stdbool_.h: Renamed from stdbool.h.in.
59858
59859 2003-06-06  Jim Meyering  <jim@meyering.net>
59860             Bruno Haible  <bruno@clisp.org>
59861
59862         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
59863         Adjust Makefile.am snippet not to redirect directly to target.
59864         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
59865
59866 2003-06-05  Paul Eggert  <eggert@twinsun.com>
59867
59868         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
59869         mismatch, look in future quarters as well as past.  This fixes a
59870         bug when processing fall-backwards gaps immediately after a long
59871         period of daylight-saving time.
59872
59873         * lib/mktime.c: Assume freestanding C89 or better.
59874         (HAVE_LIMITS_H): Remove.  Assume it's 1.
59875         (__P): Remove; not used.
59876         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
59877         (mktime, not_equal_tm, print_tm, check_result,
59878         main): Use prototypes.  Use const * where appropriate.
59879         (main): Fix typo in testing code that uncovered by above changes.
59880         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
59881
59882 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59883
59884         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
59885         locale.h, localeconv.  This merges changes from coreutils.
59886
59887         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
59888         It can be removed after the next Autoconf is released.
59889         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
59890         needed.
59891
59892 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59893
59894         * lib/mktime.c: Fix Debian bug 177940
59895         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
59896         (localtime_offset): Now long int, not time_t, because we want it
59897         to be guaranteed to be signed.  All uses changed.
59898         (__mktime_internal): If overflow would occur when adding offset,
59899         don't add it.
59900
59901         Merge 'human' changes from coreutils.  Rewrite to support
59902         locale-specific notations like thousands separators.
59903         * lib/human.c: Simplify authorship notice.
59904         Include human.h immediately after config.h.
59905         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
59906         <limits.h>: Do not include, since human.h does.
59907         (SIZE_MAX, UINTMAX_MAX): New macros.
59908         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
59909         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
59910         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
59911         (power_letter): Renamed from suffixes.
59912         (generate_suffix_backwards): Remove.
59913         (adjust_value): Now takes int style (because of human.h changes)
59914         and long double value (for greater precision on some platforms).
59915         (group_number): New function.
59916         (human_readable): Use it.  Use integer options, not enum.
59917         Put the options before the sizes in the arg list.
59918         Support all the new options.
59919         The old human_readable function has been removed;
59920         use inttostr.h instead.
59921         (human_readable, default_block_size, humblock):
59922         Use uintmax_t, not int, for block sizes.
59923         (human_readable_inexact, block_size_types): Remove.
59924         (block_size_opts): New constant.
59925         (human_options): Renamed from human_block_size, with new signature
59926         that allows block sizes up to UINTMAX_MAX.  All callers changed.
59927         * lib/human.h: Add copyright and authorship notice.
59928         Include <limits.h> and <stdbool.h> unconditionally.
59929         (PARAMS): Remove.  All uses removed.
59930         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
59931         (enum human_inexact_style): Remove tag; now a nameless enum.
59932         (human_floor, human_ceiling, human_round_to_even): Now have
59933         values 2, 0, 1 rather than -1, 1, 0.
59934         (human_group_digits, human_suppress_point_zero, human_autoscale,
59935         human_base_1024, human_SI, human_B): New constants.
59936         (human_readable_inexact, human_block_size): Remove.
59937         (human_readable): Size args are now uintmax_t, not int.
59938         (human_options): New decl.
59939
59940         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
59941         unnecessary now that we assume C89 or better.  This change
59942         imported from coreutils.
59943
59944         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
59945         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
59946         in the 2003-05-30 sync from glibc.
59947
59948         .h files should stand alone, but we shouldn't include <sys/types.h>
59949         if we can get away with just <stddef.h>.
59950
59951         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
59952         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
59953         rather than <sys/types.h>, as we merely need size_t.
59954         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
59955         to get size_t.
59956         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
59957         Include <stdio.h>, to get FILE.
59958         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
59959         memcasecmp.h has included <stddef.h> and all we need is size_t.
59960         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
59961         our interface, instead of including <sys/types.h>
59962
59963 2003-06-04  Paul Eggert  <eggert@twinsun.com>
59964
59965         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
59966         now, as glibc mktime is buggy on non-glibc systems.
59967
59968 2003-06-03  Karl Berry  <karl@gnu.org>
59969
59970         * config/config.sub: update from prep.
59971
59972 2003-06-02  Paul Eggert  <eggert@twinsun.com>
59973
59974         [from coreutils]
59975         Fix some minor time-related bugs with POSIX time arguments.
59976         Some valid time stamps were being rejected (notably -1, and
59977         time stamps before 1900 on 64-bit hosts).  And some invalid
59978         time stamps were being accepted, e.g. September 31.
59979
59980         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
59981         that we can return (time_t) -1 successfully.
59982         * lib/posixtm.c: Likewise.
59983         [HAVE_STDBOOL_H]: Include <stdbool.h>.
59984         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
59985         (t): Remove static var.
59986         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
59987         of static var.  All uses changed.
59988         (year): Do not reject years before 1900; they can occur with
59989         64-bit time_t.
59990         (posix_time_parse): Do not check for out-of-range components;
59991         that is now the caller's responsibility, since our checks were
59992         only approximations.
59993         (posixtime): Use mktime to check for out-of-range components,
59994         since it knows them exactly.
59995         If mktime returns (time_t) -1, check whether an error actually occurred
59996         by invoking localtime on -1.
59997         (main) [TEST_POSIXTIME]: Check for input data errors, and report
59998         posixtime failures better.
59999         Improve the test data (in comments only).
60000
60001 2003-06-02  Karl Berry  <karl@gnu.org>
60002
60003         * config/mkinstalldirs (version): new variable.
60004         (--version): new option.
60005         (usage): improve message.
60006
60007 2003-05-30  Karl Berry  <karl@gnu.org>
60008
60009         * lib/mktime.c: update from libc.
60010
60011 2003-05-30  Bruno Haible  <bruno@clisp.org>
60012
60013         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
60014         * config/config.rpath: Upgrade to gettext-0.12.1.
60015
60016 2003-05-30  Bruno Haible  <bruno@clisp.org>
60017
60018         * m4/gettext.m4: Upgrade to gettext-0.12.1.
60019         * m4/nls.m4: New file, from gettext-0.12.1.
60020         * m4/po.m4: New file, from gettext-0.12.1.
60021         * m4/progtest.m4: Upgrade to gettext-0.12.1.
60022
60023 2003-05-30  Bruno Haible  <bruno@clisp.org>
60024
60025         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
60026         * lib/localcharset.h: Likewise.
60027         * lib/localcharset.c: Likewise.
60028
60029 2003-05-29  Karl Berry  <karl@gnu.org>
60030
60031         * config/config.rpath: update from gettext.
60032
60033 2003-05-28  Paul Eggert  <eggert@twinsun.com>
60034
60035         Assume the headers required for C89 freestanding compilers.
60036         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
60037         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
60038         * m4/human.m4 (gl_HUMAN): Likewise.
60039         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
60040         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
60041         * m4/userspec.m4 (gl_USERSPEC): Likewise.
60042         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
60043         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
60044         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
60045
60046 2003-05-28  Paul Eggert  <eggert@twinsun.com>
60047
60048         Assume the headers required for C89 freestanding compilers.
60049         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
60050         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
60051         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
60052         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
60053         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
60054         define, since <limits.h> is guaranteed to do that.
60055         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
60056         * lib/exclude.c: Include <stdbool.h> unconditionally.
60057         * lib/tempname.c: Include <stddef.h> unconditionally.
60058         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
60059         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
60060         <stddef.h> does that.
60061         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
60062         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
60063         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
60064         needed.
60065         * lib/xstrtol.c: Likewise.
60066         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
60067         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
60068
60069         * lib/addext.c (addext): Use assignment rather than cast, to avoid
60070         warnings on some platforms.
60071
60072         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
60073         arbitrarily.
60074
60075 2003-05-26  Jim Meyering  <jim@meyering.net>
60076
60077         Merge in a change from coreutils:
60078         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
60079         that is guaranteed to be `no'.  Use `no_such_member' to indicate
60080         that condition, rather than `-1' which is slightly misleading.
60081         Change the name of the cache variable to have the gl_ prefix.
60082         Prompted by a patch from Richard Dawe for DJGPP.
60083
60084 2003-05-24  Karl Berry  <karl@gnu.org>
60085
60086         * config/config.guess: update from prep.
60087
60088 2003-05-22  Karl Berry  <karl@gnu.org>
60089
60090         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
60091
60092 2003-05-20  Karl Berry  <karl@gnu.org>
60093
60094         * config/config.guess: update from prep.
60095
60096 2003-05-18  Karl Berry  <karl@gnu.org>
60097
60098         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
60099         might actually be set by the user.
60100
60101         * config/depcomp, install-sh, mdate-sh: update from automake.
60102
60103 2003-05-17  Bruno Haible  <bruno@clisp.org>
60104
60105         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
60106         invalid expansion for AC_EGREP_CPP.
60107         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
60108         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
60109         Suggested by Akim Demaille <akim@epita.fr> in
60110         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
60111
60112 2003-05-12  Jim Meyering  <jim@meyering.net>
60113
60114         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
60115         the space-padded-by-default conversion specifiers, %e, %k, %l.
60116
60117 2003-05-12  Bruno Haible  <bruno@clisp.org>
60118
60119         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
60120         the string is longer than 4 KB.
60121
60122 2003-05-11  Karl Berry  <karl@gnu.org>
60123
60124         * config/config.{guess,sub}: update from prep.
60125
60126 2003-05-09  Bruno Haible  <bruno@clisp.org>
60127
60128         * modules/error: Add m4/strerror_r.m4 to file list.
60129
60130 2003-05-03  Bruno Haible  <bruno@clisp.org>
60131
60132         Upgrade to Unicode-4.0.
60133         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
60134         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
60135         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
60136         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
60137         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
60138         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
60139         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
60140         Change width of U+E0100..U+E01EF from 1 to 0.
60141
60142 2003-04-25  Jim Meyering  <jim@meyering.net>
60143
60144         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
60145         of type size_t, not int.
60146
60147 2003-04-25  Bruno Haible  <bruno@clisp.org>
60148
60149         * lib/copy-file.c: Include <stddef.h>, for size_t.
60150
60151 2003-04-21  Paul Eggert  <eggert@twinsun.com>
60152
60153         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
60154         code which expansion is under static control.  Patch imported from
60155         Akim Demaille's patch to Bison; see
60156         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
60157
60158 2003-04-14  Bruno Haible  <bruno@clisp.org>
60159
60160         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
60161
60162 2003-04-11  Jim Meyering  <jim@meyering.net>
60163
60164         Merge changes from Coreutils.
60165
60166         2003-03-22  Jim Meyering  <jim@meyering.net>
60167
60168         * lib/strftime.c (widen): Cast alloca return value to proper type.
60169
60170         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
60171
60172         From GNU libc.
60173         * lib/strftime.c (my_strftime): Handle very large width
60174         specifications for numeric values correctly.  Improve checks for
60175         overflow.
60176
60177         2003-01-19  Jim Meyering  <jim@meyering.net>
60178
60179         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
60180         definitions.
60181         (nl_get_alt_digit) [! defined my_strftime]: Define.
60182         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
60183         _nl_get_alt_digit and _nl_get_walt_digit.
60184
60185         * lib/strftime.c (my_strftime): Merge in locale-related changes from
60186         libc. These changes have no effect outside of _LIBC.
60187
60188 2003-04-10  Bruno Haible  <bruno@clisp.org>
60189
60190         * modules/findprog: New file.
60191         * MODULES.html.sh (func_all_modules): Add it.
60192
60193 2003-04-10  Bruno Haible  <bruno@clisp.org>
60194
60195         * m4/findprog.m4: New file.
60196         * m4/eaccess.m4: New file.
60197
60198 2003-04-10  Bruno Haible  <bruno@clisp.org>
60199
60200         * lib/findprog.h: New file, from GNU gettext.
60201         * lib/findprog.c: New file, from GNU gettext.
60202
60203 2003-04-05  Jim Meyering  <jim@meyering.net>
60204
60205         Merge changes from Coreutils.
60206
60207         * lib/exclude.h (PARAMS): Remove definition and uses.
60208         * lib/exclude.c: Remove uses of `PARAMS'.
60209
60210         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
60211         Add test-cases for DOS filenames. Declare program_name.
60212         (main): Set up program_name.  Patch by Rich Dawe.
60213
60214         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
60215         error from mntctl.
60216         Use mntctl's return value to drive the entry-processing loop, since
60217         we can't rely on the value of the vmt_length member in the last
60218         entry.  On some systems doing so could result in exhausting
60219         virtual memory.  Based in part on a patch from Mike Jetzer.
60220
60221 2003-04-04  Bruno Haible  <bruno@clisp.org>
60222
60223         * modules/linebreak: New file.
60224         * MODULES.html.sh (func_all_modules): Add it.
60225
60226 2003-04-04  Bruno Haible  <bruno@clisp.org>
60227
60228         * m4/linebreak.m4: New file.
60229
60230 2003-04-04  Bruno Haible  <bruno@clisp.org>
60231
60232         * lib/linebreak.h: New file, from GNU gettext.
60233         * lib/linebreak.c: New file, from GNU gettext with slight
60234         modifications.
60235         * lib/lbrkprop.h: New file, from GNU gettext.
60236
60237 2003-04-03  Bruno Haible  <bruno@clisp.org>
60238
60239         * modules/utf8-ucs4: New file.
60240         * modules/utf16-ucs4: New file.
60241         * modules/ucs4-utf8: New file.
60242         * modules/ucs4-utf16: New file.
60243         * MODULES.html.sh (func_all_modules): Add them.
60244
60245 2003-04-03  Bruno Haible  <bruno@clisp.org>
60246
60247         * m4/utf-ucs4.m4: New file.
60248         * m4/ucs4-utf.m4: New file.
60249
60250 2003-04-03  Bruno Haible  <bruno@clisp.org>
60251
60252         * lib/utf8-ucs4.h: New file, from GNU gettext.
60253         * lib/utf16-ucs4.h: New file, from GNU gettext.
60254         * lib/ucs4-utf8.h: New file, from GNU gettext.
60255         * lib/ucs4-utf16.h: New file, from GNU gettext.
60256
60257 2003-04-02  Bruno Haible  <bruno@clisp.org>
60258
60259         * modules/binary-io: New file.
60260         * MODULES.html.sh (func_all_modules): Add it.
60261
60262 2003-04-02  Bruno Haible  <bruno@clisp.org>
60263
60264         * lib/binary-io.h: New file, from GNU gettext.
60265
60266 2003-04-01  Bruno Haible  <bruno@clisp.org>
60267
60268         * modules/pathname: New file.
60269         * MODULES.html.sh (func_all_modules): Add it.
60270
60271 2003-04-01  Bruno Haible  <bruno@clisp.org>
60272
60273         * lib/pathname.h: New file, from GNU gettext.
60274         * lib/concatpath.c: New file, from GNU gettext.
60275
60276 2003-03-30  Bruno Haible  <bruno@clisp.org>
60277
60278         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
60279
60280 2003-03-30  Bruno Haible  <bruno@clisp.org>
60281
60282         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
60283         function chown() doesn't exist.
60284
60285 2003-03-28  Bruno Haible  <bruno@clisp.org>
60286
60287         * modules/copy-file: New file.
60288         * MODULES.html.sh (func_all_modules): Add it.
60289
60290 2003-03-28  Bruno Haible  <bruno@clisp.org>
60291
60292         * m4/copy-file.m4: New file.
60293
60294 2003-03-28  Bruno Haible  <bruno@clisp.org>
60295
60296         * lib/copy-file.h: New file, from GNU gettext.
60297         * lib/copy-file.c: New file, from GNU gettext.
60298
60299 2003-03-18  Jim Meyering  <jim@meyering.net>
60300
60301         * lib/quote.c (quote_n): Fix typo in comment.
60302
60303 2003-03-18  Bruno Haible  <bruno@clisp.org>
60304
60305         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
60306         checking.
60307         * m4/onceonly_2_57.m4: Likewise.
60308
60309 2003-03-17  Bruno Haible  <bruno@clisp.org>
60310
60311         * m4/onceonly.m4: Require autoconf 2.54 or newer.
60312         (m4_quote): Remove macro.
60313         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
60314
60315 2003-03-14  Jim Meyering  <jim@meyering.net>
60316
60317         Merge changes from Coreutils.
60318         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
60319         to be const, in order to avoid warnings.
60320         (obstack_room): Likewise.
60321         (obstack_empty_p): Likewise.
60322
60323 2003-03-14  Bruno Haible  <bruno@clisp.org>
60324
60325         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
60326         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
60327
60328 2003-03-13  Paul Eggert  <eggert@twinsun.com>
60329
60330         Merge changes from Bison.
60331         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
60332         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
60333         when compiling Bison 1.875's `bitset bset = obstack_alloc
60334         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
60335         * lib/hash.c: Include <stdbool.h> unconditionally.
60336
60337 2003-03-13  Paul Eggert  <eggert@twinsun.com>
60338
60339         * m4/onceonly.m4 (m4_quote): New macro.
60340         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
60341         Quote AC_FOREACH variable-expansions properly.
60342
60343 2003-03-13  Paul Eggert  <eggert@twinsun.com>
60344
60345         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
60346
60347 2003-03-09  Paul Eggert  <eggert@twinsun.com>
60348
60349         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
60350         Reported by Bruce Becker; see:
60351         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
60352
60353 2003-03-03  Paul Eggert  <eggert@twinsun.com>
60354             Bruno Haible  <bruno@clisp.org>
60355
60356         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
60357         Reported by John Hughes, see
60358         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
60359
60360 2003-02-20  Bruno Haible  <bruno@clisp.org>
60361
60362         * MODULES.html.sh (func_all_modules): Add poll.
60363
60364 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
60365
60366         * modules/poll: New file.
60367
60368 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
60369
60370         * lib/poll_.h: New file.
60371         * lib/poll.c: New file.
60372
60373 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
60374
60375         * m4/poll.m4: New file.
60376
60377 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
60378
60379         * modules/mathl: New file.
60380
60381 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
60382
60383         * lib/mathl.h: New file.
60384         * lib/acosl.c: New file.
60385         * lib/asinl.c: New file.
60386         * lib/atanl.c: New file.
60387         * lib/ceill.c: New file.
60388         * lib/cosl.c: New file.
60389         * lib/expl.c: New file.
60390         * lib/floorl.c: New file.
60391         * lib/frexpl.c: New file.
60392         * lib/ldexpl.c: New file.
60393         * lib/logl.c: New file.
60394         * lib/sincosl.c: New file.
60395         * lib/sinl.c: New file.
60396         * lib/sqrtl.c: New file.
60397         * lib/tanl.c: New file.
60398         * lib/trigl.c: New file.
60399         * lib/trigl.h: New file.
60400
60401 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
60402
60403         * m4/mathl.m4: New file.
60404
60405 2003-02-18  Bruno Haible  <bruno@clisp.org>
60406
60407         * MODULES.html.sh (func_all_modules): Add mathl.
60408
60409 2003-02-17  Bruno Haible  <bruno@clisp.org>
60410
60411         * modules/mkdtemp: New module.
60412         * MODULES.html.sh (func_all_modules): Add it.
60413
60414 2003-02-17  Bruno Haible  <bruno@clisp.org>
60415
60416         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
60417
60418 2003-02-17  Bruno Haible  <bruno@clisp.org>
60419
60420         * lib/mkdtemp.h: New file, from GNU gettext.
60421         * lib/mkdtemp.c: New file, from GNU gettext.
60422
60423 2003-02-02  Jim Meyering  <jim@meyering.net>
60424
60425         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
60426         e.g. glibc-2.2.93.
60427
60428 2003-01-31  Bruno Haible  <bruno@clisp.org>
60429
60430         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
60431         'rpl_rename'.
60432         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
60433         'rpl_strnlen'.
60434         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
60435         'rpl_strtod'.
60436         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
60437         'rpl_utime'.
60438
60439 2003-01-31  Bruno Haible  <bruno@clisp.org>
60440
60441         * lib/rename.c: #undef rename before defining rpl_rename.
60442         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
60443
60444 2003-01-30  Bruno Haible  <bruno@clisp.org>
60445
60446         * modules/vasnprintf, modules/vasprintf: New modules.
60447         * MODULES.html.sh (func_all_modules): Add them.
60448
60449 2003-01-30  Bruno Haible  <bruno@clisp.org>
60450
60451         * m4/signed.m4: New file, from GNU gettext.
60452         * m4/longdouble.m4: New file, from GNU gettext.
60453         * m4/wchar_t.m4: New file, from GNU gettext.
60454         * m4/wint_t.m4: New file, from GNU gettext.
60455         * m4/vasnprintf.m4: New file.
60456         * m4/vasprintf.m4: New file.
60457
60458 2003-01-30  Bruno Haible  <bruno@clisp.org>
60459
60460         * lib/printf-args.h: New file, from GNU gettext.
60461         * lib/printf-args.c: New file, from GNU gettext.
60462         * lib/printf-parse.h: New file, from GNU gettext.
60463         * lib/printf-parse.c: New file, from GNU gettext.
60464         * lib/vasnprintf.h: New file, from GNU gettext.
60465         * lib/vasnprintf.c: New file, from GNU gettext.
60466         * lib/asnprintf.c: New file, from GNU gettext.
60467         * lib/vasprintf.h: New file, from GNU gettext with modifications.
60468         * lib/vasprintf.c: New file, from GNU gettext.
60469         * lib/asprintf.c: New file, from GNU gettext.
60470
60471 2003-01-29  Bruno Haible  <bruno@clisp.org>
60472
60473         * modules/stpncpy: New module.
60474         * MODULES.html.sh (func_all_modules): Add it.
60475
60476 2003-01-29  Bruno Haible  <bruno@clisp.org>
60477
60478         * m4/stpncpy.m4: New file.
60479
60480 2003-01-29  Bruno Haible  <bruno@clisp.org>
60481
60482         * lib/stpncpy.h: New file, from GNU gettext with modifications.
60483         * lib/stpncpy.c: New file, from GNU gettext with modifications.
60484
60485 2003-01-28  Bruno Haible  <bruno@clisp.org>
60486
60487         * modules/c-ctype: New module.
60488         * MODULES.html.sh (func_all_modules): Add it.
60489
60490 2003-01-28  Bruno Haible  <bruno@clisp.org>
60491
60492         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
60493         Paul Eggert.
60494         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
60495         Paul Eggert.
60496
60497 2003-01-27  Bruno Haible  <bruno@clisp.org>
60498
60499         * modules/xsetenv: New module.
60500         * MODULES.html.sh (func_all_modules): Add it.
60501
60502 2003-01-27  Bruno Haible  <bruno@clisp.org>
60503
60504         * lib/xsetenv.h: New file, from GNU gettext.
60505         * lib/xsetenv.c: New file, from GNU gettext.
60506
60507 2003-01-23  Jim Meyering  <jim@meyering.net>
60508
60509         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
60510         from working on systems without dirfd (at least Irix and OSF1/Tru64).
60511
60512 2003-01-23  Bruno Haible  <bruno@clisp.org>
60513
60514         * modules/minmax: New module.
60515         * MODULES.html.sh (func_all_modules): Add it.
60516
60517 2003-01-23  Bruno Haible  <bruno@clisp.org>
60518
60519         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
60520         Eggert.
60521
60522 2003-01-22  Bruno Haible  <bruno@clisp.org>
60523
60524         * modules/exit: New module.
60525         * MODULES.html.sh (func_all_modules): Add it.
60526
60527 2003-01-22  Bruno Haible  <bruno@clisp.org>
60528
60529         * lib/exit.h: New file, from GNU gettext.
60530
60531 2003-01-19  Bruno Haible  <bruno@clisp.org>
60532
60533         * gnulib-tool: Recognize option --extract-maintainer.
60534         (func_get_maintainer): New function.
60535         * modules/*: Add Maintainer entry.
60536
60537 2003-01-16  Jim Meyering  <jim@meyering.net>
60538
60539         * m4/regex.m4: The `regex' struct is both input and output.
60540         Initialize it before each use.  Patch by Tim Waugh.
60541
60542 2003-01-16  Bruno Haible  <bruno@clisp.org>
60543
60544         * MODULES.html.sh: Add a table of contents. Add the module name as
60545         leftmost column. Add hyperlinks.
60546
60547 2003-01-15  Bruno Haible  <bruno@clisp.org>
60548
60549         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
60550
60551 2003-01-15  Bruno Haible  <bruno@clisp.org>
60552
60553         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
60554         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
60555         suffix.
60556
60557 2003-01-15  Bruno Haible  <bruno@clisp.org>
60558
60559         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
60560
60561 2003-01-15  Bruno Haible  <bruno@clisp.org>
60562
60563         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
60564         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
60565
60566 2003-01-14  Jim Meyering  <jim@meyering.net>
60567
60568         * lib/same.c (same_name): Tweak a comment.
60569
60570 2003-01-14  Bruno Haible  <bruno@clisp.org>
60571
60572         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
60573         when a string comparison is sufficient.
60574
60575 2003-01-14  Bruno Haible  <bruno@clisp.org>
60576
60577         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
60578         'unsigned int'.
60579
60580 2003-01-14  Bruno Haible  <bruno@clisp.org>
60581
60582         * lib/hash-pjw.c: Add comment about low quality of this function.
60583
60584 2003-01-13  Bruno Haible  <bruno@clisp.org>
60585
60586         * modules/stpcpy: Distribute lib/stpcpy.h.
60587         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
60588
60589 2003-01-13  Bruno Haible  <bruno@clisp.org>
60590
60591         * modules/*: Add a description.
60592         * modules/strpbrk: Fix Makefile.am snippet.
60593         * modules/strtoimax: Fix dependencies.
60594         * modules/strtoumax: Likewise.
60595
60596 2003-01-13  Bruno Haible  <bruno@clisp.org>
60597
60598         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
60599         * modules/alloca (Makefile.am): All object files depend on alloca.h.
60600         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
60601
60602 2003-01-13  Bruno Haible  <bruno@clisp.org>
60603
60604         * gnulib-tool (func_create_testdir): Store config/* files in the main
60605         directory.
60606         * config.rpath: Move to ...
60607         * config/config.rpath: ... here.
60608         * modules/gettext: Contains config/config.rpath, not config.rpath.
60609         * modules/iconv: Likewise.
60610
60611 2003-01-12  Paul Eggert  <eggert@twinsun.com>
60612
60613         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
60614         to avoid collisions with libcurses and libreadline.
60615
60616         * m4/getstr.m4: Remove.
60617         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
60618
60619 2003-01-12  Paul Eggert  <eggert@twinsun.com>
60620
60621         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
60622         to avoid collisions with libcurses and libreadline.
60623
60624         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
60625         * lib/getstr.h, getstr.c: Remove.
60626         * lib/getline.c: Include "getline.h", to check interface.
60627         Move body of old getstr.c here: this defines MIN_CHUNK and
60628         declares getdelim2, which is renamed from getstr.
60629         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
60630
60631         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
60632         All uses changed.
60633         * lib/linebuffer.h: Likewise.
60634         (readline): Remove backward-compatibility macro.
60635
60636 2003-01-12  Paul Eggert  <eggert@twinsun.com>
60637
60638         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
60639         to avoid collisions with libcurses and libreadline.
60640         * getstr: Remove.
60641         * MODULES.html.sh: Remove getstr.
60642         * modules/getline: Depend on unlocked-io, not getstr.
60643
60644 2003-01-12  Jim Meyering  <jim@meyering.net>
60645
60646         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
60647
60648 2003-01-10  Bruno Haible  <bruno@clisp.org>
60649
60650         * modules/alloca: Change Makefile.am requirements. Simplify Include
60651         requirements. Add lib/alloca_.h to file list.
60652
60653 2003-01-10  Bruno Haible  <bruno@clisp.org>
60654
60655         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
60656
60657 2003-01-10  Bruno Haible  <bruno@clisp.org>
60658
60659         * lib/alloca_.h: New file.
60660         * lib/getdate.y: Unconditionally include alloca.h.
60661         * lib/makepath.c: Likewise.
60662         * lib/setenv.c: Likewise.
60663         * lib/userspec.c: Likewise.
60664
60665 2003-01-09  Karl Berry  <karl@gnu.org>
60666
60667         * MODULES.html.sh: include `dirname $0` in PATH, to find
60668         gnulib-tool.
60669
60670 2003-01-09  Bruno Haible  <bruno@clisp.org>
60671
60672         * modules/stdbool: Change configure.ac, Makefile.am requirements.
60673         Simplify Include requirements. Add lib/stdbool.h.in to file list.
60674
60675 2003-01-09  Bruno Haible  <bruno@clisp.org>
60676
60677         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
60678
60679 2003-01-09  Bruno Haible  <bruno@clisp.org>
60680
60681         * lib/stdbool.h.in: New file.
60682
60683 2003-01-09  Bruno Haible  <bruno@clisp.org>
60684
60685         * gnulib-tool (func_all_modules): Ignore files ending in ~.
60686         * MODULES.html.sh: Likewise.
60687
60688 2003-01-08  Jim Meyering  <jim@meyering.net>
60689
60690         * lib/full-write.c: Undefine and define-away `const' after inclusion
60691         of errno.h, not before.  Suggestion from Bruno Haible.
60692
60693 2003-01-08  Bruno Haible  <bruno@clisp.org>
60694
60695         * modules/full-read: Depend on full-write.
60696
60697 2003-01-08  Bruno Haible  <bruno@clisp.org>
60698
60699         * lib/safe-read.c: Include specification header first, to ensure its
60700         selfcontainedness.
60701         * lib/full-write.c: Likewise.
60702
60703 2003-01-07  Jim Meyering  <jim@meyering.net>
60704
60705         * lib/full-write.c: Rework so that it may serve to define full_read,
60706         too.
60707         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
60708
60709 2003-01-07  Bruno Haible  <bruno@clisp.org>
60710
60711         * lib/strtoimax.c: Include <stdint.h> as an alternative to
60712         <inttypes.h>.
60713         * lib/xstrtol.h: Likewise.
60714         * lib/xstrtoimax.c: Likewise.
60715         * lib/xstrtoumax.c: Likewise.
60716         * lib/human.h: Likewise.
60717
60718         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
60719         on systems that have <inttypes.h> but not <stdint.h>.
60720
60721 2003-01-07  Bruno Haible  <bruno@clisp.org>
60722
60723         * MODULES.html.sh: Add copyright notice.
60724         (missed_files): Omit CVS directory entries.
60725         (func_module): Make it work with sed-3.02.
60726         * MODULES.txt: Remove file.
60727
60728 2003-01-06  Jim Meyering  <jim@meyering.net>
60729
60730         * lib/version-etc.c: Update year in translatable copyright string.
60731
60732 2003-01-03  Karl Berry  <karl@gnu.org>
60733
60734         * config/config.{guess,sub}: update from prep.
60735
60736 2003-01-02  Karl Berry  <karl@gnu.org>
60737
60738         * doc/COPYING.DOC: belatedly updated to 1.2.
60739
60740 2003-01-01  Karl Berry  <karl@gnu.org>
60741
60742         * gnulib-tool (func_verify_module): report module name $module in
60743         error message, not $1.
60744         * gnulib-tool (create-testdir): don't complain if destdir couldn't
60745         be created, only if it doesn't exist.
60746         * gnulib-tool (last_checkin_date): don't expand the $Date here.
60747
60748 2002-12-31  Paul Eggert  <eggert@twinsun.com>
60749
60750         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
60751
60752 2002-12-31  Paul Eggert  <eggert@twinsun.com>
60753
60754         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
60755         memcmp if strcoll doesn't work.
60756
60757 2002-12-31  Bruno Haible  <bruno@clisp.org>
60758
60759         * lib/utime.c (utime_null): No need to call ftruncate if the file was
60760         nonempty.
60761
60762 2002-12-31  Bruno Haible  <bruno@clisp.org>
60763
60764         * lib/memcoll.c (STRCOLL): New macro.
60765         (memcoll): Use it.
60766
60767 2002-12-31  Bruno Haible  <bruno@clisp.org>
60768
60769         * lib/localcharset.h: New file.
60770         * lib/localcharset.c: Include it.
60771         * lib/unicodeio.c: Likewise.
60772
60773 2002-12-31  Bruno Haible  <bruno@clisp.org>
60774
60775         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
60776         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
60777
60778 2002-12-31  Bruno Haible  <bruno@clisp.org>
60779
60780         * lib/getline.h: Include <stddef.h>, for size_t.
60781
60782         * lib/unicodeio.h: Include <stddef.h>, for size_t.
60783         * lib/unicodeio.c: Don't include <stddef.h>.
60784
60785 2002-12-31  Bruno Haible  <bruno@clisp.org>
60786
60787         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
60788         HAVE_TM_ZONE.
60789
60790 2002-12-24  Karl Berry  <karl@gnu.org>
60791
60792         * config/config.guess: update from prep.
60793
60794 2002-12-24  Bruno Haible  <bruno@clisp.org>
60795
60796         General infrasructure.
60797         * m4/README: Rewritten.
60798         * m4/onceonly.m4: New file.
60799         * m4/onceonly_2_57.m4: New file.
60800
60801         Module atexit.
60802         * m4/atexit.m4: New file.
60803
60804         Module strtod.
60805         * m4/strtod.m4: New file.
60806
60807         Module strtol.
60808         * m4/strtol.m4: New file.
60809
60810         Module strtoul.
60811         * m4/strtoul.m4: New file.
60812
60813         Module memchr.
60814         * m4/memchr.m4: New file.
60815
60816         Module memcmp.
60817         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
60818         (jm_FUNC_MEMCMP): Invoke it.
60819
60820         Module memcpy.
60821         * m4/memcpy.m4: New file.
60822
60823         Module memmove.
60824         * m4/memmove.m4: New file.
60825
60826         Module memset.
60827         * m4/memset.m4: New file.
60828
60829         Module strcspn.
60830         * m4/strcspn.m4: New file.
60831
60832         Module strpbrk.
60833         * m4/strpbrk.m4: New file.
60834
60835         Module strstr.
60836         * m4/strstr.m4: New file.
60837
60838         Module strerror.
60839         * m4/strerror.m4: New file.
60840
60841         Module mktime.
60842         * m4/mktime.m4: Renamed from jm-mktime.m4.
60843         (gl_PREREQ_MKTIME): New macro.
60844         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
60845
60846         Module malloc.
60847         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
60848         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
60849         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
60850
60851         Module realloc.
60852         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
60853         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
60854         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
60855
60856         Module strftime.
60857         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
60858         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
60859         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
60860         gl_TM_GMTOFF.
60861         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
60862
60863         Module xalloc.
60864         * m4/xalloc.m4: New file.
60865
60866         Module alloca.
60867         * m4/alloca.m4: New file.
60868
60869         Module putenv.
60870         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
60871         (jm_FUNC_PUTENV): Invoke it.
60872
60873         Module setenv.
60874         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
60875         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
60876         when invoked twice.
60877         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
60878         gt_FUNC_SETENV.
60879
60880         Module memrchr.
60881         * m4/memrchr.m4: New file.
60882
60883         Module stpcpy.
60884         * m4/stpcpy.m4: New file.
60885
60886         Module strcase.
60887         * m4/strcase.m4: New file.
60888
60889         Module strdup.
60890         * m4/strdup.m4: New file.
60891
60892         Module strnlen.
60893         * m4/strnlen.m4: New file.
60894
60895         Module strndup.
60896         * m4/strndup.m4: New file.
60897
60898         Module xstrtod.
60899         * m4/xstrtod.m4: New file.
60900
60901         Module xstrtol.
60902         * m4/xstrtol.m4: New file.
60903
60904         Module getdate.
60905         * m4/getdate.m4: New file.
60906
60907         Module unlocked-io.
60908         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
60909         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
60910         * m4/jm-glibc-io.m4n: Remove file.
60911
60912         Module long-options.
60913         * m4/long-options.m4: New file.
60914
60915         Module md5.
60916         * m4/md5.m4: New file.
60917
60918         Module sha.
60919         * m4/sha.m4: New file.
60920
60921         Module getstr.
60922         * m4/getstr.m4: New file.
60923
60924         Module getline.
60925         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
60926         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
60927         <sys/types.h>, for size_t. Use the function name gnu_getline, not
60928         simply getline. Infoke gl_PREREQ_GETLINE.
60929
60930         Module obstack.
60931         * m4/obstack.m4: New file.
60932
60933         Module hash.
60934         * m4/hash.m4: New file.
60935
60936         Module readtokens.
60937         * m4/readtokens.m4: New file.
60938
60939         Module strverscmp.
60940         * m4/strverscmp.m4: New file.
60941
60942         Module stdbool.
60943         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
60944         OSF/1.
60945
60946         Module strtoll.
60947         * m4/strtoll.m4: New file.
60948
60949         Module strtoull.
60950         * m4/strtoull.m4: New file.
60951
60952         Module strtoimax.
60953         * m4/strtoimax.m4: New file.
60954
60955         Module strtoumax.
60956         * m4/strtoumax.m4: New file.
60957
60958         Module xstrtoimax.
60959         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
60960         jm_AC_PREREQ_XSTRTOIMAX.
60961         Moved the strtol prerequisites to strtol.m4.
60962         Moved the strtoll prerequisites to strtoll.m4.
60963         Moved the strtoimax prerequisites to strtoimax.m4.
60964
60965         Module xstrtoumax.
60966         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
60967         jm_AC_PREREQ_XSTRTOUMAX.
60968         Moved the strtoul prerequisites to strtoul.m4.
60969         Moved the strtoull prerequisites to strtoull.m4.
60970         Moved the strtoumax prerequisites to strtoumax.m4.
60971
60972         Module chown.
60973         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
60974         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
60975
60976         Module dup2.
60977         * m4/dup2.m4: New file.
60978
60979         Module ftruncate.
60980         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
60981         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
60982
60983         Module getgroups.
60984         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
60985         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
60986
60987         Module gettimeofday.
60988         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
60989         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
60990         gl_PREREQ_GETTIMEOFDAY.
60991
60992         Module mkdir.
60993         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
60994         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
60995
60996         Module mkstemp.
60997         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
60998         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
60999         jm_AC_TYPE_UINTMAX_T.
61000         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
61001
61002         Module stat.
61003         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
61004         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
61005
61006         Module lstat.
61007         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
61008         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
61009
61010         Module timespec.
61011         * m4/timespec.m4 (gl_TIMESPEC): New macro.
61012         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
61013         * m4/st_mtim.m4: Indentation.
61014
61015         Module nanosleep.
61016         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
61017         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
61018         gl_PREREQ_NANOSLEEP.
61019
61020         Module regex.
61021         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
61022         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
61023         (gl_REGEX): New macro.
61024
61025         Module rename.
61026         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
61027         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
61028
61029         Module rmdir.
61030         * m4/rmdir.m4: New file.
61031
61032         Module utime.
61033         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
61034         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
61035         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
61036
61037         Module dirname.
61038         * m4/dirname.m4: New file.
61039
61040         Module getopt.
61041         * m4/getopt.m4: New file.
61042
61043         Module unistd-safer.
61044         * m4/unistd-safer.m4: New file.
61045
61046         Module fnmatch.
61047         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
61048         declaration.
61049         (gl_PREREQ_FNMATCH_EXTRA): New macro.
61050         (gl_FUNC_FNMATCH_POSIX): New macro.
61051         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
61052         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
61053         simply fnmatch.
61054
61055         Module exclude.
61056         * m4/exclude.m4: New file.
61057
61058         Module human.
61059         * m4/human.m4: New file.
61060
61061         Module acl.
61062         * m4/acl.m4: Nop.
61063
61064         Module backupfile.
61065         * m4/backupfile.m4: New file.
61066         * m4/d-ino.m4: Indentation.
61067
61068         Module fsusage.
61069         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
61070         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
61071         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
61072
61073         Module dirfd.
61074         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
61075         requirements.
61076
61077         Module euidaccess.
61078         * m4/euidaccess.m4: New file.
61079
61080         Module file-type.
61081         * m4/file-type.m4: New file.
61082
61083         Module fileblocks.
61084         * m4/fileblocks.m4: New file.
61085
61086         Module filemode.
61087         * m4/filemode.m4: New file.
61088
61089         Module isdir.
61090         * m4/isdir.m4: New file.
61091
61092         Module lchown.
61093         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
61094         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
61095
61096         Module makepath.
61097         * m4/makepath.m4: New file.
61098
61099         Module modechange.
61100         * m4/modechange.m4: New file.
61101
61102         Module mountlist.
61103         * m4/mountlist.m4: New file.
61104         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
61105         Indentation.
61106
61107         Module path-concat.
61108         * m4/path-concat.m4: New file.
61109
61110         Module pathmax.
61111         * m4/pathmax.m4: New file.
61112
61113         Module same.
61114         * m4/same.m4: New file.
61115
61116         Module save-cwd.
61117         * m4/save-cwd.m4: New file.
61118
61119         Module savedir.
61120         * m4/savedir.m4: New file.
61121
61122         Module xgetcwd.
61123         * m4/xgetcwd.m4: New file.
61124         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
61125
61126         Module xreadlink.
61127         * m4/xreadlink.m4: New file.
61128
61129         Module safe-read.
61130         * m4/safe-read.m4: New file.
61131
61132         Module safe-write.
61133         * m4/safe-write.m4: New file.
61134
61135         Module closeout.
61136         * m4/closeout.m4: New file.
61137
61138         Module stdio-safer.
61139         * m4/stdio-safer.m4: New file.
61140
61141         Module getpass.
61142         * m4/getpass.m4: New file.
61143
61144         Module getugroups.
61145         * m4/getugroups.m4: New file.
61146
61147         Module group-member.
61148         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
61149         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
61150
61151         Module idcache.
61152         * m4/idcache.m4: New file.
61153
61154         Module userspec.
61155         * m4/userspec.m4: New file.
61156
61157         Module gettime.
61158         * m4/clock_time.m4: New file.
61159         * m4/gettime.m4: New file.
61160
61161         Module settime.
61162         * m4/settime.m4: New file.
61163
61164         Module posixtm.
61165         * m4/posixtm.m4: New file.
61166
61167         Module gethostname.
61168         * m4/gethostname.m4: New file.
61169
61170         Module canon-host.
61171         * m4/canon-host.m4: New file.
61172
61173         Module gettext.
61174         * m4/codeset.m4: New file, from gettext-0.11.5.
61175         * m4/gettext.m4: New file, from gettext-0.11.5.
61176         * m4/glibc21.m4: New file, from gettext-0.11.5.
61177         * m4/iconv.m4: New file, from gettext-0.11.5.
61178         * m4/intdiv0.m4: New file, from gettext-0.11.5.
61179         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
61180         * m4/inttypes.m4: New file, from gettext-0.11.5.
61181         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
61182         * m4/isc-posix.m4: New file, from gettext-0.11.5.
61183         * m4/lcmessage.m4: New file, from gettext-0.11.5.
61184         * m4/lib-ld.m4: New file, from gettext-0.11.5.
61185         * m4/lib-link.m4: New file, from gettext-0.11.5.
61186         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
61187         * m4/progtest.m4: New file, from gettext-0.11.5.
61188         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
61189         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
61190         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
61191
61192         Module localcharset.
61193         * m4/localcharset.m4: New file.
61194
61195         Module hard-locale.
61196         * m4/hard-locale.m4: New file.
61197
61198         Module mbswidth.
61199         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
61200         onceonly macros.
61201         * m4/mbrtowc.m4: Add comment.
61202
61203         Module memcasecmp.
61204         * m4/memcasecmp.m4: New file.
61205
61206         Module memcoll.
61207         * m4/memcoll.m4: New file.
61208
61209         Module unicodeio.
61210         * m4/unicodeio.m4: New file.
61211
61212         Module rpmatch.
61213         * m4/rpmatch.m4: New file.
61214
61215         Module yesno.
61216         * m4/yesno.m4: New file.
61217
61218         Module exitfail.
61219         * m4/exitfail.m4: New file.
61220
61221         Module c-stack.
61222         * m4/c-stack.m4 (gl_C_STACK): New macro.
61223         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
61224
61225         Module error.
61226         * m4/error.m4 (gl_ERROR): New macro.
61227         (jm_PREREQ_ERROR): Use onceonly macros.
61228
61229         Module fatal.
61230         * m4/fatal.m4: New file.
61231
61232         Module getloadavg.
61233         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
61234         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
61235
61236         Module getpagesize.
61237         * m4/getpagesize.m4: New file.
61238
61239         Module getusershell.
61240         * m4/getusershell.m4: New file.
61241
61242         Module physmem.
61243         * m4/physmem.m4: New file.
61244
61245         Module posixver.
61246         * m4/posixver.m4: New file.
61247
61248         Module quotearg.
61249         * m4/quotearg.m4: New file.
61250
61251         Module quote.
61252         * m4/quote.m4: New file.
61253
61254         Module readutmp.
61255         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
61256
61257         Module sig2str.
61258         * m4/sig2str.m4: New file.
61259
61260         Other.
61261         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
61262         ulonglong.m4.
61263         * m4/intmax_t.m4: New file.
61264         * m4/d-type.m4: Indentation.
61265         * m4/jm-macros.m4: Update.
61266         * m4/prereq.m4 (jm_PREREQ): Update.
61267         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
61268         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
61269         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
61270         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
61271         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
61272         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
61273         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
61274         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
61275         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
61276         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
61277         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
61278         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
61279         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
61280         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
61281         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
61282         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
61283         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
61284         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
61285         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
61286
61287 2002-12-24  Bruno Haible  <bruno@clisp.org>
61288
61289         * MODULES.txt: Update according to m4/ changes.
61290
61291         Module gettext.
61292         * config.rpath: New file, from gettext-0.11.5.
61293
61294         * modules/*: New module descriptions.
61295         * gnulib-tool: New file.
61296         * MODULES.html.sh: New file.
61297
61298 2002-12-21  Karl Berry  <karl@gnu.org>
61299
61300         * doc/fdl.texi: update to version 1.2.
61301
61302 2002-12-19  Karl Berry  <karl@gnu.org>
61303
61304         * config/config.guess: update from prep.
61305
61306 2002-12-18  Bruno Haible  <bruno@clisp.org>
61307
61308         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
61309         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
61310
61311 2002-12-17  Bruno Haible  <bruno@clisp.org>
61312
61313         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
61314         stdlib.h, string.h.
61315
61316 2002-12-17  Bruno Haible  <bruno@clisp.org>
61317
61318         * lib/canon-host.c (strdup): Remove unused declaration.
61319
61320         * lib/fsusage.c: Include full_read.h.
61321         (get_fs_usage): Use full_read instead of safe_read.
61322
61323         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
61324
61325 2002-12-12  Karl Berry  <karl@gnu.org>
61326
61327         * config/config.guess: update from prep.
61328
61329 2002-12-11  Bruno Haible  <bruno@clisp.org>
61330
61331         * m4/setenv.m4: New file, from gettext-0.11.5.
61332
61333 2002-12-11  Bruno Haible  <bruno@clisp.org>
61334
61335         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
61336         not unsetenv().
61337         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
61338         modifications:
61339
61340         2002-12-11  Bruno Haible  <bruno@clisp.org>
61341
61342                 * setenv.c (alloca): Fall back to malloc.
61343                 (freea): New macro.
61344                 (setenv): Use freea() to free memory allocated with alloca().
61345
61346         2002-11-13  Bruno Haible  <bruno@clisp.org>
61347
61348                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
61349                 function declarations.
61350                 * unsetenv.c (unsetenv): Likewise.
61351
61352         2002-03-04  Bruno Haible  <bruno@clisp.org>
61353
61354                 Portability to AIX 4.3.3.
61355                 * unsetenv.c: New file, extracted from setenv.c.
61356                 * setenv.c: Move the unsetenv() function to unsetenv.c.
61357
61358         2001-12-20  Bruno Haible  <bruno@clisp.org>
61359
61360                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
61361                 use malloc instead. For SunOS 4.
61362
61363         2001-12-11  Bruno Haible  <bruno@clisp.org>
61364
61365                 * setenv.c: Declare alloca.
61366                 (compar_fn_t): New typedef.
61367                 (KNOWN_VALUE, STORE_VALUE): Use it.
61368
61369         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
61370         setenv.h.
61371
61372 2002-12-10  Paul Eggert  <eggert@twinsun.com>
61373
61374         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
61375         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
61376         Choose values that are less likely to collide with system fnmatch
61377         options.
61378         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
61379         defined (e.g., a pure POSIX system).
61380         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
61381         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
61382
61383 2002-12-06  Paul Eggert  <eggert@twinsun.com>
61384
61385         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
61386         a pain in practice to deal with generated m4 files.  This change
61387         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
61388
61389         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
61390         and jm-glibc-io.m4, as they are no longer a special case.
61391         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
61392         kludge and the auto-generation stuff.  Check only whether the
61393         functions are declared, not whether they exist, since older hosts
61394         that don't declare the functions can't use the optimization anyway.
61395
61396 2002-12-06  Jim Meyering  <jim@meyering.net>
61397
61398         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
61399
61400         Merge in changes from libc's misc/error.c, in preparation
61401         for the merge of gnulib's changes back into libc.
61402
61403         * lib/error.c (_): Define only if not already defined.
61404         Move definition to follow all #include directives.
61405         Include unlocked-io.h only if !_LIBC.
61406         [_LIBC]: Include <libio/libioP.h>.
61407         [USE_IN_LIBIO]: Include <libio/iolibio.h>
61408         (fflush): Tweak definition to use INTUSE.
61409         (putc): Define.
61410
61411 2002-12-05  Paul Eggert  <eggert@twinsun.com>
61412
61413         * lib/alloca.c [defined emacs]: Include "lisp.h".
61414         (xalloc_die) [defined emacs]: New macro.
61415         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
61416         [! defined emacs]: Include <xalloc.h>.
61417         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
61418         (pointer): Typedef to POINTER_TYPE *.
61419         (malloc): Remove decl; we now always use xmalloc.
61420         (alloca): Use old-style definition, since Emacs needs this.
61421         Check for arithmetic overflow when computing combined size.
61422
61423 2002-12-04  Paul Eggert  <eggert@twinsun.com>
61424
61425         Do not generate unlocked-io.h automatically, since it's easier to
61426         maintain it by hand.
61427
61428         * lib/unlocked-io.h: New file, from GNU diffutils,
61429         but with proper copyright notice and attribution.
61430         * lib/gen-uio: Remove.
61431         * lib/Makefile.am: Add copyright notice.
61432         (libfetish_a_SOURCES): Add unlocked-io.h.
61433         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
61434         (DISTCLEANFILES, io_functions): Remove macros.
61435         (EXTRA_DIST): Remove gen_uio.
61436         (unlocked-io.h): Remove rule.
61437
61438 2002-12-04  Jim Meyering  <jim@meyering.net>
61439
61440         Reflect the fact that stat.c and lstat.c are no longer generated.
61441         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
61442         (DISTCLEANFILES): Likewise.
61443         (EXTRA_DIST): Likewise.
61444         (all_local): Don't depend on stat.c or lstat.c.
61445         (stat.c, lstat.c): Remove rules.
61446         (EXTRA_DIST): Remove xstat.in.
61447
61448         * lib/xstat.in: Remove file.  Contents moved into stat.c.
61449         * lib/stat.c: New file.  Contents mostly from xstat.in.
61450         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
61451         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
61452
61453         * lib/safe-read.c: Rework so that it may serve to define safe_write,
61454         too.
61455         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
61456
61457 2002-12-03  Jim Meyering  <jim@meyering.net>
61458
61459         * lib/safe-read.c, safe-write.c: Change variable names and comments,
61460         but not semantics, to minimize the differences between these two files.
61461         (safe_read): Change comment to mention SAFE_READ_ERROR.
61462
61463         * lib/safe-read.c (IS_EINTR): Define.
61464         (safe_read): Use IS_EINTR in place of in-function cpp directives.
61465
61466 2002-12-02  Jim Meyering  <jim@meyering.net>
61467
61468         * lib/safe-read.c (EINTR): Define.
61469         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
61470         (INT_MAX): Provide fallback.
61471         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
61472
61473         * lib/safe-read.h (SAFE_READ_ERROR): Define.
61474
61475 2002-12-02  Bruno Haible  <bruno@clisp.org>
61476
61477         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
61478         Define, taken from safe-read.c.
61479         (INT_MAX): Provide fallback.
61480         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
61481         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
61482
61483         * lib/safe-read.c (EINTR): Remove definition.
61484         (safe_read): Don't use EINTR if it is absent.
61485
61486 2002-12-01  Jim Meyering  <jim@meyering.net>
61487
61488         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
61489         zero.
61490         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
61491
61492 2002-11-27  Paul Eggert  <eggert@twinsun.com>
61493
61494         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
61495         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
61496         with `if (! (value < limit)) abort ();', for readability.
61497
61498 2002-11-26  Karl Berry  <karl@gnu.org>
61499
61500         * lib/strdup.c: copy from libc again, with jim's ok.
61501         * lib/.cppi-disable: re-add strdup.c
61502
61503 2002-11-25  Karl Berry  <karl@gnu.org>
61504
61505         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
61506         instead of "strtol.c".
61507
61508 2002-11-25  Karl Berry  <karl@gnu.org>
61509
61510         * config/install-sh: update from automake for variable quoting, $0 in
61511         error msgs, etc.
61512
61513         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
61514         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
61515         entry.
61516
61517 2002-11-25  Jim Meyering  <jim@meyering.net>
61518
61519         * lib/mktime.c: Sync from libc, now that it has the latest fix.
61520
61521 2002-11-24  Karl Berry  <karl@gnu.org>
61522
61523         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
61524         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
61525
61526 2002-11-24  Jim Meyering  <jim@meyering.net>
61527
61528         Update from coreutils:
61529
61530         * lib/mktime.c: Merge in changes from libc.
61531
61532         Avoid a link-time failure on some Linux systems.
61533         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
61534         (otherwise).
61535         (__mon_yday): Declare with the STATIC attribute.
61536         (__mktime_internal): Likewise.
61537         Based on a report from Greg Schafer.
61538
61539 2002-11-23  Jim Meyering  <jim@meyering.net>
61540
61541         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
61542         Use `unsigned', not `int', as type of index.
61543
61544         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
61545
61546         * lib/fsusage.c: Remove unneeded parentheses around operands of
61547         `defined'.
61548
61549 2002-11-22  Paul Eggert  <eggert@twinsun.com>
61550
61551         * lib/quotearg.h: Allow multiple inclusion by surrounding with
61552         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
61553         so that we can be included first.
61554         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
61555         * lib/quotearg.c: Include quotearg.h immediately after config.h.
61556         No need to include stddef.h or sys/types.h any more.
61557         Surround local include files with "", not "<>".
61558         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
61559         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
61560         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
61561         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
61562         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
61563         (ISPRINT): Remove; no longer needed now that we assume C89.
61564
61565         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
61566         Preserve errno.
61567
61568         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
61569         quotearg_char): Use SIZE_MAX rather than
61570         (size_t) -1 when we are talking about "infinity".
61571
61572         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
61573
61574 2002-11-22  Paul Eggert  <eggert@twinsun.com>
61575
61576         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
61577         hint that one should use `if (! x) abort ();' rather than `assert
61578         (x);', and anyway it's one less thing to worry about configuring.
61579         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
61580         hash_rehash, hash_insert): Use abort rather than assert.
61581
61582 2002-11-22  Bruno Haible  <bruno@clisp.org>
61583
61584         * lib/safe-read.h: Assume C89. Add comments.
61585         (safe_read): Change return type to size_t.
61586         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
61587         byte counts > SSIZE_MAX correctly.
61588         * lib/safe-write.h: New file.
61589         * lib/safe-write.c: New file.
61590         * lib/full-read.h: New file.
61591         * lib/full-read.c: New file.
61592         * lib/full-write.h: Assume C89. Add comments.
61593         * lib/full-write.c: Include safe-write.h.
61594         (full_write): Rewritten to use safe_write.
61595         Suggested by Jim Meyering and Paul Eggert.
61596
61597 2002-11-21  Jim Meyering  <jim@meyering.net>
61598
61599         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
61600
61601         Merge in changes from the coreutils.
61602
61603         2002-09-25  Paul Eggert  <eggert@twinsun.com>
61604         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
61605         <stdint.h>.
61606         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
61607         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
61608         int.  Work more efficiently if X is the same width as uintmax_t.
61609         Do not compare X to -1, to avoid bogus compiler warning.
61610         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
61611         Don't assume that f_frsize and f_bsize are the same type.
61612
61613         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
61614         warning on FreeBSD.
61615
61616         * lib/makepath.c (make_path): Restore umask *before* creating the final
61617         component.
61618         (make_path): Minor reformatting.
61619
61620         * lib/xmalloc.c: Adjust to work with new autoconf macros,
61621         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
61622         HAVE_MALLOC/HAVE_REALLOC.
61623
61624         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
61625         dummy ones.  At least on GNU/Linux systems, `auto' means something
61626         else.
61627         From Michael Stone.
61628
61629 2002-11-21  Bruno Haible  <bruno@clisp.org>
61630
61631         Remove case insensitive option matching.
61632         * lib/argmatch.h (argcasematch): Remove declaration.
61633         (ARGCASEMATCH): Remove macro.
61634         (__xargmatch_internal): Remove case_sensitive argument.
61635         (XARGMATCH): Update.
61636         (XARGCASEMATCH): Remove macro.
61637         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
61638         case_sensitive argument.
61639         (argcasematch): Remove function.
61640         (__xargmatch_internal): Remove case_sensitive argument.
61641         (main): Use XARGMATCH instead of XARGCASEMATCH.
61642
61643         * lib/xmalloc.c: Change compile-time error message. Add comment about
61644         required autoconf version.
61645
61646 2002-11-20  Paul Eggert  <eggert@twinsun.com>
61647
61648         Merge argmatch cleanups from Bison.  Assume C89.
61649
61650         * lib/argmatch.c: Include config.h here, not in argmatch.h.
61651         Include stdlib.h, for EXIT_FAILURE.
61652         Always include <string.h>, since we assume C89.
61653         (EXIT_FAILURE): Remove pre-C89 bug workaround.
61654         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
61655         Include <stddef.h> instead, since it's all we need for size_t.
61656         (PARAMS): Remove.  All uses removed.
61657         (ARRAY_CARDINALITY): Do not bother to #undef.
61658         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
61659         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
61660         Remove unnecessary parentheses.
61661         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
61662         Insert necessary parentheses.
61663         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
61664         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
61665
61666 2002-11-19  Bruno Haible  <bruno@clisp.org>
61667
61668         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
61669         * lib/mbswidth.h: Include <stddef.h>, for size_t.
61670
61671         * lib/mbswidth.h (PARAMS): Remove macro.
61672         (mbswidth, mbsnwidth): Use ANSI C function declarations.
61673         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
61674
61675         * lib/gcd.h (PARAMS): Remove macro.
61676         (gcd): Use ANSI C function declarations.
61677         * lib/gcd.c (gcd): Likewise.
61678
61679 2002-11-15  Bruno Haible  <bruno@clisp.org>
61680
61681         * lib/strcspn.c: Include <stddef.h>.
61682         (strcspn): Use ANSI C function declaration. Change return type to
61683         size_t. Use NULL.
61684         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
61685         (strpbrk): Use NULL.
61686         * lib/strpbrk.h (PARAMS): Remove macro.
61687         (strpbrk): Use ANSI C function declaration.
61688         * lib/strstr.c: Don't include <sys/types.h>.
61689         * lib/strstr.h (PARAMS): Remove macro.
61690         (strstr): Use ANSI C function declarations.
61691
61692 2002-11-14  Karl Berry  <karl@gnu.org>
61693
61694         * config/mkinstalldirs: `do' on separate line, instead of
61695         `for var; do'.
61696
61697 2002-11-06  Bruno Haible  <bruno@clisp.org>
61698
61699         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
61700         * lib/gcd.c (gcd): Likewise.
61701
61702 2002-11-05  Bruno Haible  <bruno@clisp.org>
61703
61704         * lib/gcd.h: New file, from gettext-0.11.5.
61705         * lib/gcd.c: New file, from gettext-0.11.5.
61706
61707 2002-11-05  Bruno Haible  <bruno@clisp.org>
61708
61709         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61710         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61711         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61712         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
61713
61714         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
61715         <libintl.h>.
61716         * lib/makepath.c: Include gettext.h instead of <locale.h> and
61717         <libintl.h>.
61718
61719         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
61720         * lib/human.c: Include gettext.h instead of <libintl.h>.
61721         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
61722         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
61723         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
61724         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
61725         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
61726         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
61727         (textdomain): Remove definition.
61728         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
61729
61730         * lib/long-options.c: Remove include of <libintl.h> and definition of
61731         _.
61732         * lib/same.c: Remove include of <libintl.h> and definition of _.
61733
61734 2002-11-04  Owen Taylor  <otaylor@redhat.com>
61735
61736         * lib/config.charset: A few additions for Solaris.
61737
61738 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
61739
61740         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
61741         * lib/localcharset.c (locale_charset): Declare as extern "C".
61742
61743 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
61744
61745         * lib/config.charset: msdos in uk_UA uses CP1125.
61746
61747 2002-11-04  Bruno Haible  <bruno@clisp.org>
61748
61749         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
61750         * lib/strcase.h: New file, from GNU gettext-0.11.5.
61751         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
61752         * lib/strstr.h: New file, from GNU gettext-0.11.5.
61753         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
61754
61755 2002-11-04  Bruno Haible  <bruno@clisp.org>
61756
61757         * lib/localcharset.c (locale_charset): Don't return an empty string.
61758
61759 2002-11-04  Bruno Haible  <bruno@clisp.org>
61760
61761         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
61762         aliases.
61763
61764 2002-11-04  Bruno Haible  <bruno@clisp.org>
61765
61766         * lib/config.charset: Update for newest glibc. Add canonical names
61767         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
61768
61769 2002-11-04  Bruno Haible  <bruno@clisp.org>
61770
61771         * lib/config.charset: Add support for NetBSD.
61772
61773 2002-11-04  Bruno Haible  <bruno@clisp.org>
61774
61775         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
61776
61777 2002-11-01  Bruno Haible  <bruno@clisp.org>
61778
61779         * configure.in: Add AC_CONFIG_AUX_DIR call.
61780         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
61781         test/Makefile.
61782         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
61783
61784 2002-09-28  Karl Berry  <karl@gnu.org>
61785
61786         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
61787         installed automake until the next release, since changes have been
61788         made.
61789
61790 2002-09-25  Karl Berry  <karl@gnu.org>
61791
61792         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
61793         * lib/getopt*: copy from libc/posix.
61794         * lib/gettext.h: copy from gettext.
61795         * lib/.cppi-disable: add strdup.c, gettext.h.
61796
61797 2002-09-25  Karl Berry  <karl@gnu.org>
61798
61799         * config/srclist.txt: enable gettext.h check.
61800         * config/config.{guess,sub}: update from prep.
61801         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
61802                 from automake 1.6.3.
61803         See srclist*.
61804
61805 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
61806
61807         * regex.c (PATFETCH): Remove the translating fetch.
61808         (PATFETCH_RAW): Rename to PATFETCH.
61809         (set_image_of_range): New fun.
61810         (SET_RANGE_TABLE_WORK_AREA): Use it.
61811         (regex_compile): Don't translate the pattern chars so eagerly.
61812         Only do it when inserting an `exactn' bytecode or when handling
61813         a char-range.
61814         (mutually_exclusive_p): Avoid empty statement.
61815
61816 2002-07-06  Jim Meyering  <meyering@lucent.com>
61817
61818         * m4/README: Don't mention Makefile.am.in.
61819         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
61820
61821 2002-07-01  Jim Meyering  <meyering@lucent.com>
61822
61823         * lib/c-stack.c: Include sys/time.h.
61824         From Volker Borchert.
61825
61826 2002-06-26  Paul Eggert  <eggert@twinsun.com>
61827
61828         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
61829
61830 2002-06-26  Paul Eggert  <eggert@twinsun.com>
61831
61832         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
61833         New macro.  Use it uniformly instead of
61834         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
61835         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
61836         reported by Vin Shelton.
61837
61838 2002-06-22  Paul Eggert  <eggert@twinsun.com>
61839
61840         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
61841         Do not assume SA_SIGINFO behavior.
61842         Bug reported by Jim Meyering on NetBSD 1.5.2.
61843
61844 2002-06-22  Jim Meyering  <meyering@lucent.com>
61845
61846         * m4/c-stack.m4: New file, from diffutils-2.8.2.
61847         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
61848
61849         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
61850         now that configure.ac uses AC_GNU_SOURCE.
61851         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
61852         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
61853
61854         Update to latest tools.  Suggestions from Paul Eggert.
61855         * m4/stdbool.m4: New file, from diffutils-2.8.2.
61856         * m4/gnu-source.m4: Update from diffutils-2.8.2.
61857         * m4/fnmatch.m4: Likewise.
61858         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
61859         to AC_HEADER_STDBOOL
61860
61861 2002-06-22  Jim Meyering  <meyering@lucent.com>
61862
61863         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
61864         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
61865
61866 2002-06-22  Jim Meyering  <meyering@lucent.com>
61867
61868         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
61869
61870         * lib/exitfail.c, exitfail.h: Likewise.
61871         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
61872
61873         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
61874         of fnmatch.h.
61875         (EXTRA_DIST): Add fnmatch_loop.c.
61876         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
61877
61878         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
61879         * lib/fnmatch.c: Update from diffutils-2.8.2.
61880         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
61881         * lib/fnmatch.h: Remove file.
61882
61883 2002-06-21  Jim Meyering  <meyering@lucent.com>
61884
61885         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
61886         * m4/mbrtowc.m4: Likewise.
61887
61888         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
61889         * m4/mbswidth.m4: Reflect name change:
61890         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
61891         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
61892
61893         * m4/lib-link.m4: Update from gettext-0.11.2.
61894         * m4/gettext.m4: Likewise.
61895
61896         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
61897         From Alfred M. Szmidt.
61898
61899 2002-06-18  Paul Eggert  <eggert@twinsun.com>
61900
61901         * lib/file-type.h: Report an error if neither S_ISREG nor
61902         S_IFREG is defined, instead of using a test specific to glibc
61903         2.2.  This should be safe, since POSIX requires S_ISREG and
61904         Unix Version 7 had S_IFREG.  We don't need to check for
61905         <sys/types.h> since we don't use any symbols that it defines.
61906
61907 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
61908
61909         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
61910         $@-t, so that each temporary file name is unique and valid in the first
61911         8 characters, for operation under DOS.
61912
61913 2002-06-15  Paul Eggert  <eggert@twinsun.com>
61914
61915         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
61916
61917 2002-06-15  Jim Meyering  <meyering@lucent.com>
61918
61919         Work even with DJGPP 2.03, which lacks support for symlinks.
61920         From Richard Dawe.
61921         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
61922         is defined.
61923         * lib/lchown.c (S_ISLNK): Likewise.
61924
61925 2002-06-15  Jim Meyering  <meyering@lucent.com>
61926
61927         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
61928         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
61929         have been included before this file.
61930
61931 2002-06-14  Jim Meyering  <meyering@lucent.com>
61932
61933         * lib/file-type.h: Use the version from diffutils-2.8.2.
61934         * lib/file-type.c: Likewise.
61935
61936 2002-06-07  Jim Meyering  <meyering@lucent.com>
61937
61938         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
61939         They're needed at least for NetBSD 1.5.2.
61940         ($statxfs_includes): Include those same headers.
61941         ($statxfs_includes): Include sys/vfs.h if available.
61942         ($statxfs_includes): Likewise for sys/statvfs.h.
61943         Check for the following members in both structs statfs and statvfs:
61944         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
61945
61946 2002-06-01  Jim Meyering  <meyering@lucent.com>
61947
61948         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
61949         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
61950
61951 2002-05-28  Jim Meyering  <meyering@lucent.com>
61952
61953         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
61954         Reported by Volker Borchert.
61955
61956 2002-05-27  Jim Meyering  <meyering@lucent.com>
61957
61958         Fix a problem seen only on nonconforming systems whereby ls.c's
61959         use of localtime, and then of gettimeofday would cause trouble:
61960         the localtime call used to initialize rpl_gettimeofday's save
61961         mechanism would clobber ls's current local time information so
61962         that in any long listing the first file would always be listed
61963         with date 1970-01-01.  Analysis by Volker Borchert.
61964
61965         * lib/gettimeofday.c (localtime): Undefine.
61966         (rpl_localtime): New function.
61967
61968 2002-05-27  Jim Meyering  <meyering@lucent.com>
61969
61970         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
61971         localtime.
61972
61973         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
61974         use the replacement function; it wouldn't resolve at link time.
61975         Reported by Volker Borchert.
61976
61977 2002-05-22  Jim Meyering  <meyering@lucent.com>
61978
61979         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
61980         file-type.h.
61981         * lib/file-type.h: New file.
61982         * lib/file-type.c (file_type): New file/function.  Extracted from
61983         diffutils.
61984
61985 2002-04-30  Jim Meyering  <meyering@lucent.com>
61986
61987         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
61988
61989 2002-04-29  Paul Eggert  <eggert@twinsun.com>
61990
61991         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
61992
61993 2002-04-29  Paul Eggert  <eggert@twinsun.com>
61994
61995         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
61996         Do not check for alloca.h (no longer used) or stdbool.h (was never
61997         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
61998
61999 2002-04-29  Paul Eggert  <eggert@twinsun.com>
62000
62001         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
62002
62003 2002-04-29  Jim Meyering  <meyering@lucent.com>
62004
62005         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
62006         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
62007         Use AC_FUNC_STRNLEN here instead.
62008
62009         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
62010         With autoconf-2.53a, it's part of AC_PROG_CC.
62011
62012 2002-04-28  Paul Eggert  <eggert@twinsun.com>
62013
62014         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
62015         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
62016
62017 2002-04-28  Paul Eggert  <eggert@twinsun.com>
62018
62019         * lib/sig2str.h, lib/sig2str.c: New files.
62020         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
62021
62022 2002-04-28  Paul Eggert  <eggert@twinsun.com>
62023
62024         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
62025         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
62026         of 127, since 64 is the largest conceivable number for ancient
62027         nonstandard hosts.
62028         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
62029
62030 2002-04-28  Jim Meyering  <meyering@lucent.com>
62031
62032         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
62033
62034 2002-04-24  Jim Meyering  <meyering@lucent.com>
62035
62036         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
62037         (jm_PREREQ): Use it.
62038
62039         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
62040         mach/mach.h fcntl.h.
62041         Check for this function: setlocale.
62042
62043 2002-04-24  Jim Meyering  <meyering@lucent.com>
62044
62045         * lib/gettext.h: New file, from Gettext.
62046         * lib/Makefile.am (INCLUDES): Remove -I../intl.
62047         (libfetish_a_SOURCES): Add gettext.h.
62048
62049 2002-04-16  Jim Meyering  <meyering@lucent.com>
62050
62051         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
62052         ut_pid, ut_id, ut_exit.
62053
62054 2002-04-16  Jim Meyering  <meyering@lucent.com>
62055
62056         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
62057         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
62058         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
62059
62060 2002-04-12  Jim Meyering  <meyering@lucent.com>
62061
62062         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
62063         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
62064         existence of the getmntinfo function.  Needed for Darwin 5.3.
62065
62066         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
62067         This is necessary at least on Darwin 5.3.
62068
62069         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
62070         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
62071         strnlen.o in the library, and that makes some versions of ranlib
62072         object.
62073
62074 2002-04-12  Jim Meyering  <meyering@lucent.com>
62075
62076         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
62077
62078 2002-04-09  Jim Meyering  <meyering@lucent.com>
62079
62080         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
62081         to be more precise.  Rather than saying we're checking whether the
62082         function `works', say what we're testing.
62083         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
62084         Reported by Bruno Haible.
62085
62086 2002-03-10  Jim Meyering  <meyering@lucent.com>
62087
62088         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
62089         Suggestion from Santiago Vila.
62090
62091 2002-03-08  Jim Meyering  <meyering@lucent.com>
62092
62093         * lib/rename.c: Mention that this wrapper is needed also on
62094         mips-dec-ultrix4.4 systems.
62095
62096 2002-03-02  Jim Meyering  <meyering@lucent.com>
62097
62098         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
62099         not HAVE_CLOCK_SETTIME.
62100
62101 2002-02-27  Paul Eggert  <eggert@twinsun.com>
62102
62103         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
62104         Check for clock_settime.
62105
62106 2002-02-27  Paul Eggert  <eggert@twinsun.com>
62107
62108         * lib/nanosleep.h: Rename to....
62109         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
62110
62111         * lib/gettime.c: New file.
62112         * lib/settime.c: New file.
62113         * lib/stime.c: Remove.
62114
62115         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
62116         timespec.h.  Remove nanosleep.h.
62117
62118 2002-02-25  Paul Eggert  <eggert@twinsun.com>
62119
62120         * m4/acl.m4: New file.
62121         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
62122         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
62123
62124 2002-02-25  Paul Eggert  <eggert@twinsun.com>
62125
62126         * lib/acl.c, lib/acl.h: New files.
62127         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
62128
62129 2002-02-24  Jim Meyering  <meyering@lucent.com>
62130
62131         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
62132         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
62133         cause trouble.  Reported by Nelson Beebe.
62134
62135 2002-02-23  Paul Eggert  <eggert@twinsun.com>
62136
62137         * lib/path-concat.c (xpath_concat): Reorder code to pacify
62138         compilers that don't know that xalloc_die never returns.
62139
62140 2002-02-20  Jim Meyering  <meyering@lucent.com>
62141
62142         * lib/getdate.c: Regenerate using bison-1.33.
62143
62144 2002-02-17  Jim Meyering  <meyering@lucent.com>
62145
62146         * config/config.guess (main): Don't use `head -1'; it's no longer
62147         portable. Use `sed 1q' instead.
62148
62149 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
62150
62151         * m4/codeset.m4: Upgrade to gettext-0.11.
62152         * m4/gettext.m4: Upgrade to gettext-0.11.
62153         * m4/glibc21.m4: Upgrade to gettext-0.11.
62154         * m4/iconv.m4: Upgrade to gettext-0.11.
62155         * m4/isc-posix.m4: Upgrade to gettext-0.11.
62156         * m4/lcmessage.m4: Upgrade to gettext-0.11.
62157         * m4/lib-ld.m4: New file, from gettext-0.11.
62158         * m4/lib-link.m4: New file, from gettext-0.11.
62159         * m4/lib-prefix.m4: New file, from gettext-0.11.
62160         * m4/progtest.m4: Upgrade to gettext-0.11.
62161
62162 2002-02-15  Paul Eggert  <eggert@twinsun.com>
62163
62164         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
62165         (jm_PREREQ): Use it.
62166
62167 2002-02-15  Paul Eggert  <eggert@twinsun.com>
62168
62169         * lib/posixver.c, lib/posixver.h: New files.
62170         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
62171
62172 2002-02-02  Paul Eggert  <eggert@twinsun.com>
62173             Bruno Haible  <bruno@clisp.org>
62174
62175         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
62176         (fwrite_success_callback): New declaration.
62177         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
62178         print_unicode_char. Call failure callback instead of error.
62179         (fwrite_success_callback): New function.
62180         (exit_failure_callback): New function.
62181         (fallback_failure_callback): New function.
62182         (print_unicode_char): Call unicode_to_mb.
62183
62184 2002-01-26  Jim Meyering  <meyering@lucent.com>
62185
62186         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
62187         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
62188
62189 2002-01-26  Jim Meyering  <meyering@lucent.com>
62190
62191         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
62192
62193 2002-01-22  Paul Eggert  <eggert@twinsun.com>
62194
62195         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
62196
62197 2002-01-22  Jim Meyering  <meyering@lucent.com>
62198
62199         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
62200         Otherwise, some versions of automake would omit the rule that makes
62201         Makefile from Makefile.in.
62202
62203 2002-01-21  Paul Eggert  <eggert@twinsun.com>
62204
62205         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
62206         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
62207         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
62208         (memcoll): Set errno to zero if there is no error.
62209
62210         * lib/quotearg.c (quotearg_buffer_restyled):
62211         Fix bug with quoting buffers containing NUL when backslashing escapes.
62212         This bug was exposed by the other changes in this patch.
62213         (quotearg_n_options): New arg ARGSIZE.
62214         All callers changed.
62215         (quoting_options_from_style): New function.
62216         (quotearg_n_style): Use it.
62217         (quotearg_n_style_mem): New function.
62218
62219         * lib/quotearg.h (quotearg_n_style_mem): New function.
62220
62221 2002-01-19  Jim Meyering  <meyering@lucent.com>
62222
62223         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
62224         Remove useless quotes: DF_PROG="df".
62225         * m4/strnlen.m4: New file.
62226
62227 2002-01-16  Paul Eggert  <eggert@twinsun.com>
62228
62229         * lib/backupfile.c (ISDIGIT): Comment fix.
62230         * lib/getdate.y (ISDIGIT): Likewise.
62231         * lib/posixtm.c (ISDIGIT, year): Likewise.
62232         * lib/strverscmp.c (ISDIGIT): Likewise.
62233         * lib/userspec.c (ISDIGIT): Likewise.
62234
62235 2002-01-16  Jim Meyering  <meyering@lucent.com>
62236
62237         * lib/getdate.y: Add three semicolons, each just before a closing
62238         brace. Bison (as of version 1.31) no longer papers over that mistake.
62239
62240 2002-01-05  Jim Meyering  <meyering@lucent.com>
62241
62242         * lib/version-etc.c (version_etc_copyright): Update copyright year.
62243
62244 2001-12-19  Paul Eggert  <eggert@twinsun.com>
62245
62246         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
62247         not silently exit merely because the output buffer happens to
62248         have nothing pending.
62249
62250 2001-12-18  Paul Eggert  <eggert@twinsun.com>
62251
62252         See the big note in ../ChangeLog.
62253         * lib/human.c (suffixes): Prefer K to k for 1024.
62254         (generate_suffix_backwards): New function.
62255         (human_readable_inexact): Use it.
62256         * lib/xstrtol.c (__xstrtol): If there is no number but there
62257         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
62258         Accept 'K' as well as 'k'.
62259
62260 2001-12-15  Jim Meyering  <meyering@lucent.com>
62261
62262         * lib/regex.h (__restrict_arr): Update from libc.
62263
62264         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
62265         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
62266         (STREQ): Define.
62267
62268 2001-12-14  Jim Meyering  <meyering@lucent.com>
62269
62270         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
62271         Suggestion from Bruno Haible.
62272
62273 2001-12-10  Jim Meyering  <meyering@lucent.com>
62274
62275         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
62276         xrealloc, Instead, include "xalloc.h".
62277         (initbuffer): Don't cast xmalloc return value to char*.
62278         (readline): Reword comment.
62279         Don't cast xrealloc return value to char*
62280         Return NULL, not 0.
62281
62282 2001-12-09  Jim Meyering  <meyering@lucent.com>
62283
62284         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
62285         about `signed and unsigned type in conditional expression'.
62286         * lib/posixtm.c (posix_time_parse): Likewise.
62287
62288         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
62289
62290         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
62291         to avoid a pedantic warning.
62292
62293         * lib/getstr.c: Don't include assert.h.
62294         (getstr): Remove warning-evoking assertions.
62295         Return -1 if offset parameter is out of bounds.
62296         Change the type of a local from int to size_t.
62297
62298         * lib/strftime.c (my_strftime_localtime_r): Include this function
62299         definition in the `#if ! HAVE_TM_GMTOFF' block.
62300
62301         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
62302         Include xalloc.h instead.
62303
62304 2001-12-02  Jim Meyering  <meyering@lucent.com>
62305
62306         * lib/tempname.c: Don't declare getenv, thus reverting the change of
62307         2001-11-18.  It's no longer necessary, now that stdlib.h is always
62308         included.
62309
62310         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
62311         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
62312
62313 2001-11-30  Akim Demaille  <akim@epita.fr>
62314
62315         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
62316         before being defined.
62317
62318 2001-11-27  Paul Eggert  <eggert@twinsun.com>
62319
62320         * lib/quotearg.h (quotearg_n, quotearg_n_style):
62321         First arg is int, not unsigned.
62322         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
62323         (SIZE_MAX, UINT_MAX): New macros.
62324         (quotearg_n_options): Abort if N is negative.
62325         Avoid overflow check on hosts where size_t is 64 bits and int
62326         is 32 bits, as overflow is impossible there.
62327         Fix off-by-one typo that caused unnecessary reallocation.
62328
62329 2001-11-27  Jim Meyering  <meyering@lucent.com>
62330
62331         * lib/tempname.c: Merge with version from libc.
62332         * lib/regex.c: Likewise.
62333
62334         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
62335         systems for which STDC_HEADERS is 0, it was not included, resulting in
62336         a warning about an integer-to-pointer conversion problem with getenv.
62337         Reported by Volker Borchert.
62338
62339 2001-11-26  Jim Meyering  <meyering@lucent.com>
62340
62341         * lib/gtod.h: Remove file.
62342         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
62343         * lib/gettimeofday.c: Don't include gtod.h.
62344         (GTOD_init): Remove function.
62345         (rpl_gettimeofday): Do its job here instead, rather than aborting.
62346         Suggestion from Volker Borchert.
62347
62348 2001-11-23  Jim Meyering  <meyering@lucent.com>
62349
62350         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
62351         it.
62352         * lib/hash.c (struct hash_table): Define it here instead.
62353
62354 2001-11-22  Jim Meyering  <meyering@lucent.com>
62355
62356         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
62357
62358 2001-11-20  Jim Meyering  <meyering@lucent.com>
62359
62360         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
62361         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
62362
62363 2001-11-19  Jim Meyering  <meyering@lucent.com>
62364
62365         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
62366         directory.  Use "conftestXXXXXX" as the template.
62367         Suggestion from Paul Eggert.
62368
62369         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
62370         immediately, so the test doesn't mistakenly hit the max-open-files
62371         limit.
62372
62373 2001-11-18  Paul Eggert  <eggert@twinsun.com>
62374
62375         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
62376         (TEMPORARIES): New macro.
62377         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
62378         removes an artificial limitation (e.g. HP-UX 10.20, where
62379         TMP_MAX is 17576).
62380
62381 2001-11-18  Jim Meyering  <meyering@lucent.com>
62382
62383         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
62384
62385 2001-11-18  Jim Meyering  <meyering@lucent.com>
62386
62387         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
62388         on SunOS 4.
62389
62390         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
62391         files will be created before anything else.
62392
62393 2001-11-17  Paul Eggert  <eggert@twinsun.com>
62394
62395         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
62396         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
62397
62398 2001-11-17  Jim Meyering  <meyering@lucent.com>
62399
62400         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
62401         Prompted by a report from Bob Proulx.
62402
62403         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
62404         Instead, require UTILS_FUNC_MKSTEMP.
62405
62406 2001-11-17  Jim Meyering  <meyering@lucent.com>
62407
62408         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
62409         Now, that's done as part of AC_FUNC_STRTOD.
62410
62411 2001-11-17  Jim Meyering  <meyering@lucent.com>
62412
62413         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
62414         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
62415         rather than group writable.  Patch by Juan F. Codagnone.
62416
62417         * lib/readtokens.c: Remove explicit declarations of xmalloc and
62418         xrealloc, Instead, include "xalloc.h".
62419
62420         * lib/mountlist.c: Include unlocked-io.h after all system headers.
62421         Remove explicit declarations of xmalloc, xrealloc,
62422         and xstrdup.  Instead, include "xalloc.h".
62423
62424         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
62425         unlocked-io.h.
62426         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
62427         Likewise.
62428         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
62429
62430         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
62431         Reported by Padraig Brady.
62432
62433         * lib/mkstemp.c: #undef mkstemp.
62434         Include config.h.
62435         (rpl_mkstemp): Rename from mkstemp.
62436         Protoize.
62437
62438 2001-11-16  Jim Meyering  <meyering@lucent.com>
62439
62440         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
62441         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
62442         determine the amount of total physical memory, use pstat_getstatic.
62443         HPUX-11 doesn't define _SC_PHYS_PAGES.
62444         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
62445         If sysconf couldn't be used to determine the amount of available
62446         physical memory, use both pstat_getstatic and pstat_getdynamic.
62447         Based on a patch from Bob Proulx.
62448
62449 2001-11-10  Jim Meyering  <meyering@lucent.com>
62450
62451         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
62452         (jm_PREREQ): Use it.
62453
62454 2001-11-09  Jim Meyering  <meyering@lucent.com>
62455
62456         * m4/jm-macros.m4: Require autoconf-2.52f.
62457         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
62458         Use these AC_-prefixed names, not the AM_-prefixed ones.
62459
62460         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
62461
62462 2001-11-05  Jim Meyering  <meyering@lucent.com>
62463
62464         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
62465
62466 2001-11-04  Jim Meyering  <meyering@lucent.com>
62467
62468         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
62469         $DEFS.
62470
62471 2001-11-03  Jim Meyering  <meyering@lucent.com>
62472
62473         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
62474         of AC_DEFUN.
62475
62476         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
62477         know the name of the variable in the macro definition.
62478
62479 2001-11-03  Jim Meyering  <meyering@lucent.com>
62480
62481         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
62482         in argmatch_to_argument call.
62483
62484         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
62485         argument.
62486
62487         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
62488         e.g., a fault due to an attempt to free a NULL pointer.
62489
62490 2001-11-01  Jim Meyering  <meyering@lucent.com>
62491
62492         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
62493         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
62494
62495 2001-11-01  Jim Meyering  <meyering@lucent.com>
62496
62497         * lib/dirfd.c, lib/dirfd.h: New files.
62498         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
62499
62500         * lib/hash.c (hash_print) [TESTING]: Clean up.
62501
62502 2001-10-22  Paul Eggert  <eggert@twinsun.com>
62503
62504         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
62505         to avoid a warning if -Wall.
62506
62507 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
62508
62509         * README: New file
62510         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
62511         (per RMS's instructions, this is now the canonical source)
62512         * lgpl/, gpl/: New directories.
62513
62514 2001-10-21  Paul Eggert  <eggert@twinsun.com>
62515
62516         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
62517
62518 2001-10-21  Jim Meyering  <meyering@lucent.com>
62519
62520         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
62521         this code would end up calling gettext even in packages built
62522         with --disable-nls.
62523         * lib/getopt.c (_): Likewise.
62524         * lib/regex.c (_): Likewise.
62525
62526 2001-10-20  Paul Eggert  <eggert@twinsun.com>
62527
62528         * m4/error.m4 (jm_PREREQ_ERROR):
62529         Do not invoke AC_CHECK_FUNCS with strerror_r, as
62530         AC_FUNC_STRERROR_R does that.
62531         Check for strerror declaration.
62532
62533         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
62534         are supposed to have them these days.
62535         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
62536         Merge changes from latest Autoconf CVS.
62537         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
62538         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
62539         POSIX decided to standardize on the int flavor of strerror_r.
62540
62541 2001-10-20  Paul Eggert  <eggert@twinsun.com>
62542
62543         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
62544         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
62545         Use strerror_r that is only a macro, even if it is not a function.
62546         (strerror): Check for HAVE_DECL_STRERROR before declaring.
62547         (private_strerror): Use prototypes, not old-style function definition.
62548         (print_errno_message): New function.
62549         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
62550         char*-flavored one.
62551         (error_tail, error, error_at_line): Use it.
62552
62553 2001-10-11  Jim Meyering  <meyering@lucent.com>
62554
62555         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
62556         and quote_n (1, ... to avoid clobbering a buffer.
62557
62558 2001-10-05  Jim Meyering  <meyering@lucent.com>
62559
62560         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
62561         hash-pjw.h.
62562         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
62563         * lib/hash-pjw.h: New file.
62564
62565 2001-09-30  Jim Meyering  <meyering@lucent.com>
62566
62567         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
62568         `struct fsstat' has the `f_fstypename' member.
62569         Use that to define FS_TYPE, which is now used to make
62570         the getfsstat link test tighter.
62571
62572 2001-09-30  Jim Meyering  <meyering@lucent.com>
62573
62574         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
62575         Include <sys/ucred.h>, for Apple Darwin.
62576         Include sys/mount.h and sys/fs_types.h only if available.
62577         (FS_TYPE): Define.
62578         (read_filesystem_list): Use FS_TYPE.
62579
62580 2001-09-29  Paul Eggert  <eggert@twinsun.com>
62581
62582         * lib/exclude.c (excluded_filename): 0 -> false, since it's
62583         a boolean context.
62584
62585 2001-09-29  Jim Meyering  <meyering@lucent.com>
62586
62587         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
62588         [one-argument getmntent function]): Include stdio.h before mntent.h.
62589         SunOS 4.1.x needs it for the declaration of `FILE'.
62590         Patch by Volker Borchert.
62591
62592         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
62593         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
62594         sys/fs_types.h, and make the link-test for getfsstat guard #include
62595         directives with appropriate #if HAVE_*_H tests so that we can
62596         detect getfsstat on Apple Darwin1.3.7 systems.
62597         Reported by Nelson Beebe.
62598         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
62599
62600 2001-09-28  Paul Eggert  <eggert@twinsun.com>
62601
62602         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
62603         #defines strtoimax.  Also treat the other strto* functions
62604         like strtoimax.
62605
62606         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
62607         Check for strtoul and strtoumax,
62608         as those declarations are made even in the signed case.
62609         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
62610         Likewise, for strtol and strtoimax.
62611
62612 2001-09-28  Paul Eggert  <eggert@twinsun.com>
62613
62614         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
62615         #defines strtoimax.  Also treat the other strto* functions
62616         like strtoimax.
62617
62618         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
62619         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
62620         (strtoimax, strtoumax): Do not declare if already defined as a macro.
62621
62622 2001-09-26  Jim Meyering  <meyering@lucent.com>
62623
62624         Most macros in unlocked-io.h had the wrong number of arguments.
62625         * lib/gen-uio: New script.
62626         (USE_UNLOCKED_IO): Define to 1 if not already defined.
62627         * lib/unlocked-io.hin: Remove file.
62628         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
62629         rather than trying to embed it here.
62630         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
62631         Reported by Padraig Brady.
62632
62633 2001-09-25  Volker Borchert  <bt@teknon.de>
62634
62635         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
62636         `result'.
62637
62638 2001-09-24  Jim Meyering  <meyering@lucent.com>
62639
62640         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
62641
62642 2001-09-23  Jim Meyering  <meyering@lucent.com>
62643
62644         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
62645         instead of the mere test for existence of mntent.h.  The latter
62646         would get a false-positive on AIX 3.4 systems.
62647         In the outer getmntent if-block, don't die if neither of the getmntent
62648         tests succeeds.  Instead, just fall through and continue with the
62649         remaining tests.
62650
62651 2001-09-23  Jim Meyering  <meyering@lucent.com>
62652
62653         * lib/mountlist.c: Remove useless parentheses in #if directives.
62654         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
62655         the deprecated MOUNTED symbol is no longer defined in mntent.h.
62656
62657 2001-09-22  Jim Meyering  <meyering@lucent.com>
62658
62659         * m4/gettext.m4: New file.  From gettext.
62660         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
62661         * m4/progtest.m4: Likewise
62662         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
62663         * m4/glibc21.m4: Likewise.
62664
62665         * m4/libintl.m4: Remove.  No longer used.
62666
62667 2001-09-22  Jim Meyering  <meyering@lucent.com>
62668
62669         * lib/localcharset.c: Update from latest gettext.
62670         * lib/config.charset: Likewise.
62671
62672 2001-09-20  Jim Meyering  <meyering@lucent.com>
62673
62674         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
62675         strtoimax.
62676         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
62677         strtoumax.
62678
62679 2001-09-20  Jim Meyering  <meyering@lucent.com>
62680
62681         * lib/xstrtol.c (strtoimax): Guard declaration with
62682         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
62683         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
62684         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
62685         (strtoumax): Likewise, for completeness (it wasn't necessary).
62686
62687 2001-09-17  Paul Eggert  <eggert@twinsun.com>
62688
62689         * lib/strtoimax.c (HAVE_LONG_LONG):
62690         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
62691         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
62692         to work around bug in IBM C compiler.
62693
62694 2001-09-17  Jim Meyering  <meyering@lucent.com>
62695
62696         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
62697         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
62698         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
62699         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
62700         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
62701         whenever the right hand side need not be expanded by the shell.
62702
62703 2001-09-16  Paul Eggert  <eggert@twinsun.com>
62704
62705         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
62706         library.  It's not correct, as some older glibcs are buggy.
62707         fnmatch wasn't fixed until glibc 2.2.
62708
62709         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
62710         special shell magic here.
62711
62712 2001-09-16  Jim Meyering  <meyering@lucent.com>
62713
62714         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
62715         * m4/jm-macros.m4: Require it.
62716
62717 2001-09-16  Jim Meyering  <meyering@lucent.com>
62718
62719         * lib/mkdir.c: New file.
62720
62721 2001-09-15  Jim Meyering  <meyering@lucent.com>
62722
62723         * m4/jm-macros.m4: Check for help2man.
62724
62725 2001-09-11  Jim Meyering  <meyering@lucent.com>
62726
62727         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
62728         The body, by Paul Eggert, was moved here from configure.in.
62729         * m4/jm-macros.m4: Require UTILS_HOST_OS.
62730
62731 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62732
62733         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
62734         (jm_PREREQ): Use it.
62735
62736 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62737
62738         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
62739         Use ssize_t, not int, to store result of readlink.
62740         Check for ssize_t overflow as well as size_t overflow,
62741         as POSIX says the result of readlink is implementation-defined
62742         when ssize_t overflows.
62743         Remove unnecessary cast to char*.
62744         Use free+malloc instead of realloc, as the storage doesn't need
62745         to be preserved and it's clearer and can be more efficient that way.
62746         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
62747         * lib/xreadlink.h (xreadlink): Update prototype.
62748
62749 2001-09-04  Paul Eggert  <eggert@twinsun.com>
62750
62751         * lib/xgetcwd.c: Revert some of the previous change; intead,
62752         fix the HAVE_GETCWD_NULL code to behave more like the
62753         !HAVE_GETCWD_NULL code used to.
62754
62755         Include "xalloc.h".
62756         (xgetcwd): Do not return NULL when memory is exhausted; instead,
62757         invoke xalloc_die.
62758
62759 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62760
62761         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
62762         sys/param.h, as pathmax.h includes them.
62763
62764 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62765
62766         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
62767         (jm_PREREQ_XGETCWD): New macro.
62768
62769         * m4/getcwd.m4: New file.
62770
62771 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62772
62773         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
62774         like the HAVE_GETCWD_NULL code.
62775         Include pathmax.h if not HAVE_GETCWD.
62776         Do not include xalloc.h.
62777         (INITIAL_BUFFER_SIZE): New symbol.
62778         Do not use xmalloc / xrealloc, since the caller is responsible for
62779         handling errors.  Preserve errno around `free' during failure.
62780         Do not overrun buffer when using getwd.
62781
62782 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62783
62784         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
62785         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
62786         getcwd (NULL, 0).
62787
62788 2001-09-03  Paul Eggert  <eggert@twinsun.com>
62789
62790         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
62791         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
62792         spotted by Jim Meyering.
62793
62794 2001-09-03  Jim Meyering  <meyering@lucent.com>
62795
62796         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
62797         failure.
62798
62799 2001-09-02  Jim Meyering  <meyering@lucent.com>
62800
62801         * lib/error.c: Update from GNU libc.
62802
62803 2001-09-01  Jim Meyering  <meyering@lucent.com>
62804
62805         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
62806         Used by df.
62807
62808 2001-09-01  Jim Meyering  <meyering@lucent.com>
62809
62810         * lib/xreadlink.c: New file.
62811         * lib/xreadlink.h: New file.
62812         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
62813         xreadlink.h.
62814
62815         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
62816         doesn't conflict with sparc Solaris 7's definition in
62817         /usr/include/sys/int_types.h.
62818
62819         * lib/exclude.c: Use `""', not `<>' to #include non-system header
62820         files.
62821         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
62822         and strncasecmp as r-values.  Unixware didn't have declarations.
62823
62824 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62825
62826         * lib/xstrtol.h: Add copyright notice.
62827         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
62828         LONGINT_INVALID_SUFFIX_CHAR.
62829
62830 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62831
62832         * lib/xstrtol.c (strtoimax): New decl.
62833
62834 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62835
62836         * lib/xgetcwd.c: Don't include pathmax.h.
62837         Include stdlib.h and unistd.h if available.
62838         Include xalloc.h.
62839         (xmalloc, xstrdup, free): Remove decls.
62840         (xgetcwd): Don't assume sizes fit in unsigned.
62841         Check for overflow when computing sizes.
62842         Simplify reallocation code.
62843
62844 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62845
62846         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
62847         a directory's st_size can have an arbitrary value, so the old
62848         usage could waste an arbitrary amount of memory.  All uses
62849         changed.
62850         * lib/savedir.h: Update prototype.
62851
62852 2001-08-31  Paul Eggert  <eggert@twinsun.com>
62853
62854         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
62855
62856         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
62857         old strtoimax.c.
62858
62859         Also, make the following further changes to make this file's
62860         configuration more similar to that of strtol.c:
62861         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
62862         (strtoumax, uintmax_t, strtoull, strtol): Remove.
62863         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
62864         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
62865         changed to signed values.
62866
62867         And make the following changes as well:
62868         Fix copyright notice, as 1999 was missing.
62869         (verify): New macro.
62870         (strtoimax): Check sizes at compile-time, not run-time.
62871         Prefer strtol to strtoll if both work.
62872         (main): Remove; it was not that useful and was a pain to maintain.
62873
62874         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
62875
62876 2001-08-31  Jim Meyering  <meyering@lucent.com>
62877
62878         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
62879         Use an initial, malloc'd, buffer of length 128 rather than
62880         a statically allocated one of length 1024.
62881
62882 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62883
62884         Simplify code, partly by assuming autoconf 2.52 semantics.
62885
62886         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
62887
62888         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
62889         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
62890         All uses removed.
62891         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
62892         Move AC_REQUIRE to next-to-top level, to avoid confusion.
62893         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
62894         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
62895         jm_AC_HEADER_INTTYPES_H.
62896         * m4/jm-macros.m4 (jm_MACROS): Likewise.
62897
62898         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
62899
62900         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
62901         Quote first arg of AC_DEFUN.
62902         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
62903         since they are needed to parse the include file even if we need
62904         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
62905         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
62906         but with opposite signedness.
62907
62908 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62909
62910         Merge 'exclude' changes from tar 1.13.22.
62911         This fixes one or two unlikely storage allocation overflow bugs,
62912         but doesn't change user-visible behavior otherwise.
62913
62914 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62915
62916         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
62917         (jm_PREREQ_EXCLUDE): New macro.
62918
62919 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62920
62921         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
62922         tm to be declared.
62923
62924 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62925
62926         * lib/hash.c: Remove '2001' from copyright notice.
62927
62928 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62929
62930         * lib/full-write.h: New file.
62931         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
62932         * lib/full-write.c: Correct credits, as cccp.c no longer
62933         exists and anyway it was so heavily changed from the old cccp
62934         code as to be unrecognizable.  Include full-write.h.
62935         (full_write) Return size_t, with short writes meaning failure.
62936         All callers changed.  This fixes a bug with large buffers
62937         on 64-bit hosts.
62938         * lib/utime.c: Include full-write.h.
62939
62940 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62941
62942         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
62943         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
62944         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
62945         Include if available.
62946         (<xalloc.h>): Include
62947         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
62948         (verify): New macro.  Use it to verify that EXCLUDE macros do not
62949         collide with FNM macros.
62950         (struct patopts): New struct.
62951         (struct exclude): Use it, as exclude patterns now come with options.
62952         (new_exclude): Support above changes.
62953         (new_exclude, add_exclude_file):
62954         Initial size must now be a power of two to simplify overflow checking.
62955         (free_exclude, fnmatch_no_wildcards): New function.
62956         (excluded_filename): No longer requires options arg, as the options
62957         are determined by add_exclude.  Now returns bool, not int.
62958         (excluded_filename, add_exclude):
62959         Add support for the fancy new exclusion options.
62960         (add_exclude, add_exclude_file): Now takes int options arg.
62961         Check for arithmetic overflow when computing sizes.
62962         (add_exclude_file): xrealloc might modify errno, so don't
62963         realloc until after errno might be used.
62964
62965         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
62966         New macros.
62967         (free_exclude): New decl.
62968         (add_exclude, add_exclude_file): Now takes int options arg.
62969         (excluded_filename): No longer requires options arg, as the options
62970         are determined by add_exclude.  Now returns bool, not int.
62971
62972 2001-08-30  Paul Eggert  <eggert@twinsun.com>
62973
62974         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
62975
62976 2001-08-27  Jim Meyering  <meyering@lucent.com>
62977
62978         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
62979
62980         * lib/version-etc.c (N_): Remove definition.
62981         Revert most of last change.
62982         Instead, simply don't mark the `Copyright...' string for translation.
62983         Based on advice from Paul Eggert.
62984
62985         * lib/strtoxmax.c: Tweak comment.
62986
62987 2001-08-26  Jim Meyering  <meyering@lucent.com>
62988
62989         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
62990
62991         * m4/xstrtoimax.m4: New file.
62992         * m4/xstrtoumax.m4: Add comments explaining why we
62993         AC_REPLACE_FUNCS(strtol).
62994
62995 2001-08-26  Jim Meyering  <meyering@lucent.com>
62996
62997         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
62998         of copyright with `%s' so translators don't get an untranslated
62999         message in 2002.
63000         (COPYRIGHT_YEAR): Define.
63001         (version_etc): Use fprintf rather than fputs.
63002         Suggestion from Ulrich Drepper.
63003
63004         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
63005
63006         * lib/strtoll.c: New file, from GNU libc.
63007         * lib/xstrtoimax.c: New file.
63008
63009         * lib/xstrtol.h: Add xstrtoimax.
63010         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
63011         * lib/strtoimax.c: New file.  Likewise, but first define
63012         STRTOUXMAX_SIGNED.
63013
63014         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
63015         ...
63016         * lib/strtoxmax.c: ... then renamed to this.
63017
63018 2001-08-18  Paul Eggert  <eggert@twinsun.com>
63019
63020         * m4/inttypes.m4: Add AC_PREREQ(2.13).
63021         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
63022         (jm_AC_TYPE_INTMAX_T): New macro.
63023         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
63024
63025         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
63026
63027         * m4/longlong.m4: Renamed from ulonglong.m4.
63028         * m4/inttypes.m4: Renamed from inttypes_h.m4.
63029         * m4/uintmax_t.m4: Removed.
63030
63031 2001-08-13  Paul Eggert  <eggert@twinsun.com>
63032
63033         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
63034         Port to Solaris 8, where 'sed' requires a space after the 'r'
63035         command, and where sh dislikes "$/".  Clean up the spacing a bit.
63036         Redirect output to $tmp just once.
63037
63038 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
63039
63040         * lib/addext.c (<errno.h>): Include.
63041         (errno): Declare if not defined.
63042         (addext): Work correctly when pathconf returns -1 and leaves
63043         errno alone because there is no limit.  Also, work even if
63044         pathconf returns a value greater than SIZE_MAX.
63045
63046 2001-08-12  Jim Meyering  <meyering@lucent.com>
63047
63048         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
63049         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
63050         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
63051         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
63052         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
63053         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
63054         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
63055         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
63056         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
63057         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
63058         utime.m4, utimes.m4, xstrtoumax.m4:
63059         Quote the first argument in each use of AC_DEFUN.
63060
63061 2001-08-12  Jim Meyering  <meyering@lucent.com>
63062
63063         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
63064         Simply `return getcwd (NULL, 0);'.
63065         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
63066         Use 1300 as initial value for length, not PATH_MAX.
63067
63068         * lib/pathmax.h: Clean up cpp syntax.
63069
63070 2001-08-12  Jim Meyering  <meyering@lucent.com>
63071
63072         * lib/gettimeofday.c: New file.
63073         * lib/gtod.h: New file.
63074         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
63075
63076 2001-08-05  Jim Meyering  <meyering@lucent.com>
63077
63078         * m4/jm-macros.m4: Require autoconf-2.52.
63079
63080 2001-08-04  Jim Meyering  <meyering@lucent.com>
63081
63082         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
63083         stmt, to get in sync with glibc.
63084
63085 2001-08-03  Paul Eggert  <eggert@twinsun.com>
63086
63087         The following changes are from gettext 0.10.39 as maintained by
63088         Bruno Haible.
63089
63090         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
63091         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
63092         with inverted sense.  All uses changed.
63093
63094         * lib/mbswidth.c: Don't include <limits.h>.
63095         Include <stdlib.h> and <string.h> unconditionally.
63096         (iswcntrl, mbsinit, ISCNTRL): New macros.
63097         (mbsnwidth): Use K&R style function declarations.
63098         Don't bother checking for MB_LEN_MAX == 1, since the compiler
63099         can optimize it when MB_CUR_MAX == 1.
63100         The width of control characters is zero, not 1.
63101
63102 2001-08-03  Paul Eggert  <eggert@twinsun.com>
63103
63104         The following changes are from gettext 0.10.39 as maintained by
63105         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
63106
63107         * m4/codeset.m4: Upgrade to serial AM1.
63108         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
63109         all uses changed.  Quote first arg of AC_DEFUN.
63110         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
63111
63112         * m4/iconv.m4: Upgrade to serial AM2.
63113         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
63114         Add --with-libconv-prefix.
63115         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
63116         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
63117         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
63118         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
63119         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
63120
63121         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
63122         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
63123         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
63124         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
63125         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
63126         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
63127         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
63128         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
63129         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
63130
63131         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
63132         string.h any more.
63133
63134         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
63135         not the default value.
63136
63137         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
63138         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
63139         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
63140         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
63141         Also check for iswcntrl, used for wcwidth fallback.
63142         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
63143         to Autoconf 2.13.
63144
63145 2001-08-03  Jim Meyering  <meyering@lucent.com>
63146
63147         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
63148         as it was in the original.  Reported by Paul Eggert.
63149
63150 2001-07-16  Jim Meyering  <meyering@lucent.com>
63151
63152         * m4/gettimeofday.m4: New file.
63153         Prompted by a report from Bernhard Baehr.
63154
63155 2001-07-15  Jim Meyering  <meyering@lucent.com>
63156
63157         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
63158         stuff. Now it's in ../Makefile.cfg.
63159
63160 2001-07-15  Jim Meyering  <meyering@lucent.com>
63161
63162         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
63163         (BUILT_SOURCES): Add unlocked-io.h.
63164         (io_functions): Define.
63165         (unlocked-io.h): New rule.
63166         (DISTCLEANFILES): Add unlocked-io.h.
63167         (all-local): Depend on unlocked-io.h, to ensure it is created.
63168
63169         * lib/unlocked-io.hin: New file
63170
63171         * lib/regex.c: Update from glibc.
63172
63173 2001-07-05  Jim Meyering  <meyering@lucent.com>
63174
63175         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
63176         recommendation.
63177         (libfetish_a_SOURCES): Put all .h files here instead.
63178         Remove a thus-exposed (better checks in automake) duplicate and
63179         two unnecessary .h files.
63180
63181 2001-07-04  Jim Meyering  <meyering@lucent.com>
63182
63183         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
63184         that generates jm-glibc-io.m4 so that it doesn't trigger any make
63185         distcheck failure.
63186
63187 2001-07-02  Jim Meyering  <meyering@lucent.com>
63188
63189         The following changes were prompted by suggestions from Bruno Haible.
63190
63191         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
63192         is now generated.
63193         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
63194         definition of EXTRA_DIST.
63195         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
63196         ensure that the generated file is created/updated whenever the list
63197         of $(unlocked_functions) is changed.
63198         (jm-glibc-io.m4): New rule.
63199         (unlocked-io.h): New rule -- currently unused.
63200
63201 2001-06-24  Jim Meyering  <meyering@lucent.com>
63202
63203         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
63204         unmatched right bracket, rather than kludging it with an extra,
63205         falsely-matching quote in a comment.  Patch by Akim Demaille.
63206
63207 2001-06-11  Jim Meyering  <meyering@lucent.com>
63208
63209         * lib/regex.c: Update from GNU libc.
63210
63211 2001-05-27  Jim Meyering  <meyering@lucent.com>
63212
63213         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
63214         Check for ut_type in struct utmp.
63215
63216 2001-05-27  Jim Meyering  <meyering@lucent.com>
63217
63218         * lib/readutmp.h (UT_TYPE): Define.
63219
63220 2001-05-24  Jim Meyering  <meyering@lucent.com>
63221
63222         * lib/argmatch.c: Include "quote.h".
63223         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
63224         quote function.  Reported by Göran Uddeborg.
63225
63226 2001-05-22  Jim Meyering  <meyering@lucent.com>
63227
63228         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
63229         now that we use the package-supplied version unconditionally.
63230         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
63231
63232 2001-05-21  Jim Meyering  <meyering@lucent.com>
63233
63234         * m4/regex.m4: Change a couple backticks to single quotes to avoid
63235         shell syntax errors.
63236
63237 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
63238
63239         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
63240
63241 2001-05-20  Paul Eggert  <eggert@twinsun.com>
63242
63243         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
63244         Don't bother to check library strftime, since
63245         we'll be using our own my_strftime function anyway.
63246         Define my_strftime instead of strftime.
63247
63248 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
63249
63250         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
63251         which is not yet declared.
63252
63253 2001-05-15  Jim Meyering  <meyering@lucent.com>
63254
63255         * m4/regex.m4: Use proper quoting so brackets appear in the test
63256         program.
63257         Reported by, and with help from, Bruno Haible.
63258
63259 2001-05-13  Jim Meyering  <meyering@lucent.com>
63260
63261         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
63262         undefined.
63263
63264 2001-05-11  Paul Eggert  <eggert@twinsun.com>
63265
63266         dirname code cleanup.  base_name now behaves more compatibly
63267         with POSIX basename when given file names that have trailing
63268         slashes, and similarly for dir_name.  Add new primitives
63269         base_len and dir_len.  Put the directory-name-related decls
63270         into dirname.h.
63271
63272         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
63273         * lib/backupfile.c (base_name): Likewise.
63274         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
63275         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
63276         * lib/makepath.c (strip_trailing_slashes): Likewise.
63277         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
63278         ISSLASH): Likewise.
63279         * lib/rename.c (strip_trailing_slashes): Likewise.
63280         * lib/same.c (base_name): Likewise.
63281         * lib/stripslash.c (ISSLASH): Likewise.
63282
63283         * lib/addext.c: Include <dirname.h> after size_t is defined.
63284         * lib/backupfile.c: Likewise.
63285
63286         * lib/addext.c (addext): Use base_len to trim redundant
63287         trailing slashes instead of doing it ourselves.
63288         But do not trim the last slash if it is not redundant.
63289
63290         * lib/backupfile.c (find_backup_file_name,
63291         max_backup_version): Use base_len instead of rolling it ourselves.
63292         Handle the case of "" and (on DOS) "C:" correctly.
63293
63294         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
63295         needed. Include <string.h>, <dirname.h>.
63296         (base_name): Allow file names ending in slashes, other than names
63297         that are all slashes.  In this case, return the basename followed
63298         by the slashes.  This is more general, and can be used in places
63299         where the original base_name purposely had an assertion failure.
63300         (base_len): New function.
63301
63302         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
63303         Do not include <assert.h>; no longer needed.
63304         Include xalloc.h.
63305         (memrchr): Remove decl.
63306         (dir_name_r): Remove.
63307         (dir_len): Renamed from dirlen.  All callers changed.
63308         Rewrite in terms of base_name, for simplicity and consistency.
63309         (dir_name): Never return NULL.  All callers changed.
63310         Do not include <stdlib.h> in test program; no longer needed.
63311         return 0; is fine for test program.
63312
63313         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
63314         New macros.
63315         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
63316
63317         * lib/path-concat.c (path_concat): Use base_len to compute
63318         base length, not strlen; this means we cannot rely on memcpy
63319         to null-terminate.
63320
63321         * lib/same.c (STREQ): Remove.
63322         (same_name): Handle the case where the basename ends in trailing '/'.
63323
63324         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
63325         a slash was stripped.  Do not strip the last slash after a
63326         file system prefix.
63327
63328 2001-05-11  Paul Eggert  <eggert@twinsun.com>
63329
63330         * lib/Makefile.am (libfetish_a_SOURCES):
63331         Add strftime.c, since we now compile it on all hosts.
63332
63333         * lib/strftime.c (my_strftime):
63334         Define to nstrftime if emacs, but only if my_strftime is not defined.
63335         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
63336         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
63337         Add one more extra argument: a nanoseconds value.
63338         All uses changed.
63339         (ns): New macro.
63340         (my_strftime function): Add %N format.
63341         (emacs_strftimeu): Renamed from emacs_strftime,
63342         with extra ut argument.
63343
63344 2001-05-09  Paul Eggert  <eggert@twinsun.com>
63345
63346         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
63347
63348 2001-04-21  Jim Meyering  <meyering@lucent.com>
63349
63350         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
63351         doesn't interfere.
63352
63353 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
63354
63355         * m4/ftruncate.m4: Check for chsize.
63356         Link with ftruncate.o unconditionally if ftruncate is missing.
63357         This was required when cross-compiling to i586-mingw32msvc.
63358
63359 2001-04-08  Jim Meyering  <meyering@lucent.com>
63360
63361         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
63362         recomputed; that's necessary when the offset spans a DST transition.
63363         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
63364
63365 2001-04-02  Jim Meyering  <meyering@lucent.com>
63366
63367         * lib/regex.h, regex.c: Update from GNU libc.
63368
63369 2001-03-24  Jim Meyering  <meyering@lucent.com>
63370
63371         * m4/jm-macros.m4: Require autoconf-2.49d.
63372
63373 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
63374
63375         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
63376
63377 2001-03-19  Paul Eggert  <eggert@twinsun.com>
63378
63379         * lib/version-etc.c (version_etc_copyright): Update to 2001.
63380
63381 2001-03-17  Jim Meyering  <meyering@lucent.com>
63382
63383         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
63384         now that the version in autoconf is equivalent.
63385         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
63386
63387         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
63388         Suggestion from Akim Demaille.
63389
63390         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
63391         (jm_PREREQ_TEMPNAME): New function.
63392
63393 2001-03-16  Paul Eggert  <eggert@twinsun.com>
63394
63395         * lib/tempname.c (uint64_t): Define to uintmax_t if
63396         not defined, and if UINT64_MAX is not defined.
63397         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
63398         Reported by John David Anglin.
63399
63400 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
63401
63402         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
63403         resolve alias if codeset is empty.
63404         * lib/config.charset (BeOS): Use wildcard syntax.
63405
63406 2001-03-13  Jim Meyering  <meyering@lucent.com>
63407
63408         * lib/path-concat.c (path_concat)
63409         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
63410         concatenating e.g., `C:' and `foo'.
63411         From Bruno Haible.
63412
63413 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
63414
63415         * lib/localcharset.c (locale_charset): Don't use
63416         setlocale(LC_CTYPE,NULL). Don't return NULL.
63417         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
63418
63419 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
63420
63421         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
63422         support for DOS/DJGPP.
63423
63424 2001-03-01  Paul Eggert  <eggert@twinsun.com>
63425
63426         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
63427         lacks mkstemp.  Compile our own tempname.c if we compile our own
63428         mkstemp.c, as mkstemp relies on tempname.
63429
63430 2001-03-01  Jim Meyering  <meyering@lucent.com>
63431
63432         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
63433         AH_VERBATIM really does output its argument verbatim.
63434
63435 2001-02-28  Paul Eggert  <eggert@twinsun.com>
63436
63437         * lib/Makefile.am (libfetish_a_SOURCES):
63438         Add dup-safer.c, fopen-safer.c.
63439         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
63440
63441         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
63442         * lib/unistd-safer.h: New files.
63443
63444 2001-02-25  Paul Eggert  <eggert@twinsun.com>
63445
63446         The mkstemp replacement is taken from glibc 2.2.2, with some
63447         portability fixes for use outside glibc, as follows:
63448
63449         * lib/tempname.c (struct_stat64): New macro.
63450         (direxists, __gen_tempname): Use it.
63451         This avoids a portability problem with Solaris 8.
63452
63453         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
63454         (<stddef.h>, <stdint.h>, <string.h>):
63455         Include only if STDC_HEADERS || _LIBC.
63456         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
63457         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
63458         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
63459         (__set_errno): Define this macro if <errno.h> doesn't.
63460         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
63461         Define these macros if <stdio.h> doesn't.
63462         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
63463         Define these macros if <sys/stat.h>
63464         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
63465         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
63466         __xstat64): Define if not _LIBC.
63467         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
63468         (__gen_tempname): Invoke gettimeofday only if
63469         HAVE_GETTIMEOFDAY || _LIBC;
63470         otherwise, fall back on plain "time".
63471         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
63472
63473         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
63474
63475         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
63476
63477 2001-02-18  Paul Eggert  <eggert@twinsun.com>
63478
63479         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
63480
63481 2001-02-17  Paul Eggert  <eggert@twinsun.com>
63482
63483         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
63484         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
63485         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
63486         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
63487
63488 2001-02-17  Paul Eggert  <eggert@twinsun.com>
63489
63490         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
63491         Remove workaround macros for hosts that have mbrtowc but not
63492         mbstate_t, as we now insist on proper declarations for both
63493         before using mbrtowc.
63494
63495 2001-02-17  Jim Meyering  <meyering@lucent.com>
63496
63497         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
63498         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
63499         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
63500         UnixWare 7.1.1.
63501
63502         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
63503         rather than AC_CACHE_VAL.
63504
63505 2001-02-17  Jim Meyering  <meyering@lucent.com>
63506
63507         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
63508         around included file name.
63509
63510         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
63511
63512         * lib/strftime.c: Update from GNU libc (the only changes were to
63513         comments).
63514
63515 2001-02-17  Jim Meyering  <meyering@lucent.com>
63516
63517         * lib/regex.c: Update from libc.
63518
63519 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
63520
63521         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
63522         clash.
63523
63524 2001-02-16  Paul Eggert  <eggert@twinsun.com>
63525
63526         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
63527         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
63528         Reported by Mark Hounschell via Paul Eggert.
63529
63530 2001-02-07  Jim Meyering  <meyering@lucent.com>
63531
63532         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
63533
63534 2001-02-05  Jim Meyering  <meyering@lucent.com>
63535
63536         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
63537         it includes the patch required for `large file' support with at least
63538         HP-UX's 10.20 /bin/cc.
63539
63540 2001-02-03  Jim Meyering  <meyering@lucent.com>
63541
63542         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
63543         AS_IF, now that it works once again (mysteriously).
63544         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
63545
63546 2001-01-30  Jim Meyering  <meyering@lucent.com>
63547
63548         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
63549         * m4/chown.m4: Rename conftestchown to conftest.chown.
63550         * m4/rename.m4: s/conftestdir/conftest.d1/ and
63551         s/conftestdir2/conftest.d2/.
63552         * m4/utimes.m4: s/conftestdata/conftest.data/
63553         Inspired by Pavel Roskin's change in autoconf.
63554
63555 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
63556
63557         * lib/config.charset: Update for FreeBSD 4.2.
63558
63559 2001-01-27  Jim Meyering  <meyering@lucent.com>
63560
63561         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
63562         a use of AS_IF.
63563         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
63564
63565 2001-01-26  Jim Meyering  <meyering@lucent.com>
63566
63567         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
63568         quotearg.c includes it.
63569
63570 2001-01-26  Jim Meyering  <meyering@lucent.com>
63571
63572         * lib/quotearg.c: Include stddef.h.
63573         * lib/quote.c: Include stddef.h.
63574         Reported by Axel Kittenberger.
63575
63576         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
63577         line in double quotes so that it evokes a better diagnostic.
63578         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
63579         Reported by Axel Kittenberger.
63580
63581 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
63582
63583         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
63584         as if it was a `charset'.
63585
63586 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
63587
63588         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
63589         has const.
63590
63591 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
63592
63593         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
63594         to avoid a warning.  Add back 'const' to inptr.
63595
63596 2001-01-20  Jim Meyering  <meyering@lucent.com>
63597
63598         Be sure that headers are checked before used in code compiled
63599         for the type checks.
63600         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
63601         In place of that, invoke jm_CHECK_ALL_TYPES.
63602         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
63603         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
63604         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
63605         The check for ssize_t was mistakenly run before the test for unistd.h.
63606
63607         The configure-time check for stdbool.h was missing.
63608         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
63609         (jm_PREREQ_HASH): New function.
63610
63611 2001-01-17  Jim Meyering  <meyering@lucent.com>
63612
63613         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
63614         for autoconf-2.49c.
63615         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
63616
63617 2001-01-16  Jim Meyering  <meyering@lucent.com>
63618
63619         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
63620         From Bruno Haible.
63621
63622 2001-01-14  Jim Meyering  <meyering@lucent.com>
63623
63624         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
63625         foo and bar.  Create conftestdir/ in the script, not in the C code.
63626         Remove directories in the script, not in the C code.
63627         Remove conftestdir{,2} before trying to create the directory.
63628         Make the entire configure script fail if the mkdir fails.
63629
63630 2001-01-14  Jim Meyering  <meyering@lucent.com>
63631
63632         * lib/rename.c: New file.  From Volker Borchert.
63633         Include stdlib.h, string.h or strings.h, and xalloc.h.
63634         Use strip_trailing_slashes rather than open-coding it.
63635
63636 2001-01-03  Paul Eggert  <eggert@twinsun.com>
63637
63638         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
63639
63640 2001-01-03  Jim Meyering  <meyering@lucent.com>
63641
63642         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
63643         of local `inptr' to avoid warning with some system declarations of
63644         iconv.
63645
63646 2001-01-02  Volker Borchert  <bt@teknon.de>
63647
63648         * m4/rename.m4: New file.
63649         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
63650
63651 2001-01-01  Jim Meyering  <meyering@lucent.com>
63652
63653         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
63654         even on systems with utmpx.h.  It's necessary for the declaration of
63655         utmp's ut_user member.  Reported by Andreas Jaeger.
63656
63657         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
63658         available. They are required for the declarations of getgrgid and
63659         getpwuid resp.
63660         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
63661         Reported by Andreas Jaeger.
63662
63663 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
63664
63665         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
63666         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
63667         so `make install' also works in VPATH builds.
63668
63669 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
63670
63671         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
63672         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
63673         can be used in subdirectories.
63674
63675 2000-12-29  Paul Eggert  <eggert@twinsun.com>
63676
63677         * lib/modechange.c: Do not assume that mode_t uses the
63678         traditional octal encoding.  E.g. "chmod 1 FOO" should set
63679         the other-execute bit of FOO even if S_IXOTH != 1.
63680
63681         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
63682         WOTH, XOTH, ALLM): New macros.
63683         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
63684          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
63685         Use them.
63686         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
63687         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
63688         (mode_compile):
63689         No need to use uintmax_t; unsigned long is long enough.
63690         Don't bother to get suffix since we don't use it.
63691
63692 2000-12-26  Jim Meyering  <meyering@lucent.com>
63693
63694         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
63695         better with autoheader.
63696
63697 2000-12-24  Jim Meyering  <meyering@lucent.com>
63698
63699         * lib/hash.c (is_prime): Return explicit boolean values.
63700         (hash_get_first): Return NULL to appease Irix5.6's 89.
63701         Reported by Nelson Beebe.
63702
63703 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
63704
63705         * lib/localcharset.c (locale_charset): Add support for Win32.
63706
63707 2000-12-18  Paul Eggert  <eggert@twinsun.com>
63708
63709         * lib/physmem.h, lib/physmem.c: New files.
63710
63711         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
63712         (noinst_HEADERS): Add physmem.h.
63713
63714         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
63715         't' for compatibility with Solaris 8 sort.
63716
63717 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
63718
63719         * lib/config.charset: Add support for BeOS.
63720
63721 2000-12-17  Jim Meyering  <meyering@lucent.com>
63722
63723         * m4/dos.m4 (jm_AC_DOS): New file and macro.
63724         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
63725
63726 2000-12-16  Jim Meyering  <meyering@lucent.com>
63727
63728         This bug had a serious impact on chown: `chown N:M FILE' (for integer
63729         N and M) would have treated it like `chown N:N FILE'.
63730
63731         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
63732
63733 2000-12-16  Jim Meyering  <meyering@lucent.com>
63734
63735         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
63736         SHELLS_FILE to a file name that's useful on djgpp systems.
63737         Include stdlib.h.
63738         (ADDITIONAL_DEFAULT_SHELLS): Define.
63739         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
63740         Based mostly on a patch from Prashant TR.
63741
63742 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
63743
63744         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
63745         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
63746         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
63747
63748 2000-12-08  Andreas Schwab  <schwab@suse.de>
63749
63750         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
63751         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
63752
63753 2000-12-07  Jim Meyering  <meyering@lucent.com>
63754
63755         * lib/stripslash.c (ISSLASH): Define.
63756         (strip_trailing_slashes): Use ISSLASH rather than comparing against
63757         `/'.
63758         From Prashant TR.
63759
63760         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
63761         (dir_name_r): Declare this function as static.
63762         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
63763         manifest itself on a name containing a mix of slashes and
63764         backslashes.
63765         Make this function work with names starting with a DOS-style
63766         drive letter and colon prefix.
63767         (dir_name): Append `.' if necessary.
63768         Based mostly on patches from Prashant TR and Eli Zaretskii.
63769
63770         * lib/dirname.h (dir_name_r): Remove prototype.
63771
63772 2000-12-06  Paul Eggert  <eggert@twinsun.com>
63773
63774         * m4/off_t-format.m4: Remove this file.
63775         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
63776
63777 2000-12-06  Jim Meyering  <meyering@lucent.com>
63778
63779         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
63780         replacement strtoull, we may well need the replacement strtoul, too.
63781         Check for declarations of strtoul and strtoull.
63782         Check for strtol.  Mainly as a cue to cause automake to include
63783         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
63784         Check for limits.h -- strtol.c needs it.
63785
63786 2000-12-05  Jim Meyering  <meyering@lucent.com>
63787
63788         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
63789
63790 2000-12-04  Jim Meyering  <meyering@lucent.com>
63791
63792         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
63793         Also include memory.h, stdlib.h, unistd.h if appropriate.
63794         Reported by Andreas Jaeger (conflicting declaration of malloc).
63795
63796 2000-12-02  Jim Meyering  <meyering@lucent.com>
63797
63798         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
63799         * m4/jm-macros.m4 (jm_MACROS): require it.
63800
63801 2000-12-02  Jim Meyering  <meyering@lucent.com>
63802
63803         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
63804
63805 2000-12-01  Paul Eggert  <eggert@twinsun.com>
63806
63807         * lib/memrchr.c: Include <config.h> before any system include file.
63808
63809 2000-11-30  Jim Meyering  <meyering@lucent.com>
63810
63811         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
63812
63813 2000-11-30  Jim Meyering  <meyering@lucent.com>
63814
63815         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
63816
63817 2000-11-29  Paul Eggert  <eggert@twinsun.com>
63818
63819         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
63820
63821 2000-11-26  Jim Meyering  <meyering@lucent.com>
63822
63823         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
63824
63825 2000-11-22  Paul Eggert  <eggert@twinsun.com>
63826
63827         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
63828         size of (size_t) -1; it's not portable.
63829
63830 2000-11-17  Jim Meyering  <meyering@lucent.com>
63831
63832         * lib/strstr.c: Update from GNU libc.
63833
63834 2000-11-17  Akim Demaille  <akim@epita.fr>
63835
63836         * lib/obstack.h: Formatting changes.
63837         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
63838         prevent type checking.
63839         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
63840         cast the value to (void *): assigning a `foo *' to a `void *'
63841         variable is valid.
63842         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
63843
63844 2000-11-16  Jim Meyering  <meyering@lucent.com>
63845
63846         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
63847
63848 2000-11-11  Jim Meyering  <meyering@lucent.com>
63849
63850         * lib/error.c: Add a couple #includes, merging from GNU libc version.
63851
63852 2000-11-10  Jim Meyering  <meyering@lucent.com>
63853
63854         * lib/obstack.h: Update from GNU libc.
63855         * lib/obstack.c: Likewise.
63856
63857 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
63858
63859         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
63860
63861 2000-11-06  Paul Eggert  <eggert@twinsun.com>
63862
63863         * lib/getusershell.c (setusershell): Use rewind rather than
63864         fseek/fseeko, to avoid configuration hassles with fseeko.
63865         Don't bother opening SHELLS_FILE if shellstream is NULL;
63866         it's not necessary.
63867
63868 2000-11-05  Jim Meyering  <meyering@lucent.com>
63869
63870         * lib/makepath.h (make_dir): Declare.
63871         * lib/makepath.c (make_dir): Remove `static' attribute.
63872         Tweak a comment.
63873
63874 2000-11-04  Jim Meyering  <meyering@lucent.com>
63875
63876         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
63877
63878 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
63879
63880         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
63881         last one in a bucket, advance to the next bucket.
63882
63883 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
63884
63885         * lib/fnmatch.c: Do not comment out all the code if we are using
63886         the GNU C library, because in some cases we are replacing buggy
63887         code in the GNU C library itself.
63888
63889 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
63890
63891         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
63892         (regex_compile): Catch bogus \(\1\).
63893
63894 2000-10-30  Paul Eggert  <eggert@twinsun.com>
63895
63896         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
63897         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
63898         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
63899
63900 2000-10-30  Paul Eggert  <eggert@twinsun.com>
63901
63902         * lib/error.h, getline.h, modechange.h:
63903         Remove "2000" from Copyright line, as the file hasn't been
63904         changed this year other than in the copyright notice.
63905
63906         * lib/xalloc.h: Add "2000" to Copyright line, as this file
63907         was changed this year.
63908
63909 2000-10-29  Jim Meyering  <meyering@lucent.com>
63910
63911         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
63912         renaming.
63913         * m4/ls-mntd-fs.m4: Likewise
63914
63915 2000-10-29  Jim Meyering  <meyering@lucent.com>
63916
63917         * lib/xstat.in: Fix grammar in comment.
63918
63919 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
63920
63921         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
63922         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
63923         doesn't define __restrict_arr.
63924
63925 2000-10-28  Jim Meyering  <meyering@lucent.com>
63926
63927         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
63928         (jm_PREREQ_MEMCHR): New function.
63929
63930 2000-10-28  Jim Meyering  <meyering@lucent.com>
63931
63932         * lib/memchr.c: Update from libc.
63933         Adjust for portability:
63934         [HAVE_STDLIB_H]: Include stdlib.h.
63935         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
63936         Undef __memchr, too.
63937         [!weak_alias]: Define __memchr to memchr.
63938
63939         * lib/regex.c: Update from libc.
63940         * lib/regex.h: Likewise.
63941         * lib/getopt1.c: Likewise.
63942         * lib/memcmp.c: Likewise.
63943
63944         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
63945         Avoid using fseek, when possible -- it's broken by design.
63946         Patch by Ulrich Drepper.
63947
63948 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
63949
63950         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
63951         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
63952         Giving in to popular pressure to shut up the compiler with casts.
63953
63954 2000-10-26  Jim Meyering  <meyering@lucent.com>
63955
63956         * lib/strftime.c: Update from libc.
63957
63958 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
63959
63960         * regex.c: More `unsigned char' -> `re_char' changes.
63961         Also change several `int' into `re_wchar_t'.
63962         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
63963         (PUSH_FAILURE_POINTER): Don't cast any more.
63964         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
63965         We want GCC to complain, since this piece of code makes
63966         re_match non-reentrant, which *should* be fixed.
63967         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
63968         (EXTEND_BUFFER): Use RETALLOC.
63969         (SET_LIST_BIT): Don't cast.
63970         (re_wchar_t): New type.
63971         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
63972         that those two functions will always properly return.
63973         (IMMEDIATE_QUIT_CHECK): Cast to void.
63974         (analyse_first): Use recursion rather than an explicit stack.
63975         (re_compile_fastmap): Can't fail anymore.
63976         (re_search_2): Don't check re_compile_fastmap for failure.
63977         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
63978         Now also sets the new value (passed in a new argument).
63979         (re_match_2_internal): Use it.
63980         Also, use a new var `reg' of type size_t when looping through regs
63981         rather than reuse the inappropriate `mcnt'.
63982
63983 2000-10-25  Jim Meyering  <meyering@lucent.com>
63984
63985         * lib/obstack.c: Update from libc.
63986
63987 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
63988
63989         * regex.c (regex_compile): Change the way of handling a range from
63990         a char less than 256 to a char not less than 256.
63991
63992 2000-10-24  Andrew Innes  <andrewi@gnu.org>
63993
63994         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
63995         NT-Emacs only.
63996         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
63997         so that re_search functions only quit when callers expect them to.
63998
63999 2000-10-23  Jim Meyering  <meyering@lucent.com>
64000
64001         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
64002         wrong.  That set_locale call must not have any side effects.
64003         From Paul Eggert.
64004
64005 2000-10-22  Jim Meyering  <meyering@lucent.com>
64006
64007         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
64008         [CYCLIC]: Remove now-unused definition.
64009
64010         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
64011         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
64012         Suggestion from Ulrich Drepper.
64013
64014 2000-10-21  Jim Meyering  <meyering@lucent.com>
64015
64016         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
64017         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
64018         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
64019
64020 2000-10-21  Jim Meyering  <meyering@lucent.com>
64021
64022         * lib/dirname.c (memrchr): Declare if necessary.
64023         (dir_name): Remove the restriction that there be no
64024         trailing slashes.  Now, this code skips past them, effectively
64025         ignoring them.
64026         [TEST_DIRNAME] (main): New unit tests.
64027
64028         * lib/memrchr.c: New file from GNU libc.
64029         Undef __memrchr, too.
64030         [!weak_alias]: Define __memrchr to memrchr.
64031         Guard weak_alias use with `#ifdef weak_alias'.
64032
64033 2000-10-21  Jim Meyering  <meyering@lucent.com>
64034
64035         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
64036         (dir_name): Use dir_name_r.
64037         * lib/dirname.h (dir_name_r): Declare it.
64038
64039 2000-10-17  Jim Meyering  <meyering@lucent.com>
64040
64041         * lib/quote.h (PARAMS): Define and use.
64042         Reported by Akim Demaille.
64043
64044         * lib/getopt.c: Update from libc.
64045
64046 2000-10-16  Jim Meyering  <meyering@lucent.com>
64047
64048         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
64049         setlocale.
64050         From Jan Fedak.
64051
64052 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
64053
64054         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
64055
64056 2000-09-25  Jim Meyering  <meyering@lucent.com>
64057
64058         * lib/md5.h (rol): Define (from GnuPG).
64059
64060         * lib/sha.c: Give credit (GnuPG) where due.
64061         (M): Use rol rather than open-coding it.
64062         Add a FIXME comment.
64063
64064 2000-09-21  Jim Meyering  <meyering@lucent.com>
64065
64066         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
64067         Reported by Michael Stone.
64068
64069 2000-09-20  Jim Meyering  <meyering@lucent.com>
64070
64071         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
64072         (noinst_HEADERS): Add sha.h.
64073         Based on code from Scott G. Miller and from GnuPG.
64074
64075 2000-09-18  Jim Meyering  <meyering@lucent.com>
64076
64077         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
64078         LIBS. Otherwise, everyone ends up linking with -lelf for some
64079         configurations.
64080         Reported by Mike Stone.
64081
64082 2000-09-15  Jim Meyering  <meyering@lucent.com>
64083
64084         * lib/regex.c: Update from libc.
64085
64086 2000-09-10  Jim Meyering  <meyering@lucent.com>
64087
64088         * lib/getopt.c (_getopt_internal): Update from glibc.
64089
64090 2000-09-09  Jim Meyering  <meyering@lucent.com>
64091
64092         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
64093         think it should be used as a general replacement for isascii.
64094         * lib/fnmatch.c: Likewise.
64095         * lib/mbswidth.c: Likewise
64096         * lib/regex.c: Likewise.
64097
64098         Don't use atoi.
64099         * lib/userspec.c: Include sys/param.h and limits.h.
64100         Include xstrtol.h.
64101         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
64102         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
64103         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
64104         UID, GID.  Check range.
64105
64106 2000-09-06  Jim Meyering  <meyering@lucent.com>
64107
64108         * lib/getopt.c (_getopt_internal): Update from glibc.
64109
64110 2000-08-30  Jim Meyering  <meyering@lucent.com>
64111
64112         * lib/strftime.c: Merge in changes from GNU libc.
64113
64114 2000-08-26  Jim Meyering  <meyering@lucent.com>
64115
64116         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
64117         * m4/fpending.m4: New file.
64118
64119 2000-08-26  Jim Meyering  <meyering@lucent.com>
64120
64121         * lib/closeout.c: Include "__fpending.h".
64122         (close_stdout_status): Return right away if there's nothing to flush.
64123
64124         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
64125         * lib/__fpending.c: New file.
64126         * lib/__fpending.h: New file.
64127
64128 2000-08-20  Jim Meyering  <meyering@lucent.com>
64129
64130         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
64131         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
64132         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
64133
64134 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
64135
64136         Improve fileutils installation on systems where running
64137         programs (like install) can't be unlinked.
64138         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
64139         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
64140
64141 2000-08-07  Paul Eggert  <eggert@twinsun.com>
64142
64143         Standardize on "memory exhausted" instead of "Memory exhausted"
64144         or "virtual memory exhausted".
64145         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
64146         "virtual memory exhausted".
64147         * lib/same.c (same_name): Invoke xalloc_die instead of printing
64148         our own message.
64149         * lib/userspec.c (parse_user_spec): Likewise.
64150         * lib/bumpalloc.h: comment fix
64151         * lib/same.c, userspec.c: Include xalloc.h.
64152
64153         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
64154         not char *const and pointing to a constant array.
64155         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
64156         (xrealloc): Comment fix.
64157
64158         * lib/userspec.c (parse_user_spec):
64159         Don't translate a message until just before returning,
64160         to avoid unnecessary translation.
64161
64162 2000-08-07  Jim Meyering  <meyering@lucent.com>
64163
64164         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
64165         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
64166         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
64167         getgroups.c, gethostname.c, getopt.h, group-member.c,
64168         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
64169         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
64170         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
64171         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
64172         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
64173         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
64174         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
64175         yesno.c: Back out Copyright date changes for each file with no change
64176         this year.  This eases coordination with other programs using the same
64177         source code modules.  From Paul Eggert.
64178
64179 2000-08-06  Paul Eggert  <eggert@twinsun.com>
64180
64181         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
64182         not char, for compatibility with glibc 2.1.3 strftime.c.
64183
64184 2000-08-03  Greg McGary  <greg@mcgary.org>
64185
64186         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
64187         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
64188         (EXTEND_BUFFER): Use them.
64189
64190 2000-08-01  Jim Meyering  <meyering@lucent.com>
64191
64192         * lib/dirname.c (ISSLASH): Define.
64193         (BACKSLASH_IS_PATH_SEPARATOR): Define.
64194         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
64195         both `\' and `/' may be use as path separators.
64196         Based on a patch from Prashant TR.
64197
64198 2000-07-31  Paul Eggert  <eggert@twinsun.com>
64199
64200         * lib/quotearg.c (quotearg_n_options): Don't make the initial
64201         slot vector a constant, since it might get modified.
64202
64203 2000-07-31  Jim Meyering  <meyering@lucent.com>
64204
64205         * lib/xmalloc.c: Use `virtual memory exhausted', not
64206         `Memory exhausted'.
64207         * lib/obstack.c (print_and_abort): Likewise.
64208
64209 2000-07-30  Paul Eggert  <eggert@twinsun.com>
64210
64211         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
64212         buffer, so that the caller can always quote one small
64213         component of a "memory exhausted" message in slot 0.
64214         From a suggestion by Jim Meyering.
64215
64216 2000-07-30  Jim Meyering  <meyering@lucent.com>
64217
64218         * lib/makepath.c (make_path): Quote the other instance, too.
64219
64220         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
64221         (STATIC_BUF_SIZE): Define.
64222         (quotearg_n_options): Use only statically allocated storage when
64223         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
64224         than STATIC_BUF_SIZE.
64225
64226 2000-07-29  Jim Meyering  <meyering@lucent.com>
64227
64228         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
64229         * lib/dirname.c (dir_name): Likewise.
64230
64231         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
64232         `/'.
64233
64234         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
64235         (dir_name): Assert that there are no trailing slashes.
64236
64237 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
64238
64239         * lib/mbswidth.h (mbswidth): Add a flags argument.
64240         (mbswidth): New declaration.
64241         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
64242         * lib/mbswidth.c (mbswidth): Add a flags argument.
64243         (mbsnwidth): New function.
64244
64245 2000-07-24  Jim Meyering  <meyering@lucent.com>
64246
64247         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
64248
64249 2000-07-23  Paul Eggert  <eggert@twinsun.com>
64250
64251         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
64252
64253 2000-07-23  Paul Eggert  <eggert@twinsun.com>
64254
64255         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
64256         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
64257         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
64258         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
64259         invoke multibyte primitives.
64260
64261 2000-07-23  Paul Eggert  <eggert@twinsun.com>
64262
64263         * lib/quotearg.c:
64264         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
64265         so that mbstate_t is always defined.
64266
64267         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
64268         be 1 in at least one GCC installation, and this configuration
64269         error is likely to be common.  Ignoring MB_LEN_MAX hurts
64270         performance on hosts that have mbrtowc but have only unibyte
64271         locales, but I assume these hosts are rare.
64272
64273 2000-07-23  Paul Eggert  <eggert@twinsun.com>
64274
64275         * lib/mbswidth.c (_XOPEN_SOURCE):
64276         Don't define; this causes problems on Solaris 7.
64277         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
64278
64279 2000-07-23  Jim Meyering  <meyering@lucent.com>
64280
64281         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
64282         too: getgrgid, getpwuid, getuid.
64283
64284 2000-07-23  Jim Meyering  <meyering@lucent.com>
64285
64286         * lib/basename.c (base_name): Add an assertion.
64287
64288 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
64289
64290         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
64291         shadow its mbsinit function.
64292
64293 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
64294
64295         * lib/mbswidth.h: New file.
64296         * lib/mbswidth.c: New file.
64297         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
64298         (noinst_HEADERS): Add mbswidth.h.
64299
64300 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
64301
64302         * lib/config.charset: Add support for FreeBSD. Improve support for
64303         HP-UX and IRIX 6.
64304
64305 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
64306
64307         * m4/mbswidth.m4: New file.
64308         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
64309
64310 2000-07-15  Jim Meyering  <meyering@lucent.com>
64311
64312         * lib/makepath.c: Include quote.h.
64313         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
64314         corresponding argument in a `quote (...)' call.
64315         Give better diagnostics.
64316
64317         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
64318         (noinst_HEADERS): Add quote.h.
64319
64320         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
64321         from tar's src/misc.c.
64322         * lib/quote.h: New file.  Prototypes for same.
64323
64324 2000-07-14  Paul Eggert  <eggert@twinsun.com>
64325
64326         From a suggestion by Bruno Haible.
64327         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
64328         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
64329         to decide whether to define the BeOS workaround macro;
64330         this adjusts to the change to AC_MBSTATE_T.
64331
64332 2000-07-14  Jim Meyering  <meyering@lucent.com>
64333
64334         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
64335         jm_AC_TYPE_UINTMAX_T.
64336
64337 2000-07-13  Paul Eggert  <eggert@twinsun.com>
64338
64339         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
64340
64341         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
64342         quotearg_buffer_restyled): Add support for
64343         clocale_quoting_style.  Undo previous change to
64344         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
64345         and "{RIGHT QUOTATION MARK}" msgids.
64346
64347 2000-07-10  Paul Eggert  <eggert@twinsun.com>
64348
64349         From a suggestion by Bruno Haible.
64350         * m4/mbstate_t.m4 (AC_MBSTATE_T):
64351         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
64352         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
64353         and mbstate_t, to a single-part test that simply defines mbstate_t.
64354         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
64355         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
64356
64357 2000-07-10  Jim Meyering  <meyering@lucent.com>
64358
64359         * m4/strerror_r.m4: Mirror the correction made in autoconf.
64360
64361         * m4/gnu-source.m4: Output to confdefs.h directly.
64362         Suggestion from Akim Demaille.
64363
64364 2000-07-09  Paul Eggert  <eggert@twinsun.com>
64365
64366         The old behavior of quoting `like this' doesn't look good with
64367         newer, ISO-style fonts.  See:
64368         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
64369
64370         Instead, quote "like this" by default.  Let the translator
64371         tailor the locale-specific quoting behavior by providing
64372         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
64373
64374         * lib/quotearg.c (N_): New macro.
64375         (gettext_default): New function.
64376         (quotearg_buffer_restyled): Use
64377         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
64378         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
64379
64380 2000-07-09  Jim Meyering  <meyering@lucent.com>
64381
64382         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
64383         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
64384
64385         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
64386         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
64387
64388 2000-07-09  Jim Meyering  <meyering@lucent.com>
64389
64390         * lib/Most files: Update copyright dates to include 2000.
64391
64392 2000-07-08  Jim Meyering  <meyering@lucent.com>
64393
64394         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
64395         if not defined.
64396         (xgethostname): Remove now-unnecessary #ifdef.
64397         Move declaration of `err' into loop where it's used.
64398
64399 2000-07-05  Paul Eggert  <eggert@twinsun.com>
64400         and Bruno Haible  <haible@clisp.cons.org>
64401
64402         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
64403         only if the test for an object-type mbstate_t fails.  This
64404         prevents us from mistakenly reporting that mbstate_t is a
64405         system object type after we "#define mbstate_t int" to work
64406         around its lack.
64407
64408 2000-07-05  Paul Eggert  <eggert@twinsun.com>
64409         and Bruno Haible  <haible@clisp.cons.org>
64410
64411         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
64412
64413 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
64414
64415         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
64416         to strerror_r.
64417         Include <ctype.h> for use of isalpha.
64418
64419 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
64420
64421         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
64422         by allocating a larger buffer. Test the gethostname return value for
64423         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
64424         returns an error and ENAMETOOLONG isn't defined.
64425
64426 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
64427
64428         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
64429         dimension.
64430
64431 2000-07-04  Jim Meyering  <meyering@lucent.com>
64432
64433         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
64434         of the deprecated AC_CHECKING.
64435
64436 2000-07-04  Jim Meyering  <meyering@lucent.com>
64437
64438         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
64439         Reported by Bruno Haible.
64440
64441 2000-07-04  Jim Meyering  <meyering@lucent.com>
64442
64443         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
64444         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
64445         lacks mbrtowc.
64446
64447 2000-07-03  Paul Eggert  <eggert@twinsun.com>
64448
64449         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
64450         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
64451
64452 2000-07-03  Paul Eggert  <eggert@twinsun.com>
64453         and Bruno Haible  <haible@clisp.cons.org>
64454
64455         * lib/quotearg.c (mbrtowc):
64456         Assign to *pwc, and return 1 only if result is nonzero.
64457         (iswprint): Use ISPRINT when substituting our own mbrtowc.
64458
64459 2000-07-03  Jim Meyering  <meyering@lucent.com>
64460
64461         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
64462
64463 2000-07-03  Jim Meyering  <meyering@lucent.com>
64464
64465         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
64466         This is necessary to get a definition of e.g., UTMP_FILE on
64467         HP-UX 10.20.
64468         From Bob Proulx.
64469
64470 2000-07-02  Jim Meyering  <meyering@lucent.com>
64471
64472         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
64473
64474         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
64475         AC_LIBOBJ(function_name).
64476         * m4/chown.m4: Likewise.
64477         * m4/fnmatch.m4: Likewise.
64478         * m4/ftruncate.m4: Likewise.
64479         * m4/getgroups.m4: Likewise.
64480         * m4/getline.m4: Likewise.
64481         * m4/group-member.m4: Likewise.
64482         * m4/jm-macros.m4: Likewise.
64483         * m4/lstat.m4: Likewise.
64484         * m4/malloc.m4: Likewise.
64485         * m4/memcmp.m4: Likewise.
64486         * m4/nanosleep.m4: Likewise.
64487         * m4/putenv.m4: Likewise.
64488         * m4/realloc.m4: Likewise.
64489         * m4/regex.m4: Likewise.
64490         * m4/stat.m4: Likewise.
64491         * m4/strftime.m4: Likewise.
64492
64493 2000-07-02  Jim Meyering  <meyering@lucent.com>
64494
64495         * lib/quotearg.c (mbstate_t): Don't define here.
64496
64497 2000-07-02  Jim Meyering  <meyering@lucent.com>
64498
64499         * lib/nanosleep.c (SIGCONT): Define if not already defined.
64500
64501 2000-07-01  Jim Meyering  <meyering@lucent.com>
64502
64503         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
64504
64505 2000-07-01  Jim Meyering  <meyering@lucent.com>
64506
64507         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
64508         problem.
64509
64510 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
64511
64512         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
64513         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
64514
64515 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
64516
64517         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
64518         per change in ../m4/ls-mntd-fs.m4.
64519         (read_filesystem_list): Ignore symbolic links.
64520
64521 2000-06-29  Jim Meyering  <meyering@lucent.com>
64522
64523         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
64524         for declaration of strcmp.
64525
64526         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
64527
64528         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
64529         Avoid warning by casting result to `char *' to remove `const'.
64530
64531 2000-06-28  Jim Meyering  <meyering@lucent.com>
64532
64533         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
64534         included by quotearg.c, for which we perform this test.  From
64535         Bruno Haible.
64536
64537 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
64538
64539         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
64540         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
64541         <utmpx.h> exists, put readutmp.o into LIBOBJS.
64542
64543 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
64544
64545         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
64546
64547 2000-06-26  Paul Eggert  <eggert@twinsun.com>
64548
64549         savedir now sets errno on failure and invokes xmalloc to get memory.
64550         Fix a couple of other minor bugs while we're at it.
64551
64552         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
64553         (NAMLEN): Remove macro.
64554         (malloc, realloc): Remove decls.
64555         (stpcpy): Likewise.
64556         ("xalloc.h"): Include.
64557         (NAME_SIZE_DEFAULT): New macro.
64558         (savedir): Use xmalloc / xrealloc to allocate memory.
64559         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
64560         Skip "" directory entries.
64561         Use strlen to calculate directory entry length, since the old method
64562         is rarely used these days and isn't worth supporting.
64563         Don't use a pointer after freeing it.
64564         Check for integer overflow when calculating allocation size.
64565         Use memcpy to copy entries, instead of stpcpy.
64566         Set errno properly when returning NULL.
64567         Check for readdir error.
64568
64569 2000-06-26  Jim Meyering  <meyering@lucent.com>
64570
64571         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
64572
64573 2000-06-25  Jim Meyering  <meyering@lucent.com>
64574
64575         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
64576         Linux header bug when _XOPEN_SOURCE is defined to 500.
64577
64578 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
64579
64580         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
64581         deficiency.
64582
64583 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
64584
64585         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
64586         Include xalloc.h.
64587         Don't include <stdlib.h>.  Don't declare malloc, realloc.
64588
64589 2000-06-24  Jim Meyering  <meyering@lucent.com>
64590
64591         * m4/strerror_r.m4: Revive this file -- to try out an experimental
64592         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
64593         for which strerror does return char*, but which lacks a conveniently
64594         accessible declaration of the function.  If the compile-test says
64595         strerror_r doesn't work, then resort to a `run'-test that works on
64596         BeOS and segfaults on DEC Unix.
64597
64598 2000-06-24  Jim Meyering  <meyering@lucent.com>
64599
64600         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
64601
64602 2000-06-23  Paul Eggert  <eggert@twinsun.com>
64603
64604         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
64605         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
64606
64607 2000-06-23  Paul Eggert  <eggert@twinsun.com>
64608
64609         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
64610         (mbrtowc, mbstate_t): Define substitutes if
64611         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
64612         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
64613         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
64614
64615 2000-06-23  Jim Meyering  <meyering@lucent.com>
64616
64617         * m4/afs.m4: Add missing AC_MSG_RESULT.
64618         Reported by Bruno Haible.
64619
64620         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
64621         Suggestion from Bruno Haible.
64622
64623 2000-06-23  Jim Meyering  <meyering@lucent.com>
64624
64625         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
64626
64627 2000-06-21  Jim Meyering  <meyering@lucent.com>
64628
64629         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
64630
64631 2000-06-21  Jim Meyering  <meyering@lucent.com>
64632
64633         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
64634         (noinst_HEADERS): Add getstr.h.
64635
64636         * lib/getline.c (getstr): Move into a separate file.
64637         * lib/getstr.c (getstr): New file, extracted from getline.c, with
64638         the following changes: new parameter, delim2; both delim[12]
64639         parameters have type `int', not `char'.  The latter would lose
64640         with 8-bit delimiters.
64641         * lib/getstr.h: New file.
64642
64643 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64644
64645         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
64646         than 1024, return a memory chunk of least possible size, instead
64647         of size PATH_MAX + 2. In the loop, increment the size proportionally.
64648         Use free/xmalloc instead of xrealloc to avoid copying for very long
64649         paths.
64650
64651 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64652
64653         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
64654         the empty string.
64655
64656 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
64657
64658         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
64659         address, not strdup.  Include <stdlib.h> and don't declare free().
64660
64661 2000-06-19  Jim Meyering  <meyering@lucent.com>
64662
64663         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
64664
64665 2000-06-18  Jim Meyering  <meyering@lucent.com>
64666
64667         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
64668
64669         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
64670         `checking whether...' message to be consistent with that of the
64671         lstat test.
64672
64673 2000-06-18  Jim Meyering  <meyering@lucent.com>
64674
64675         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
64676         Besides, these days every porting target provides a mkdir function.
64677
64678         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
64679         needed. (this snippet comes from src/system.h).
64680
64681 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
64682
64683         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
64684
64685 2000-06-15  Paul Eggert  <eggert@twinsun.com>
64686
64687         * lib/human.c (adjust_value): New function.
64688         (human_readable_inexact): Apply rounding style even when
64689         printing approximate values.
64690
64691 2000-06-14  Paul Eggert  <eggert@twinsun.com>
64692
64693         * lib/human.c (human_readable_inexact): Allow an input block
64694         size that is not a multiple of the output block size, and vice versa.
64695         Reported by Piergiorgio Sartor.
64696
64697 2000-06-14  Paul Eggert  <eggert@twinsun.com>
64698
64699         * lib/getdate.y (get_date): Apply relative times after time
64700         zone indicator, not before.  Reported by Todd A. Jacobs.
64701
64702 2000-06-13  Jim Meyering  <meyering@lucent.com>
64703
64704         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
64705
64706         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
64707
64708 2000-06-12  Paul Eggert  <eggert@twinsun.com>
64709
64710         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
64711
64712 2000-06-12  Jim Meyering  <meyering@lucent.com>
64713
64714         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
64715         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
64716         optional argument.
64717         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
64718         the optional argument, `lib'.
64719
64720 2000-06-08  Jim Meyering  <meyering@lucent.com>
64721
64722         * m4/largefile.m4: Remove file (now that it's part of autoconf).
64723
64724 2000-06-04  Paul Eggert  <eggert@twinsun.com>
64725
64726         Rewrite largefile configuration so that we don't need to run
64727         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
64728         AC_CANONICAL_HOST in configure.in -- jmm]
64729
64730         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
64731         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
64732         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
64733         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
64734         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
64735         All uses changed.
64736         Instead of inspecting the output of getconf, try to compile the
64737         test program without and with the macro definition.
64738         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
64739         for getconf.  Instead, check for the needed flags by compiling
64740         test programs.
64741
64742 2000-06-04  Paul Eggert  <eggert@twinsun.com>
64743
64744         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
64745
64746 2000-06-04  Jim Meyering  <meyering@lucent.com>
64747
64748         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
64749         SunOS 4.1.4 for which gid_t is an unsigned type.
64750
64751 2000-06-03  Jim Meyering  <meyering@lucent.com>
64752
64753         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
64754         now that autoconf requires that.
64755
64756         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
64757         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
64758         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
64759
64760 2000-06-03  Jim Meyering  <meyering@lucent.com>
64761
64762         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
64763
64764 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
64765
64766         * m4/glibc21.m4: New file.
64767         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
64768
64769 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
64770
64771         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
64772         newer, don't install charset.alias.
64773         * lib/config.charset: Change the Linux/glibc rules so they become empty
64774         on glibc-2.1 or newer.
64775
64776 2000-06-02  Jim Meyering  <meyering@lucent.com>
64777
64778         * lib/mountlist.c: Back out last change.  Instead, do this...
64779         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
64780         me_dummy member using the same `ignore'-testing code.
64781         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
64782         fs_type strings.
64783         From Mark D. Roth.
64784
64785 2000-05-29  Jim Meyering  <meyering@lucent.com>
64786
64787         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
64788         mounts with the `ignore' attribute.  Based on a patch from
64789         Mark D. Roth.
64790
64791 2000-05-28  Jim Meyering  <meyering@lucent.com>
64792
64793         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
64794         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64795         * m4/stat.m4: Likewise.
64796         * m4/lstat.m4: Likewise.
64797         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
64798
64799         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
64800         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
64801
64802 2000-05-26  Jim Meyering  <meyering@lucent.com>
64803
64804         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
64805
64806 2000-05-24  Jim Meyering  <meyering@lucent.com>
64807
64808         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
64809         autoconf requires that.
64810         * m4/lib-check.m4: Likewise.
64811         * m4/jm-macros.m4: Likewise.
64812         * m4/strftime.m4: Likewise.
64813
64814         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
64815         AC_CHECK_DECLS, now that autoconf requires that.
64816
64817 2000-05-22  Jim Meyering  <meyering@lucent.com>
64818
64819         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
64820         * m4/lstat.m4: Likewise.
64821
64822 2000-05-22  Jim Meyering  <meyering@lucent.com>
64823
64824         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
64825
64826 2000-05-20  Jim Meyering  <meyering@lucent.com>
64827
64828         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
64829         (jm_PREREQ): Use it.
64830
64831 2000-05-18  Jim Meyering  <meyering@lucent.com>
64832
64833         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
64834         back, too, since it may have been modified by allocate_entry.
64835         (hash_delete): Rewrite to use neither the assignment operator
64836         nor the comma operator in an if-expression.
64837
64838 2000-05-15  Paul Eggert  <eggert@twinsun.com>
64839
64840         * lib/closeout.c:
64841         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
64842         Remove; no longer needed.
64843         "quotearg.h": Add include.
64844         (file_name): Do not bother to explicitly initialize to NULL; it's less
64845         efficient on some hosts.
64846         (close_stdout_status): Remove test as to whether stdout was already
64847         closed; it breaks for the case "echo x | sort >&-".
64848         Quote file name colons.
64849         Do not assume that _("write error") lacks format strings.
64850
64851 2000-05-15  Jim Meyering  <meyering@lucent.com>
64852
64853         * lib/version-etc.c (version_etc_copyright): Update the copyright
64854         string used in all --version output.
64855
64856 2000-05-14  Jim Meyering  <meyering@lucent.com>
64857
64858         * lib/closeout.c (close_stdout_set_file_name): New function.
64859         (close_stdout_status): Use new file-scoped global.
64860         Return right away if fstat says the stdout file descriptor is invalid.
64861         * lib/closeout.h (close_stdout_set_file_name): Declare.
64862
64863 2000-05-10  Jim Meyering  <meyering@lucent.com>
64864
64865         * lib/closeout.c [default_exit_status]: New file-scoped variable.
64866         (close_stdout_set_status): New function.
64867         * lib/closeout.h (close_stdout_set_status): Declare.
64868
64869 2000-05-09  Jim Meyering  <meyering@lucent.com>
64870
64871         * m4/gettext.m4: Rename this...
64872         * m4/libintl.m4: ...to this.
64873
64874 2000-05-08  Jim Meyering  <meyering@lucent.com>
64875
64876         * lib/long-options.c: Don't include closeout.h.
64877         (parse_long_options): Don't call close_stdout for --version.
64878
64879 2000-05-06  Paul Eggert  <eggert@twinsun.com>
64880
64881         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
64882         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
64883         2.1.3 bug.  This avoids a clash when files like regex.c define
64884         _GNU_SOURCE.
64885
64886 2000-05-06  Jim Meyering  <meyering@lucent.com>
64887
64888         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
64889         (AC_REPLACE_FUNCS): Add strnlen.
64890
64891         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
64892         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
64893
64894         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
64895         AC_SEARCH_LIBS call for nanosleep.
64896         (LIB_NANOSLEEP): Set and AC_SUBST.
64897
64898 2000-05-06  Jim Meyering  <meyering@lucent.com>
64899
64900         * lib/strnlen.c: Undefine __strnlen and strnlen.
64901         [!weak_alias]: Define __strnlen to strnlen.
64902
64903         * lib/atexit.c: New file, from libiberty.
64904
64905 2000-05-06  Jim Meyering  <meyering@lucent.com>
64906
64907         * lib/closeout.c (close_stdout_status): Also check for errors on the
64908         stderr stream.
64909
64910 2000-05-05  Jim Meyering  <meyering@lucent.com>
64911
64912         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
64913         AC_SEARCH_LIBS call for clock_gettime.
64914         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
64915
64916         * m4/search-libs.m4: Update from autoconf.
64917
64918         su doesn't work on Solaris 2.6.
64919         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
64920         <shadow.h>.  Reported by Dragos Harabor.
64921
64922 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
64923
64924         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
64925         memcpy instead of xmalloc, xrealloc, path_concat.
64926         (locale_charset): Treat empty environment variables as absent.
64927         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
64928
64929 2000-05-04  Jim Meyering  <meyering@lucent.com>
64930
64931         * lib/getopt.c: Update from glibc.
64932         * lib/obstack.c: Likewise.
64933         * lib/obstack.h: Likewise.
64934         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
64935         file
64936
64937         * lib/regex.h: Likewise.
64938         * lib/strndup.c: Likewise.
64939         * lib/strnlen.c: New file, from glibc.
64940
64941 2000-05-03  Jim Meyering  <meyering@lucent.com>
64942
64943         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
64944
64945 2000-05-02  Paul Eggert  <eggert@twinsun.com>
64946
64947         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
64948         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
64949         compile-time test, rather than inspecting host and OS, to
64950         decide whether to define _LARGEFILE_SOURCE.
64951
64952 2000-05-01  Jim Meyering  <meyering@lucent.com>
64953
64954         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
64955
64956         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
64957         Based on a patch from Bruno Haible.
64958
64959 2000-05-01  Jim Meyering  <meyering@lucent.com>
64960
64961         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
64962
64963 2000-04-29  Jim Meyering  <meyering@lucent.com>
64964
64965         * lib/path-concat.c: Declare strdup only if it's not defined.
64966         * lib/canon-host.c: Likewise.
64967
64968 2000-04-28  Jim Meyering  <meyering@lucent.com>
64969
64970         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
64971         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
64972         is included first, then limits.h is included by locale.h by libintl.h.
64973         From John David Anglin.
64974
64975 2000-04-25  Jim Meyering  <meyering@lucent.com>
64976
64977         * lib/makepath.c (S_IRWXUGO): Define.
64978         (make_path): Always perform explicit chmod if MODE specifies any
64979         of the `special' permission bits.  Prompted by a bug report against
64980         install from Mate Wierdl and Joost van Baal.
64981
64982 2000-04-18  Jim Meyering  <meyering@lucent.com>
64983
64984         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
64985         (jm_PREREQ): Use it.
64986
64987 2000-04-18  Jim Meyering  <meyering@lucent.com>
64988
64989         * lib/README: New file.
64990
64991         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
64992         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
64993
64994 2000-04-17  Jim Meyering  <meyering@lucent.com>
64995
64996         Get it right :-)
64997         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
64998         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
64999         Suggestion from Akim Demaille.
65000
65001 2000-04-17  Jim Meyering  <meyering@lucent.com>
65002
65003         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
65004         the definition of it to rpl_strftime also defined-away the system's
65005         declaration.
65006
65007 2000-04-15  Jim Meyering  <meyering@lucent.com>
65008
65009         Use `C' to denote so-called `contiguous' files, the same way
65010         that tar does.
65011         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
65012         (ftypelet): Use S_ISCTG.
65013         From Michael Deutschmann.
65014
65015 2000-04-14  Jim Meyering  <meyering@lucent.com>
65016
65017         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
65018         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
65019         clobbered.
65020
65021 2000-04-14  Jim Meyering  <meyering@lucent.com>
65022
65023         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
65024
65025 2000-04-13  Jim Meyering  <meyering@lucent.com>
65026
65027         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
65028         AH_VERBATIM to insert required #ifndef into config.h.in.
65029         Suggestion from Akim Demaille.
65030
65031 2000-04-12  Jim Meyering  <meyering@lucent.com>
65032
65033         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
65034         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
65035         Christian Krackowizer.
65036
65037         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
65038         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
65039         (AC_SYS_LARGEFILE): Require.
65040         (AM_C_PROTOTYPES): Require.
65041
65042 2000-04-08  Jim Meyering  <meyering@lucent.com>
65043
65044         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
65045         names don't conflict.  Reported by Eli Zaretskii.
65046
65047 2000-04-07  Jim Meyering  <meyering@lucent.com>
65048
65049         * lib/putenv.c: Move inclusion of errno.h so it follows that of
65050         sys/types.h, to work around system header problems on AIX 3.2.5.
65051         From Bruno Haible.
65052
65053 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
65054
65055         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
65056         bug.  Deal with the different error behavior of Irix iconv.
65057
65058 2000-04-05  Paul Eggert  <eggert@twinsun.com>
65059
65060         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
65061         IRIX if the installer said otherwise.
65062
65063 2000-04-05  Jim Meyering  <meyering@lucent.com>
65064
65065         Portability tweaks required for ultrix4.3.
65066         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
65067         (jm_CHECK_DECLS): Add getutent to the list of functions.
65068         (_jm_DECL_HEADERS): Add utmpx.h.
65069         From John David Anglin.
65070
65071         * m4/strftime.m4: Back out the 2000-04-02 change.
65072         Instead of that change, simply undefine putenv in the test program.
65073
65074 2000-04-05  Jim Meyering  <meyering@lucent.com>
65075
65076         Portability tweaks required for ultrix4.3.
65077         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
65078         getutent.
65079         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
65080         * lib/canon-host.c: Declare strdup.
65081         * lib/path-concat.c: Likewise.
65082         From John David Anglin.
65083
65084 2000-04-04  Jim Meyering  <meyering@lucent.com>
65085
65086         Be more DOS 8.3-friendly.
65087         * lib/ref-add.sin: Renamed from ref-add.sed.in.
65088         * lib/ref-del.sin: Renamed from ref-del.sed.in.
65089         * lib/Makefile.am: Reflect renaming.
65090         Reported by Eli Zaretskii.
65091
65092         Use a temporary file name that won't clash with `charset.alias'
65093         in the DOS 8.3 name space.
65094         * lib/Makefile.am (charset_tmp): Define.
65095         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
65096         (uninstall-local): Likewise.
65097         Reported by Eli Zaretskii.
65098
65099 2000-04-03  Jim Meyering  <meyering@lucent.com>
65100
65101         * m4/gettext.m4: Fix typo in comment.
65102
65103         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
65104         textutils/configure.in).  Suggestion from Paul Eggert.
65105         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
65106
65107 2000-04-02  Paul Eggert  <eggert@twinsun.com>
65108
65109         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
65110         variable in the shell rather than using putenv, which isn't
65111         portable.  This avoids the configure-time inter-test dependency
65112         on the potentially-renamed putenv function.
65113
65114 2000-03-30  Paul Eggert  <eggert@twinsun.com>
65115
65116         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
65117         before checking struct stat.st_blksize, so that
65118         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
65119
65120 2000-03-29  Paul Eggert  <eggert@twinsun.com>
65121
65122         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
65123         since strftime.c uses HAVE_STRFTIME to decide whether to use
65124         the underlying strftime.
65125
65126 2000-03-29  Paul Eggert  <eggert@twinsun.com>
65127
65128         * lib/time/strftime.c (my_strftime): Make sure we call the system
65129         strftime, not ourselves, when invoking the underlying strftime.
65130
65131 2000-03-24  Jim Meyering  <meyering@lucent.com>
65132
65133         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
65134         (charset_alias): Define.
65135         (install-exec-local): Factor out common code.
65136         (uninstall-local): Split lines longer than 80.
65137         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
65138         (SUFFIXES): Define.
65139         (.sed.in.sed): New rule.  Don't redirect directly to $@.
65140         (CLEANFILES): Add ref-add.sed and ref-del.sed.
65141
65142 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
65143
65144         * lib/config.charset: Output a line containing "Packages using this
65145         file".
65146         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
65147         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
65148         ref-del.sed): New rules.
65149
65150 2000-03-17  Jim Meyering  <meyering@lucent.com>
65151
65152         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
65153         Otherwise, include <strings.h>
65154
65155 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
65156
65157         * lib/unicodeio.c (utf8_wctomb): New function.
65158         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
65159         format instead of in UCS-4 with platform dependent endianness.
65160
65161 2000-03-10  Jim Meyering  <meyering@lucent.com>
65162
65163         * m4/lib-check.m4: Look for getspnam in -lgen, too.
65164         From Marco Franzen.
65165
65166 2000-03-07  Paul Eggert  <eggert@twinsun.com>
65167
65168         * lib/savedir.c (savedir): Work even if directory size is
65169         negative; this can happen with some screwy NFS configurations.
65170
65171 2000-03-06  Jim Meyering  <meyering@lucent.com>
65172
65173         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
65174         if it's NULL (because we ran out of memory).  From Bruno Haible.
65175
65176 2000-03-05  Jim Meyering  <meyering@lucent.com>
65177
65178         * lib/localcharset.c ("path-concat.h"): Include.
65179         (get_charset_aliases): Use path_concat instead of ANSI string
65180         concatenation.
65181
65182         * lib/unicodeio.h (PARAMS): Define.
65183         Use it to guard prototype.
65184
65185 2000-03-04  Jim Meyering  <meyering@lucent.com>
65186
65187         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
65188         for lib/localcharset.c.
65189
65190 2000-03-04  Jim Meyering  <meyering@lucent.com>
65191
65192         * lib/Makefile.am (install-exec-local): Create $(libdir) before
65193         installing into it.
65194         (uninstall-local): Uncomment this rule so `make distcheck' works
65195         once again.
65196
65197         * lib/unicodeio.c (<errno.h>): Include it.
65198         (errno): Declare if not defined.
65199
65200         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
65201
65202         * lib/config.charset: New version, incorporating remarks from a linux
65203         i18n mailing list.  From Bruno Haible.
65204
65205 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
65206
65207         * m4/codeset.m4: New file.
65208         * m4/iconv.m4: New file.
65209         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
65210
65211 2000-03-03  Jim Meyering  <meyering@lucent.com>
65212
65213         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
65214
65215 2000-03-02  Jim Meyering  <meyering@lucent.com>
65216
65217         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
65218         the messages come out on separate lines.
65219
65220         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
65221         rather than jm_CHECK_DECLARATIONS.
65222         * m4/decl.m4: Remove now-unused file.
65223
65224         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
65225         geteuid.
65226
65227 2000-03-02  Jim Meyering  <meyering@lucent.com>
65228
65229         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
65230
65231 2000-03-01  Jim Meyering  <meyering@lucent.com>
65232
65233         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
65234         * lib/unicodeio.c: Likewise.
65235
65236 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
65237
65238         * lib/config.charset: New file.
65239         * lib/localcharset.c: New file.
65240         * lib/unicodeio.h, lib/unicodeio.c: New files.
65241         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
65242         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
65243         (noinst_HEADERS): Add unicodeio.h.
65244         (all-local, install-exec-local, charset.alias): New targets.
65245
65246 2000-02-28  Paul Eggert  <eggert@twinsun.com>
65247
65248         * lib/quotearg.c (ALERT_CHAR): New macro.
65249         (quotearg_buffer_restyled): Use it.
65250
65251 2000-02-27  Jim Meyering  <meyering@lucent.com>
65252
65253         * m4/check-decl.m4: Add getenv to the list.
65254
65255 2000-02-27  Jim Meyering  <meyering@lucent.com>
65256
65257         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
65258         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
65259
65260         * lib/backupfile.c: Guard inclusion of stdlib.h with
65261         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
65262         Declare malloc if needed.
65263
65264         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
65265         `#ifndef HAVE_DECL..'
65266         now that autoconf always defines the HAVE_DECL_ symbols.
65267         * lib/human.c: Likewise.
65268         * lib/same.c: Likewise.
65269         * lib/strtoumax.c: Likewise.
65270
65271         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
65272         declaration check was not run.
65273         * lib/hash.c: Likewise.
65274         * lib/human.c: Likewise.
65275         * lib/same.c: Likewise.
65276         * lib/strtoumax.c: Likewise.
65277
65278         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
65279         `.', then first look up the entire `.'-containing string as a login
65280         name.
65281
65282 2000-02-23  Jim Meyering  <meyering@lucent.com>
65283
65284         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
65285         in place of my hack.
65286
65287 2000-02-18  Paul Eggert  <eggert@twinsun.com>
65288
65289         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
65290         (textint): New typedef.
65291         (parser_control): Member year changed from int to textint.
65292         All uses changed.
65293         (YYSTYPE): Removed; replaced by %union with int and textint members.
65294         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
65295         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
65296         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
65297         (tSNUMBER, tUNUMBER): Now of type <textintval>.
65298         (date, number, to_year): Use width of number in digits, not its value,
65299         to determine whether it's a 2-digit year, or a 2-digit time.
65300         (yylex): Store number of digits of numeric tokens.
65301         Reported by John Kendall.
65302
65303         (parser_control): Changed from struct parser_control to typedef (for
65304         consistency).  All uses changed.
65305
65306         (tID): Removed; not used.
65307         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
65308
65309 2000-02-14  Paul Eggert  <eggert@twinsun.com>
65310
65311         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
65312         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
65313
65314 2000-02-12  Jim Meyering  <meyering@lucent.com>
65315
65316         * lib/userspec.c (ISDIGIT): Define it.
65317         (isdigit): Remove definition.
65318         (is_number): Use ISDIGIT, not isdigit.
65319         <libintl.h>: Include.
65320         (_ and N_): Define.
65321         (parse_user_spec): Mark translatable strings.
65322
65323 2000-02-10  Jim Meyering  <meyering@lucent.com>
65324
65325         With these changes, nanosleep.[ch] are finally enough like the other
65326         lib/* replacement files to compile on a few more losing systems.
65327
65328         * lib/nanosleep.h: Don't include config.h.
65329         Remove prototype from declaration of nanosleep.
65330         (PARAMS): Remove now-unneeded definition.
65331         * lib/nanosleep.c: #undef nanosleep.
65332         (rpl_nanosleep): Rename from nanosleep.
65333
65334 2000-02-10  Jim Meyering  <meyering@lucent.com>
65335
65336         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
65337         gnu_nanosleep to rpl_nanosleep.
65338
65339 2000-02-09  Jim Meyering  <meyering@lucent.com>
65340
65341         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
65342         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
65343
65344 2000-02-08  Akim Demaille  <akim@epita.fr>
65345
65346         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
65347         `[' and `]' and remove uses of `changequote'.
65348         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
65349         (AC_SYS_LARGEFILE): Likewise.
65350         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
65351         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
65352         of changequote.
65353         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
65354         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
65355         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
65356         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
65357
65358 2000-02-05  Jim Meyering  <meyering@lucent.com>
65359
65360         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
65361         Remove explicit use of AC_HEADER_TIME.  It is required by
65362         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
65363         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
65364         in autoconf whereby the expansion of the latter ended up preceding
65365         the expansion of its prerequisite, AC_HEADER_TIME.
65366         Reported by Volker Borchert.
65367
65368 2000-02-03  Jim Meyering  <meyering@lucent.com>
65369
65370         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
65371
65372 2000-02-03  Jim Meyering  <meyering@lucent.com>
65373
65374         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
65375         rather than with `#if HAVE_UTMPNAME'.
65376
65377 2000-02-02  Jim Meyering  <meyering@lucent.com>
65378
65379         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
65380         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
65381         Reported by Eli Zaretskii.
65382
65383 2000-02-01  Jim Meyering  <meyering@lucent.com>
65384
65385         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
65386
65387 2000-01-31  Jim Meyering  <meyering@lucent.com>
65388
65389         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
65390         functions.  Add the time.h and sys/time.h headers along with the
65391         AC_REQUIRE'ment of AC_HEADER_TIME.
65392
65393 2000-01-31  Jim Meyering  <meyering@lucent.com>
65394
65395         * lib/nanosleep.h (nanosleep): Guard declaration with
65396         `#if ! HAVE_DECL_NANOSLEEP'.
65397         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
65398         the declaration in that vendor's sys/timers.h.
65399         Reported by Christian Krackowizer.
65400
65401         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
65402         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
65403         (ISPRINT): Likewise.
65404         Reported by Tom Tromey.
65405
65406 2000-01-30  Jim Meyering  <meyering@lucent.com>
65407
65408         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
65409
65410         * m4/prereq.m4 (utmp_includes): Define.
65411         Check for ut_user and ut_name members in both struct utmpx
65412         and struct utmp.
65413
65414 2000-01-30  Jim Meyering  <meyering@lucent.com>
65415
65416         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
65417         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
65418         header files where only utmpx.ut_user is declared.
65419
65420         * lib/readutmp.h (UT_USER): Define.
65421
65422 2000-01-29  Jim Meyering  <meyering@lucent.com>
65423
65424         * m4/lib-check.m4: New file containing library-related checks from
65425         fileutils and sh-utils (textutils had none).
65426
65427 2000-01-28  Jim Meyering  <meyering@lucent.com>
65428
65429         * m4/perl.m4: Change format of warning message to look more like that
65430         from the missing script.  Suggestion from François Pinard.
65431
65432 2000-01-25  Jim Meyering  <meyering@lucent.com>
65433
65434         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
65435         well as time.h in the compile check.
65436         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
65437         Fix typo in cross-compiling case: s/yes/no/.
65438
65439 2000-01-23  Jim Meyering  <meyering@lucent.com>
65440
65441         * m4/jm-macros.m4: Move df-related tests here from
65442         fileutils/configure.in
65443
65444         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
65445         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
65446
65447         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
65448         s/space/ac_fsusage_space/.
65449         (jm_FILE_SYSTEM_USAGE): Take two parameters.
65450
65451         * m4/ftruncate.m4: New file (derived from part of
65452         fileutils/configure.in).
65453         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
65454         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
65455
65456         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
65457         AC_SUBST these here, rather than just in sh-util/configure.in, so
65458         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
65459         all the same.
65460         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
65461         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
65462         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
65463         (AC_SUBST(POW_LIBM)): Likewise.
65464         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
65465
65466 2000-01-23  Jim Meyering  <meyering@lucent.com>
65467
65468         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
65469         obstack.c.
65470
65471 2000-01-22  Jim Meyering  <meyering@lucent.com>
65472
65473         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
65474
65475         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
65476
65477         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
65478         configure.in
65479         (AC_CHECK_HEADERS): Likewise for sh-utils.
65480         (AC_CHECK_HEADERS): Likewise for textutils.
65481         Merge the three lists of headers.
65482
65483         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
65484         from fileutils' configure.in.
65485
65486         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
65487         code. Moved tests into their own function (_jm_DECL_HEADERS) in
65488         check-decl.m4.
65489
65490         * m4/check-decl.m4: Use #if rather than #ifdef.
65491         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
65492         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
65493         (_jm_DECL_HEADERS): Define new function.
65494         (jm_CHECK_DECLARATIONS): Require it.
65495
65496 2000-01-22  Jim Meyering  <meyering@lucent.com>
65497
65498         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
65499         [! HAVE_DECL_STRTOULL]: Declare strtoull.
65500         Required for some AIX systems.  Reported by Christian Krackowizer.
65501         [TESTING] (main): New function.
65502
65503         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
65504         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
65505         letters.
65506
65507         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
65508         iswprint.
65509
65510         * lib/strverscmp.c (ISDIGIT): Define.
65511         (strverscmp): Use ISDIGIT, not isdigit.
65512
65513 2000-01-19  Jim Meyering  <meyering@lucent.com>
65514
65515         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
65516         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
65517         defines `struct timespec' in <sys/time.h>
65518
65519         * m4/c-bs-a.m4: Remove uses of changequote altogether.
65520         Thanks to Akim for explaining.
65521
65522 2000-01-17  Paul Eggert  <eggert@twinsun.com>
65523
65524         * lib/nanosleep.c (nanosleep):
65525         Don't use SA_INTERRUPT to decide whether to call sigaction, as
65526         POSIX.1 doesn't require SA_INTERRUPT and some systems
65527         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
65528         it's been part of POSIX.1 since day 1 (in 1988).
65529
65530 2000-01-17  Jim Meyering  <meyering@lucent.com>
65531
65532         * lib/interlock: Remove unused file.  Reported by François Pinard.
65533
65534 2000-01-16  Paul Eggert  <eggert@twinsun.com>
65535
65536         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
65537         alert, backslash, formfeed, and vertical tab unnecessarily in
65538         shell quoting style.
65539
65540 2000-01-16  Jim Meyering  <meyering@lucent.com>
65541
65542         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
65543         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
65544         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
65545         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
65546
65547 2000-01-16  Jim Meyering  <meyering@lucent.com>
65548
65549         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
65550         because the latter didn't work.
65551
65552 2000-01-15  Jim Meyering  <meyering@lucent.com>
65553
65554         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
65555         (AC_REPLACE_FUNCS): Add memcpy and memset.
65556         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
65557         Add strpbrk.
65558         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
65559
65560 2000-01-12  Jim Meyering  <meyering@lucent.com>
65561
65562         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
65563         (jm_PREREQ): Use it.
65564         (jm_PREREQ_READUTMP): New macro.
65565         (jm_PREREQ): Use it.
65566
65567 2000-01-11  Paul Eggert  <eggert@twinsun.com>
65568
65569         Quote multibyte characters correctly.
65570         * m4/c-bs-a.m4: New file.
65571         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
65572         (jm_PREREQ): Use it.
65573
65574 2000-01-11  Paul Eggert  <eggert@twinsun.com>
65575
65576         * m4/uintmax_t.m4: Port to autoconf 2.13.
65577
65578 2000-01-08  Jim Meyering  <meyering@ascend.com>
65579
65580         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
65581         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
65582
65583 2000-01-04  Jim Meyering  <meyering@ascend.com>
65584
65585         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
65586         jm_STRUCT_DIRENT_D_TYPE.
65587         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
65588         jm_STRUCT_DIRENT_D_INO.
65589         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
65590         jm_STRUCT_UTIMBUF.
65591         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
65592         renamings.
65593         * m4/utime.m4: Likewise.
65594
65595         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
65596         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
65597
65598 2000-01-03  Paul Eggert  <eggert@twinsun.com>
65599
65600         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
65601         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
65602
65603 2000-01-02  Jim Meyering  <meyering@ascend.com>
65604
65605         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
65606         remember if this is necessary.
65607
65608 1999-12-26  Jim Meyering  <meyering@ascend.com>
65609
65610         * m4/jm-macros.m4: Use it here.
65611         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
65612
65613 1999-12-23  Jim Meyering  <meyering@ascend.com>
65614
65615         * m4/jm-macros.m4: Check for clock_gettime (moved from
65616         fileutils/configure.in)
65617         Check for gettimeofday.
65618
65619 1999-12-20  Jim Meyering  <meyering@ascend.com>
65620
65621         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
65622         autoconf-2.14a-1999-12-20.
65623
65624 1999-12-19  Jim Meyering  <meyering@ascend.com>
65625
65626         * m4/lstat-slash.m4: New file.
65627         * m4/jm-macros.m4: Use the new macro:
65628         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
65629
65630 1999-12-07  Jim Meyering  <meyering@ascend.com>
65631
65632         * m4/perl.m4: Require that File::Compare be available, too.
65633         Too many systems seem to lack it.
65634
65635         * m4/strftime.m4: Add checks for most of the cpp macros tested in
65636         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
65637
65638 1999-11-18  Paul Eggert  <eggert@twinsun.com>
65639
65640         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
65641         problem with the QNX 4.25 shell, which doesn't propagate exit
65642         status of failed commands inside shell assignments.
65643
65644 1999-11-17  Jim Meyering  <meyering@ascend.com>
65645
65646         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
65647
65648 1999-11-07  Jim Meyering  <meyering@ascend.com>
65649
65650         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
65651
65652 1999-11-06  Jim Meyering  <meyering@ascend.com>
65653
65654         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
65655         * m4/jm-macros.m4 (jm_MACROS): Use it here.
65656
65657 1999-11-05  Jim Meyering  <meyering@ascend.com>
65658
65659         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
65660         configure.in of textutils, fileutils, and sh-utils into this one
65661         (shared between those packages) file.
65662         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
65663         AC_STRUCT_ST_BLKSIZE.
65664
65665 1999-11-03  Jim Meyering  <meyering@ascend.com>
65666
65667         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
65668         of AC_CHECK_TYPE checks includes unistd.h.
65669         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
65670         Suggestion from Akim Demaille.
65671
65672 1999-10-30  Jim Meyering  <meyering@ascend.com>
65673
65674         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
65675         m4-quoted string.
65676         * m4/ls-mntd-fs.m4: Likewise.
65677         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
65678         * m4/jm-winsz1.m4: Likewise.
65679
65680         * m4/const.m4: Remove file, since the fix made it into the experimental
65681         version of autoconf.
65682         * m4/mktime.m4: Likewise.
65683
65684         * m4/check-type.m4: Remove file, now that the latest version of
65685         AC_CHECK_TYPE takes a third arg to specify additional #includes.
65686
65687         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
65688         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
65689         AC_CHECK_TYPE.
65690
65691 1999-10-04  Jim Meyering  <meyering@ascend.com>
65692
65693         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
65694
65695 1999-09-22  Paul Eggert  <eggert@twinsun.com>
65696
65697         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
65698         2.95.1 bug with HP-UX 10.20.
65699
65700 1999-09-17  Jim Meyering  <meyering@ascend.com>
65701
65702         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
65703         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
65704         due to missing strdup (against sh-utils-2.0).
65705
65706 1999-08-29  Jim Meyering  <meyering@ascend.com>
65707
65708         * m4/jm-macros.m4: Require jm_BISON.
65709         * m4/bison.m4: New file.
65710
65711 1999-08-17  Paul Eggert  <eggert@twinsun.com>
65712
65713         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
65714         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
65715
65716 1999-08-05  Jim Meyering  <meyering@ascend.com>
65717
65718         * m4/getline.m4: Rename test file from conftestdata to conftest.data
65719         to avoid conflicts with `conftest' on 8+3 filesystems.
65720         Suggestion from Eli Zaretskii.
65721
65722 1999-08-04  Jim Meyering  <meyering@ascend.com>
65723
65724         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
65725         fileutils and sh-utils (textutils's getline test was inadequate).
65726         (AM_FUNC_GETLINE): Run this test.
65727         (AC_CHECK_FUNCS): Check for getdelim.
65728         Reported by Bob Proulx.
65729
65730 1999-08-02  Jim Meyering  <meyering@ascend.com>
65731
65732         * m4/jm-macros.m4: Add a comment.
65733
65734 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65735
65736         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
65737         <inttypes.h> defines strtoumax as a macro (and not as a
65738         function).
65739
65740 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65741
65742         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
65743         that we can shift, multiply and divide unsigned long long
65744         values; Ultrix cc can't do it.
65745
65746 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65747
65748         * m4/mktime.m4: New file, which is a preview of what should appear
65749         in the next public autoconf release.
65750
65751 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65752
65753         * m4/lfs.m4: Remove this file.
65754         * m4/largefile.m4: New file.  It contains the old contents of
65755         lfs.m4, except that all names with prefix AC_LFS have been
65756         changed to use the prefix AC_SYS_LARGEFILE instead, to be
65757         compatible with future autoconf versions.  Also, some minor m4
65758         quoting problems have been fixed.
65759
65760 1999-08-01  Paul Eggert  <eggert@twinsun.com>
65761
65762         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
65763         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
65764         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
65765         and simplify the shell code.
65766
65767 1999-08-01  Jim Meyering  <meyering@ascend.com>
65768
65769         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
65770         m4.
65771
65772 1999-07-20  Jim Meyering  <meyering@ascend.com>
65773
65774         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
65775
65776 1999-07-15  Jim Meyering  <meyering@ascend.com>
65777
65778         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
65779
65780 1999-05-22  Jim Meyering  <meyering@ascend.com>
65781
65782         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
65783
65784 1999-05-20  Jim Meyering  <meyering@ascend.com>
65785
65786         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
65787         Add a colon after each `then' in case $4 is empty.
65788
65789 1999-05-16  Jim Meyering  <meyering@ascend.com>
65790
65791         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
65792
65793 1999-05-10  Jim Meyering  <meyering@ascend.com>
65794
65795         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
65796
65797         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
65798         AC_FUNC_MKTIME.
65799
65800 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
65801
65802         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
65803
65804 1999-05-04  Paul Eggert  <eggert@twinsun.com>
65805
65806         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
65807         not CPPFLAGS, so that linking works correctly in IRIX.
65808
65809 1999-04-30  Paul Eggert  <eggert@twinsun.com>
65810
65811         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
65812
65813 1999-04-20  Paul Eggert  <eggert@twinsun.com>
65814
65815         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
65816         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
65817         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
65818         jm_AC_TYPE_UNSIGNED_LONG_LONG.
65819         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
65820
65821         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
65822
65823 1999-04-20  Jim Meyering  <meyering@ascend.com>
65824
65825         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
65826         AC_REPLACE xstroull if necessary.  From Paul Eggert.
65827         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
65828
65829 1999-04-18  Jim Meyering  <meyering@ascend.com>
65830
65831         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
65832         * m4/jm-macros.m4: Use it.
65833
65834 1999-04-06  Jim Meyering  <meyering@ascend.com>
65835
65836         * m4/strftime.m4: Remove test for %f.
65837
65838 1999-03-29  Jim Meyering  <meyering@ascend.com>
65839
65840         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
65841         superset of the AC_TYPE_* checks in the textutils, fileutils,
65842         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
65843         AC_TYPE_PID_T.
65844
65845 1999-03-28  Jim Meyering  <meyering@ascend.com>
65846
65847         * m4/jm-macros.m4: Define GNU_PACKAGE here.
65848         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
65849         replaced e.g., in the *.sh files of the sh-utils.
65850
65851 1999-03-20  Jim Meyering  <meyering@ascend.com>
65852
65853         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
65854         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
65855         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
65856
65857 1999-03-19  Jim Meyering  <meyering@ascend.com>
65858
65859         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
65860
65861 1999-03-12  Jim Meyering  <meyering@ascend.com>
65862
65863         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
65864
65865 1999-03-07  Jim Meyering  <meyering@ascend.com>
65866
65867         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
65868         declared.
65869
65870 1999-02-17  Jim Meyering  <meyering@ascend.com>
65871
65872         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
65873         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
65874
65875 1999-02-07  Jim Meyering  <meyering@ascend.com>
65876
65877         * m4/group-member.m4: New file -- extracted from sh-utils'
65878         configure.in.
65879
65880         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
65881         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
65882
65883 1999-02-06  Jim Meyering  <meyering@ascend.com>
65884
65885         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
65886         * m4/fnmatch.m4: Likewise.
65887         * m4/getgroups.m4: Likewise.
65888         * m4/lstat.m4: Likewise.
65889         * m4/malloc.m4: Likewise.
65890         * m4/putenv.m4: Likewise.
65891         * m4/realloc.m4: Likewise.
65892         * m4/regex.m4: Likewise.
65893         * m4/stat.m4: Likewise.
65894         * m4/strftime.m4: Likewise.
65895         Suggestion from Alain Magloire.
65896
65897         * m4/chown.m4: Use `.$ac_objext', not `.o'.
65898         * m4/fnmatch.m4: Likewise.
65899         * m4/getgroups.m4: Likewise.
65900         * m4/getline.m4: Likewise.
65901         * m4/lstat.m4: Likewise.
65902         * m4/malloc.m4: Likewise.
65903         * m4/memcmp.m4: Likewise.
65904         * m4/putenv.m4: Likewise.
65905         * m4/realloc.m4: Likewise.
65906         * m4/regex.m4: Likewise.
65907         * m4/stat.m4: Likewise.
65908         * m4/strftime.m4: Likewise.
65909         Suggestion from Alain Magloire.
65910
65911         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
65912         an argument.
65913
65914         * m4/regex.m4: Add a run-time Test for proper operation of
65915         re_compile_pattern.
65916
65917 1999-01-31  Jim Meyering  <meyering@ascend.com>
65918
65919         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
65920
65921 1999-01-30  Jim Meyering  <meyering@ascend.com>
65922
65923         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
65924
65925         * m4/jm-mktime.m4: Make this a wrapper around the official
65926         AM_FUNC_MKTIME rather than my private copy, now that the official one
65927         is up to date.
65928         * m4/mktime.m4: Remove file.
65929
65930         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
65931         * m4/uptime.m4: Likewise.
65932         * m4/uintmax_t.m4: Likewise.
65933
65934 1999-01-28  Jim Meyering  <meyering@ascend.com>
65935
65936         * m4/jm-macros.m4: Use jm_AFS.
65937         * m4/afs.m4: New file (from fileutils' configure.in).
65938
65939         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
65940         * m4/chown.m4: Likewise.
65941         * m4/d-ino.m4: Likewise.
65942         * m4/d-type.m4: Likewise.
65943         * m4/fnmatch.m4: Likewise.
65944         * m4/getgroups.m4: Likewise.
65945         * m4/gettext.m4: Likewise.
65946         * m4/jm-mktime.m4: Likewise.
65947         * m4/jm-winsz2.m4: Likewise.
65948         * m4/lcmessage.m4: Likewise.
65949         * m4/ls-mntd-fs.m4: Likewise.
65950         * m4/malloc.m4: Likewise.
65951         * m4/memcmp.m4: Likewise.
65952         * m4/putenv.m4: Likewise.
65953         * m4/realloc.m4: Likewise.
65954         * m4/st_mtim.m4: Likewise.
65955         * m4/strftime.m4: Likewise.
65956
65957 1999-01-16  Jim Meyering  <meyering@ascend.com>
65958
65959         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
65960         (ARGMATCH_DIE_DECL): Define.
65961
65962 1999-01-12  Jim Meyering  <meyering@ascend.com>
65963
65964         * m4/Makefile.am.in: Rewrite to avoid using fmt.
65965         Reported by Lars Hecking.
65966
65967 1999-01-10  Jim Meyering  <meyering@ascend.com>
65968
65969         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
65970         gross kludge.
65971         * m4/inttypes_h.m4: Likewise.
65972         * m4/lstat.m4: Likewise.
65973         * m4/malloc.m4: Likewise.
65974         * m4/readdir.m4: Likewise.
65975         * m4/realloc.m4: Likewise.
65976         * m4/st_dm_mode.m4: Likewise.
65977         * m4/stat.m4: Likewise.
65978         * m4/utimbuf.m4: Likewise.
65979         * m4/utimes.m4: Likewise.
65980
65981         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
65982         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
65983         comments in config.h.in are meaningful.
65984
65985         * m4/jm-macros.m4: Require autoconf-2.13 here.
65986
65987         * m4/regex.m4: By default, don't use the included regex.c on systems
65988         with glibc 2.  Suggestion from Uli Drepper.
65989
65990 1999-01-02  Jim Meyering  <meyering@ascend.com>
65991
65992         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
65993
65994 1998-12-18  Jim Meyering  <meyering@ascend.com>
65995
65996         * m4/Makefile.am.in (Makefile.am): Simplify rule.
65997         Based on a suggestion from Lars Hecking.
65998
65999 1998-11-16  Paul Eggert  <eggert@twinsun.com>
66000
66001         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
66002
66003 1998-11-16  Jim Meyering  <meyering@ascend.com>
66004
66005         * m4/lfs.m4: Double-quote the `uname...` expression.
66006
66007 1998-11-14  Jim Meyering  <meyering@ascend.com>
66008
66009         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
66010         * m4/stat.m4: Likewise.
66011
66012 1998-11-03  Jim Meyering  <meyering@ascend.com>
66013
66014         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
66015         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
66016
66017 1998-10-18  Jim Meyering  <meyering@ascend.com>
66018
66019         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
66020
66021 1998-10-17  Jim Meyering  <meyering@ascend.com>
66022
66023         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
66024         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
66025         calls for those previously hard-coded headers.  Instead, take a new
66026         parameter.
66027         (jm_CHECK_DECLARATIONS): Reflect interface change.
66028         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
66029         (jm_CHECK_DECL_LOCALTIME_R): New macro.
66030
66031         * m4/mktime.m4: Test for spring-forward gap before long-running test.
66032
66033 1998-10-14  Jim Meyering  <meyering@ascend.com>
66034
66035         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
66036         instead of "TZ=America/Vancouver".  From Paul Eggert.
66037
66038 1998-10-11  Jim Meyering  <meyering@ascend.com>
66039
66040         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
66041         This adds a test for a recently added compatibility fix for mktime.c.
66042         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
66043
66044 1998-09-27  Jim Meyering  <meyering@ascend.com>
66045
66046         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
66047
66048         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
66049         ../configure.in, including a change from Gordon Matzigkeit to allow
66050         cross-compiling for the Hurd.
66051
66052         * m4/glibc.m4: New file/macro to test for the GNU C Library
66053         versions 1 and 2.  From Gordon Matzigkeit.
66054         Indent.
66055
66056 1998-09-21  Jim Meyering  <meyering@ascend.com>
66057
66058         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
66059
66060 1998-08-18  Paul Eggert  <eggert@twinsun.com>
66061
66062         Port nanosecond-resolution times to UnixWare 2.1.2 and
66063         pedantic Solaris 2.6.
66064
66065         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
66066         AC_STRUCT_ST_MTIM.
66067         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
66068         Generate name of ns member, instead of just 1 or undef.
66069         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
66070
66071 1998-08-15  Jim Meyering  <meyering@ascend.com>
66072
66073         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
66074         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
66075         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
66076         instead of jm_TYPE_SSIZE_T.
66077
66078 1998-08-12  Jim Meyering  <meyering@ascend.com>
66079
66080         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
66081
66082 1998-08-02  Jim Meyering  <meyering@ascend.com>
66083
66084         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
66085         in acconfig.h manually.
66086
66087 1998-07-31  Paul Eggert  <eggert@twinsun.com>
66088
66089         * m4/st_mtim.m4: New file.
66090
66091 1998-07-28  Jim Meyering  <meyering@ascend.com>
66092
66093         * m4/utimes.m4: Undef stat.
66094
66095 1998-07-25  Jim Meyering  <meyering@ascend.com>
66096
66097         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
66098         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
66099
66100 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
66101
66102         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
66103         uid and gid actually remain unchanged.
66104
66105 1998-07-07  Jim Meyering  <meyering@ascend.com>
66106
66107         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
66108
66109 1998-07-04  Jim Meyering  <meyering@ascend.com>
66110
66111         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
66112         to prove that this macro can be used in packages without regex.c.
66113
66114 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
66115
66116         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
66117         is to be used.
66118
66119 1998-07-03  Jim Meyering  <meyering@ascend.com>
66120
66121         * m4/gettext.m4: Add -lintl if it's found to be necessary.
66122
66123         * m4/gettext.m4: New file -- from gettext-0.10.35.
66124         * m4/lcmessage.m4: Likewise.
66125         * m4/progtest.m4: Likewise.
66126
66127         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
66128         * m4/jm-macros.m4: Require the new macro.
66129
66130 1998-06-29  Jim Meyering  <meyering@ascend.com>
66131
66132         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
66133         for the definition of NGROUPS (used in a system header included
66134         by sys/mount.h).
66135
66136 1998-06-28  Jim Meyering  <meyering@ascend.com>
66137
66138         * m4/ls-mntd-fs.m4: New file.
66139         * m4/fstypename.m4: New file.
66140
66141         * m4/jm-macros.m4: Require the new macro.
66142         * m4/jm-glibc-io.m4: New file.
66143
66144 1998-05-19  Jim Meyering  <meyering@ascend.com>
66145
66146         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
66147         * m4/lchown.m4: New file.
66148
66149         * m4/Makefile.am.in: New file.
66150         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
66151
66152 1998-05-14  Jim Meyering  <meyering@ascend.com>
66153
66154         * m4/Makefile.am (EXTRA_DIST): Add them.
66155         * m4/jm-macros.m4: New file.
66156         * m4/utimbuf.m4: New file.
66157
66158 1998-05-12  Jim Meyering  <meyering@ascend.com>
66159
66160         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
66161
66162 1998-05-11  Jim Meyering  <meyering@ascend.com>
66163
66164         * m4/isc-posix.m4: New file.
66165
66166 1998-05-10  Jim Meyering  <meyering@ascend.com>
66167
66168         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
66169
66170 1998-05-09  Jim Meyering  <meyering@ascend.com>
66171
66172         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
66173         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
66174         with automake.
66175
66176         * m4/ssize_t.m4: New file.
66177         * m4/mktime.m4: Remove file -- the new automake has this now.
66178
66179 1998-04-26  Jim Meyering  <meyering@ascend.com>
66180
66181         * m4/assert.m4: New file.
66182         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
66183
66184 1998-04-05  Jim Meyering  <meyering@ascend.com>
66185
66186         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
66187         (jm_PREREQ): Use it here.
66188
66189 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
66190
66191         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
66192         in acconfig.h.
66193
66194 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
66195
66196         * m4/prereq.m4: New file.
66197         * m4/error.m4: New file.
66198         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
66199
66200 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
66201
66202         * m4/getline.m4: Don't set am_cv_func_working_getline before the
66203         cache-check for the same variable -- that defeated the purpose of
66204         the test; the test program was never run.  This was a problem only
66205         on systems with losing getline functions -- HP-UX 10.20 is one.
66206         Reported by Bjorn Helgaas.
66207
66208 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
66209
66210         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
66211
66212 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
66213
66214         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
66215
66216         * m4/const.m4: New file.  Use an initializer in this declaration
66217         typedef int charset[2]; const charset x;
66218         Reported by Bob Glickstein.
66219
66220 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
66221
66222         * m4/chown.m4: Fix reversed types on -1 args to chown.
66223         From Kaveh Ghazi.
66224
66225 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
66226
66227         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
66228         Add lseek and memchr.
66229
66230         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
66231         T.E.Dickey <dickey@clark.net> said that some older preprocessors
66232         have a 20-character limit on names.
66233
66234 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
66235
66236         * m4/inttypes_h.m4: New file.
66237         * m4/uintmax_t.m4: New file.
66238         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
66239
66240
66241         -----
66242
66243         Local Variables:
66244         coding: utf-8
66245         End:
66246
66247         Copyright (C) 1997-2010 Free Software Foundation, Inc.
66248
66249         Copying and distribution of this file, with or without
66250         modification, are permitted provided the copyright notice
66251         and this notice are preserved.